by mhattingpete
Claude Code Skills for software engineering workflows - Git automation, testing, and code review
# Add to your Claude Code skills
git clone https://github.com/mhattingpete/claude-skills-marketplaceA curated marketplace of Claude Code plugins for software engineering workflows.
claude-skills-marketplace/
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest
├── execution-runtime/ # 🚀 Code execution environment (NEW!)
│ ├── api/ # Importable API library
│ ├── mcp-server/ # FastMCP server
│ ├── setup.sh # One-command installation
│ └── README.md
├── engineering-workflow-plugin/ # Engineering workflow plugin
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── agents/
│ │ └── plan-implementer.md # Plan implementation agent
│ ├── skills/
│ │ ├── feature-planning/ # Feature planning skill
│ │ ├── git-pushing/ # Git automation skill
│ │ ├── review-implementing/ # Code review skill
│ │ └── test-fixing/ # Test fixing skill
│ └── README.md
├── visual-documentation-plugin/ # Visual documentation plugin
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── skills/
│ │ ├── architecture-diagram-creator/ # Architecture diagram skill
│ │ ├── dashboard-creator/ # Dashboard creation skill
│ │ ├── flowchart-creator/ # Flowchart creation skill
│ │ ├── technical-doc-creator/ # Technical documentation skill
│ │ └── timeline-creator/ # Timeline creation skill
│ ├── EXAMPLES.md
│ └── README.md
├── productivity-skills-plugin/ # Productivity & optimization plugin
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── skills/
│ │ ├── code-auditor/ # Code auditing skill
│ │ ├── codebase-documenter/ # Codebase documentation skill
│ │ ├── conversation-analyzer/ # Usage analysis skill
│ │ └── project-bootstrapper/ # Project setup skill
│ └── README.md
├── code-operations-plugin/ # Code manipulation plugin
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── skills/
│ │ ├── code-execution/ # 🚀 Python execution skill (NEW!)
│ │ │ └── examples/ # Example scripts
│ │ ├── code-transfer/ # Code transfer skill
│ │ │ └── scripts/
│ │ │ └── line_insert.py # Line-based insertion script
│ │ ├── code-refactor/ # Bulk refactoring skill
│ │ └── file-operations/ # File analysis skill
│ └── README.md
├── LICENSE
└── README.md
No comments yet. Be the first to share your thoughts!
Skills are model-invoked capabilities that extend Claude Code's functionality. Unlike slash commands that require explicit user activation, Skills are automatically triggered by Claude based on context and the Skill's description.
Each Skill consists of a SKILL.md file with:
Agents are specialized Claude instances that can be invoked by Claude to handle specific types of work. They run independently with their own context and can use different models optimized for their task.
Each Agent consists of an AGENT.md file with:
Skills and Agents work together: Skills can orchestrate when to invoke Agents, and Agents can use Skills while executing their tasks.
The marketplace now includes a code execution environment implementing the Anthropic code execution pattern. Instead of loading code through context, Claude executes Python locally with API access—achieving 90-99% token reduction for bulk operations.
✅ Massive token savings: Process 100 files with 1K tokens instead of 100K ✅ Faster operations: Local execution vs multiple API round-trips ✅ Stateful workflows: Resume multi-step refactoring across sessions ✅ Auto-secure: PII/secret masking, sandboxed execution
# After installing marketplace plugin
~/.claude/plugins/marketplaces/mhattingpete-claude-skills/execution-runtime/setup.sh
Skills automatically use execution mode for:
Example: "Rename getUserData to fetchUserData in all Python files"
# In Claude Code - installs the entire plugin with all skills and agents
/plugin marketplace add mhattingpete/claude-skills-marketplace
This installs the engineering-workflow-plugin which includes all skills and the plan-implementer agent.
To install individual plugins:
# Install only engineering workflows
/plugin marketplace add mhattingpete/claude-skills-marketplace/engineering-workflow-plugin
# Install only visual documentation
/plugin marketplace add mhattingpete/claude-skills-marketplace/visual-documentation-plugin
# Install only productivity skills
/plugin marketplace add mhattingpete/claude-skills-marketplace/productivity-skills-plugin
# Install only code operations
/plugin marketplace add mhattingpete/claude-skills-marketplace/code-operations-plugin
Skills for common software engineering workflows including git operations, test fixing, code review implementation, and feature planning.
Skills for creating stunning visual HTML documentation with modern UI design, SVG diagrams, flowcharts, dashboards, timelines, and comprehensive project architecture diagrams.
Productivity and workflow optimization skills for analyzing usage patterns, auditing code quality, bootstrapping projects, and generating comprehensive documentation.
High-precision code manipulation operations including line-based insertion, bulk refactoring, and file analysis. Converted from code-copy-mcp to native Claude Code skills.
feature-planningBreak down feature requests into detailed, implementable plans with clear tasks that can be executed by the plan-implementer agent.
Activates when: User requests a new feature, enhancement, or complex change requiring planning.
Example usage:
Works with: plan-implementer agent for execution
git-pushingAutomatically stage, commit with conventional commit messages, and push changes to remote.
Activates when: User mentions pushing changes, committing work, or saving to remote.
Example usage:
test-fixingSystematically identify and fix failing tests using smart error grouping strategies.
Activates when: User reports test failures, asks to fix tests, or wants test suite passing.
Example usage:
review-implementingProcess and implement code review feedback systematically with todo tracking.
Activates when: User provides reviewer comments, PR feedback, or asks to address review notes.
Example usage:
code-execution 🆕Execute Python code locally with marketplace API access for 90%+ token savings on bulk operations.
Activates when: Bulk operations (10+ files), complex workflows, codebase-wide transformations, performance needs.
Example usage:
Token savings: 97-99% for bulk operations (25K → 600 tokens)
code-transferTransfer code between files with line-based precision. Auto-uses execution mode for 10+ file operations.
Activates when: User requests copying code between files, moving functions/classes, extracting code, or inserting at specific line numbers.
Example usage:
Key feature: Includes Python script for precise line-number-based insertion where Edit tool's string matching isn't