code-execution

Solid

Execute Python code locally with marketplace API access for 90%+ token savings on bulk operations. Activates when user requests bulk operations (10+ files), complex multi-step workflows, iterative processing, or mentions efficiency/performance.

AI & Automation 585 stars 78 forks Updated 2 months ago Apache-2.0

Install

View on GitHub

Quality Score: 86/100

Stars 20%
92
Recency 20%
75
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Code Execution Execute Python locally with API access. **90-99% token savings** for bulk operations. ## When to Use - Bulk operations (10+ files) - Complex multi-step workflows - Iterative processing across many files - User mentions efficiency/performance ## How to Use Use direct Python imports in Claude Code: ```python from execution_runtime import fs, code, transform, git # Code analysis (metadata only!) functions = code.find_functions('app.py', pattern='handle_.*') # File operations code_block = fs.copy_lines('source.py', 10, 20) fs.paste_code('target.py', 50, code_block) # Bulk transformations result = transform.rename_identifier('.', 'oldName', 'newName', '**/*.py') # Git operations git.git_add(['.']) git.git_commit('feat: refactor code') ``` **If not installed:** Run `~/.claude/plugins/marketplaces/mhattingpete-claude-skills/execution-runtime/setup.sh` ## Available APIs - **Filesystem** (`fs`): copy_lines, paste_code, search_replace, batch_copy - **Code Analysis** (`code`): find_functions, find_classes, analyze_dependencies - returns METADATA only! - **Transformations** (`transform`): rename_identifier, remove_debug_statements, batch_refactor - **Git** (`git`): git_status, git_add, git_commit, git_push ## Pattern 1. **Analyze locally** (metadata only, not source) 2. **Process locally** (all operations in execution) 3. **Return summary** (not data!) ## Examples **Bulk refactor (50 files):** ```python from execution_runtime import transform result = tr...

Details

Author
mhattingpete
Repository
mhattingpete/claude-skills-marketplace
Created
7 months ago
Last Updated
2 months ago
Language
HTML
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Solid

code-refactor

Perform bulk code refactoring operations like renaming variables/functions across files, replacing patterns, and updating API calls. Use when users request renaming identifiers, replacing deprecated code patterns, updating method calls, or making consistent changes across multiple locations.

585 Updated 2 months ago
mhattingpete
AI & Automation Solid

collaborating-with-claude-code

Delegate code implementation/review/debugging/alternatives to Claude Code via a JSON bridge script. Multi-turn via SESSION_ID.

37 Updated 3 months ago
ZhenHuangLab
AI & Automation Solid

code-mode

Add a "code mode" tool to an existing MCP server so LLMs can write small processing scripts that run against large API responses in a sandboxed runtime — only the script's compact output enters the LLM context window. Use this skill whenever someone wants to add code mode, context reduction, script execution, sandbox execution, or LLM-generated-code processing to an MCP server. Also trigger when users mention reducing token usage, shrinking API responses, running user-provided code safely, or adding a code execution tool to their MCP server — in any language (TypeScript, Python, Go, Rust, etc.).

19 Updated 2 months ago
chenhunghan
AI & Automation Listed

claude-code-dispatch

Dispatch development tasks to Claude Code with automatic callback on completion. Supports Agent Teams (multi-agent parallel dev with dedicated Testing Agent), cost controls (--max-budget-usd), model fallback, git worktree isolation, custom subagents via --agents JSON, and MCP server integration. Use when: (1) dispatching a coding task to Claude Code and wanting automatic Telegram notification on completion, (2) running Agent Teams for parallel dev+test workflows, (3) needing zero-polling task execution with Stop Hook callback, (4) the user says 'use Claude Code to build/develop/create X', (5) the user asks to dispatch or run a Claude Code task. THIS IS THE DEFAULT for any 'build/develop/create a project' request — prefer this over claude-code-clawdbot for anything that takes >2 min or needs background execution.

44 Updated 2 months ago
win4r
AI & Automation Solid

codex-agent-collaboration

Delegate coding tasks to Codex AI for implementation, analysis, and alternative solutions. Use when you need a second AI perspective, want to explore different approaches, or need specialized Codex capabilities for complex coding tasks.

25 Updated 4 months ago
ForteScarlet