Harry's personal Claude Code plugin marketplace
npx claudepluginhub harry-jk/claude-pluginExa AI search - Set EXA_API_KEY in ~/.claude/settings.json env section
Step-by-step thinking process for complex problem-solving
OpenAI Codex MCP server (official) - Requires codex login
shadcn/ui component library - search, browse, and install components
Git repository management - version control tools
Team lead orchestration - persona injection, status tracking, teammate coordination
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
개인용 Claude Code 플러그인 마켓플레이스입니다.
# GitHub에 push 후
/plugin marketplace add harry-jk/claude-plugin
# 또는 로컬에서 테스트
/plugin marketplace add /path/to/claude-plugin
/plugin install <plugin-name>@harry-claude-plugins
claude-plugin/
├── .claude-plugin/
│ └── marketplace.json # 마켓플레이스 메타데이터
├── plugins/
│ ├── _template/ # 플러그인 템플릿
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # 플러그인 메타데이터
│ │ ├── commands/ # 슬래시 명령어
│ │ ├── skills/ # Agent Skills
│ │ ├── agents/ # 커스텀 서브에이전트
│ │ ├── hooks/ # 이벤트 훅
│ │ └── scripts/ # 스크립트 파일
│ └── <your-plugin>/ # 실제 플러그인들
└── README.md
plugins/_template을 복사하여 새 플러그인 디렉토리 생성.claude-plugin/plugin.json 수정.claude-plugin/marketplace.json의 plugins 배열에 추가{
"plugins": [
{
"name": "my-plugin",
"source": "./plugins/my-plugin",
"description": "플러그인 설명",
"version": "1.0.0",
"keywords": ["keyword1", "keyword2"],
"category": "development"
}
]
}
| 컴포넌트 | 위치 | 설명 |
|---|---|---|
| Commands | commands/*.md | /명령어로 실행되는 간단한 명령 |
| Skills | skills/*/SKILL.md | Claude가 자동으로 호출할 수 있는 기능 |
| Agents | agents/*.md | Task 도구로 호출되는 서브에이전트 |
| Hooks | hooks/hooks.json | 도구 실행 전후에 트리거되는 스크립트 |
| MCP | .mcp.json | MCP 서버 설정 |
| LSP | .lsp.json | LSP 서버 설정 |
# 특정 플러그인 테스트
claude --plugin-dir ./plugins/my-plugin
# 여러 플러그인 동시 테스트
claude --plugin-dir ./plugins/plugin1 --plugin-dir ./plugins/plugin2