halans

Cc Marketplace Boilerplate — Development skill for Claude Code

Development community

A Claude Code Marketplace Boilerplate template project, including a starter plugin with an agent, commands, hooks and skills.

How to install Cc Marketplace Boilerplate

This entry records only its repository, not the path inside it, so there is no exact command to give. Open halans/cc-marketplace-boilerplate and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Cc Marketplace Boilerplate does

A Claude Code Marketplace Boilerplate template project, including a starter plugin with an agent, commands, hooks and skills.

Alternatives in Development

  • Gtm Motions — Identify best GTM motions across 7 types including PLG and ABM 7.8k ★
  • Crypto Market Rank — Query crypto market rankings including trending tokens, smart money inflows, meme rankings, and top trader PnL 483 ★
  • Projects Created — List all projects created by the starter kit 335 ★

README

Claude Code Marketplace Boilerplate

A minimal boilerplate template for creating and distributing Claude Code plugins via the marketplace. This project provides a structured foundation for building custom commands, agents and hooks — tools that extend Claude Code's capabilities.

Overview

This boilerplate helps you create professional Claude Code plugins with:

  • Custom Commands: Slash commands for common workflows
  • Specialized Agents: AI agents optimized for specific tasks
  • Skills: Modular knowledge packages with workflows and bundled resources
  • Event Hooks: Automated responses to IDE events
  • MCP Integration: Model Context Protocol server configuration
  • Marketplace Ready: Pre-configured metadata for distribution

Project Structure

.
├── .claude-plugin/
│   └── marketplace.json          # Marketplace configuration
├── plugins/
│   └── webapp-starter/           # Example plugin
│       ├── .claude-plugin/
│       │   └── plugin.json       # Plugin metadata
│       ├── agents/
│       │   └── webapp-uidesigner.md
│       ├── commands/
│       │   ├── webapp-starter.md
│       │   └── generate-random-personas.md
│       ├── skills/
│       │   └── skill-creator/
│       │       └── SKILL.md      # Skill definition
│       ├── hooks/
│       │   └── hooks.json        # Event hooks configuration
│       └── .mcp.json            # MCP servers configuration
└── README.md

Getting Started

1. Clone the Repository

git clone https://github.com/halans/cc-marketplace-boilerplate
cd cc-marketplace-boilerplate

2. Configure Your Marketplace

Edit [.claude-plugin/marketplace.json](.claude-plugin/marketplace.json):

{
  "name": "your-marketplace-name",
  "owner": {
    "name": "Your Name",
    "email": "your@email.com",
    "url": "https://github.com/yourusername"
  },
  "metadata": {
    "description": "Your marketplace description",
    "version": "1.0.0"
  },
  "plugins": [...]
}

3. Create Yo