🎯

codebase-documenter

🎯Skill

from mhattingpete/claude-skills-marketplace

VibeIndex|
What it does

Automatically generates comprehensive documentation for entire codebases, analyzing source code structure, dependencies, and generating detailed markdown or HTML documentation reports.

πŸ“¦

Part of

mhattingpete/claude-skills-marketplace(21 items)

codebase-documenter

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add mhattingpete/claude-skills-marketplace
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add mhattingpete/claude-skills-marketplace/engineering-workflow-plugin
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add mhattingpete/claude-skills-marketplace/visual-documentation-plugin
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add mhattingpete/claude-skills-marketplace/productivity-skills-plugin
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add mhattingpete/claude-skills-marketplace/code-operations-plugin
πŸ“– Extracted from docs: mhattingpete/claude-skills-marketplace
20Installs
325
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# Claude Skills Marketplace

A curated marketplace of Claude Code plugins for software engineering workflows.

Skill Loading Demo

Repository Structure

```

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

```

What are Skills and Agents?

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:

  • YAML frontmatter (name, description, metadata)
  • Detailed instructions for Claude
  • Optional supporting files (scripts, templates, references)

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:

  • YAML frontmatter (name, description, model selection)
  • Specialized instructions and constraints
  • Decision-making frameworks for their domain

Skills and Agents work together: Skills can orchestrate when to invoke Agents, and Agents can use Skills while executing their tasks.

πŸš€ NEW: Execution Runtime (90%+ Token Savings)

The marketplace now includes a code execution environment implementing the [Anthropic code execution pattern](https://www.anthropic.com/engineering/code-execution-with-mcp). Instead of loading code through context, Claude executes Python locally with API accessβ€”achieving 90-99% token reduction for bulk operations.

Quick Benefits

βœ… 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

Setup (2 minutes)

```bash

# After installing marketplace plugin

~/.claude/plugins/marketplaces/mhattingpete-claude-skills/execution-runtime/setup.sh

```

When It Activates

Skills automatically use execution mode for:

  • Bulk operations (10+ files)
  • Complex multi-step workflows
  • Iterative processing
  • Codebase-wide analysis

Example: "Rename getUserData to fetchUserData in all Python files"

  • Without execution: ~25,000 tokens (read/edit 50 files)
  • With execution: ~600 tokens (script + summary) - 97.6% savings

[Full documentation β†’](execution-runtime/README.md)

Installation

Install from Marketplace

```bash

# 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:

```bash

# 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

```

Available Plugins

Engineering Workflow Plugin

Skills for common software engineering workflows including git operations, test fixing, code review implementation, and feature planning.

[View Plugin Documentation β†’](engineering-workflow-plugin/README.md)

Visual Documentation Plugin

Skills for creating stunning visual HTML documentation with modern UI design, SVG diagrams, flowcharts, dashboards, timelines, and comprehensive project architecture diagrams.

[View Plugin Documentation β†’](visual-documentation-plugin/README.md)

Productivity Skills Plugin

Productivity and workflow optimization skills for analyzing usage patterns, auditing code quality, bootstrapping projects, and generating comprehensive documentation.

[View Plugin Documentation β†’](productivity-skills-plugin/README.md)

Code Operations Plugin

High-precision code manipulation operations including line-based insertion, bulk refactoring, and file analysis. Converted from [code-copy-mcp](https://github.com/mhattingpete/code-copy-mcp) to native Claude Code skills.

[View Plugin Documentation β†’](code-operations-plugin/README.md)

Available Skills

Feature Development

#### feature-planning

Break 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:

  • "Add user authentication"
  • "Build a dashboard for analytics"
  • "Plan how to implement export functionality"

Works with: plan-implementer agent for execution

---

Git & Version Control

#### git-pushing

Automatically 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:

  • "Push these changes"
  • "Commit and push to github"
  • "Let's save this work"

---

Testing & Quality

#### test-fixing

Systematically identify and fix failing tests using smart error grouping strategies.

Activates when: User reports test failures, asks to fix tests, or wants test suite passin