Experimental Claude Code plugin marketplace
npx skills add https://github.com/geoffjay/claude-plugins --skill git-troubleshootingCLI를 사용하여 이 스킬을 설치하고 작업 공간에서 SKILL.md 워크플로 사용을 시작하세요.
[!WARNING]
For now this is just a place to try out Claude plugins, not much to see here.
Add this marketplace to Claude Code:
/plugin marketplace add geoffjay/claude-plugins
This makes all plugins available for installation, but does not load any agents or tools into the Claude context.
Browse available plugins:
/plugin
Install the plugins you need:
/plugin install golang-development
Each installed plugin only loads its specific agents, commands, and skills into the Claude context.
Three-tier architecture for token efficiency:
claude-agents/
├── .claude-plugin/
│ └── marketplace.json # all plugins
├── plugins/
│ ├── golang-development/
│ │ ├── agents/ # Expert definitions
│ │ ├── commands/ # Scaffolding tool
│ │ └── skills/ # Specialized skills
│ └── ... (more plugins)
├── docs/ # Comprehensive documentation
└── README.md # This file
To add new agents, skills, or commands:
plugins/.md files in the appropriate subdirectory:
agents/ - For specialized agentscommands/ - For tools and workflowsskills/ - For modular knowledge packages.claude-plugin/marketplace.jsonSee Architecture Documentation for detailed guidelines.
This project borrows considerably from wshobson/agents.
MIT License - see LICENSE file for details.