Claude Code Skills for software engineering workflows - Git automation, testing, and code review
npx skills add https://github.com/mhattingpete/claude-skills-marketplace --skill file-operationsInstallieren Sie diesen Skill über die CLI und beginnen Sie mit der Verwendung des SKILL.md-Workflows in Ihrem Arbeitsbereich.
A 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
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 suitable.
code-refactorPerform bulk code refactoring operations. Auto-switches to execution mode for 10+ files (90% token savings).
Activates when: User requests renaming identifiers, replacing deprecated patterns, updating API calls, or making consistent changes across multiple locations.
Example usage:
file-operationsAnalyze files and get detailed metadata without modifying them.
Activates when: User requests file information, statistics, or analysis without making changes.
Example usage:
conversation-analyzerAnalyze Claude Code conversation history to identify patterns, common mistakes, and workflow optimization opportunities.
Activates when: User wants to understand usage patterns, optimize workflow, or check best practices.
Example usage:
code-auditorComprehensive codebase analysis covering architecture, code quality, security, performance, testing, and maintainability.
Activates when: User wants to audit code quality, identify technical debt, find security issues, or assess test coverage.
Example usage:
codebase-documenterGenerate comprehensive documentation explaining how a codebase works, including architecture, key components, data flow, and development guidelines.
Activates when: User wants to understand unfamiliar code, create onboarding docs, document architecture, or explain how the system works.
Example usage:
project-bootstrapperSet up new projects or improve existing projects with development best practices, tooling, documentation, and workflow automation.
Activates when: User wants to start a new project, improve project structure, add development tooling, or establish professional workflows.
Example usage:
architecture-diagram-creatorCreate comprehensive HTML architecture diagrams covering business objectives, data flows, processing pipelines, features (functional and non-functional), system architecture, and deployment information.
Activates when: User requests architecture diagrams, system overviews, project documentation, or high-level system design.
Example usage:
flowchart-creatorCreate stunning HTML flowcharts and process flow diagrams with decision trees, color-coded stages, and swimlanes.
Activates when: User requests flowcharts, process diagrams, workflow visualizations, or decision trees.
Example usage:
dashboard-creatorCreate professional HTML dashboards with KPI metric cards, bar/pie/line charts, and progress indicators.
Activates when: User requests dashboards, metrics displays, KPI visualizations, or data charts.
Example usage:
technical-doc-creatorCreate comprehensive HTML technical documentation with code blocks, API workflows, and system architecture diagrams.
Activates when: User requests technical documentation, API docs, code examples, or system architecture.
Example usage:
timeline-creatorCreate beautiful HTML timelines and project roadmaps with Gantt charts, milestones, and phase groupings.
Activates when: User requests timelines, roadmaps, Gantt charts, project schedules, or milestone visualizations.
Example usage:
Common Features (All Skills):
plan-implementerFocused agent for implementing code based on specific plans or task descriptions. Uses Haiku model for efficient, cost-effective execution.
Use when: You have a clear specification or plan to execute.
Invoked by: feature-planning skill automatically, or manually via Task tool
Example usage:
Model: claude-3-5-haiku (fast and efficient for implementation tasks)
Want to add your own plugin to this marketplace? Follow this structure:
your-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── agents/ # Optional: Agent definitions
├── skills/ # Skills directory
└── README.md # Plugin documentation
Then add it to .claude-plugin/marketplace.json in this repository.
Want to create your own Skills? Follow this structure:
my-skill/
├── SKILL.md # Main skill file with frontmatter and instructions
└── reference.md # Optional: Additional context loaded on-demand
---
name: my-skill-name
description: What it does and when to use it. Be specific about activation triggers.
---
# Skill Title
Brief overview of what this skill does.
## When to Use
List specific scenarios when Claude should activate this skill:
- User says X
- User mentions Y
- Context includes Z
## Instructions
Step-by-step instructions for Claude to follow...
Contributions are welcome! To add a new skill:
Apache 2.0 - See LICENSE file for details.
Issues and questions:
Here's how the skills and agent work together for a typical feature development flow:
feature-planning skill activates and:
plan-implementer agent executes each task:
test-fixing skill automatically activates if tests fail:
git-pushing skill activates:
Note: These skills are generalized for broad software engineering use. Adapt descriptions and instructions to fit your specific workflows.