Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
npx claudepluginhub m16khb/claude-integration --plugin automation-tools코드베이스 변경 감지 및 CLAUDE.md 자동 동기화
프로젝트 헌법 (필수 규칙) 관리
Agent, Skill, Command 컴포넌트 생성기 (WebFetch 기반 문서 분석)
통합 최적화 커맨드 (에이전트, 커맨드, 프롬프트)
AI 파트너 관리 (선택, 상태, 피드백)
AI 파트너 시스템 - 전문가 선택 및 협업
컴포넌트 생성의 핵심 로직을 처리하는 스킬
오케스트레이터 에이전트 생성 및 전문가 조합 전문 스킬
웹 문서 및 GitHub 예제 분석 전문 스킬
생성된 컴포넌트 검증 및 품질 보증 스킬
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Autonomous multi-agent development framework with spec-driven sprints and convergent iteration
Create and manage Claude Code skills, plugins, subagents, and hooks. Use when building new skills, validating existing skills, testing skills empirically, creating plugins, converting projects to plugins, creating hooks, or managing plugin automation. Includes /skills-toolkit:skill-composer, /skills-toolkit:skill-refiner, /skills-toolkit:skill-tester, /skills-toolkit:plugin-creator, /skills-toolkit:subagent-creator, /skills-toolkit:hook-creator, and /skills-toolkit:ask-user-question skills.
This skill should be used when the model's ROLE_TYPE is orchestrator and needs to delegate tasks to specialist sub-agents. Provides scientific delegation framework ensuring world-building context (WHERE, WHAT, WHY) while preserving agent autonomy in implementation decisions (HOW). Use when planning task delegation, structuring sub-agent prompts, or coordinating multi-agent workflows.
HelloAGENTS — The orchestration kernel that makes any AI CLI smarter. Adds intelligent routing, unified QA gates, safety guards, and notifications.
Harness-native ECC plugin for engineering teams - 64 agents, 262 skills, 84 legacy command shims, reusable hooks, rules, MCP conventions, and operator workflows for Claude Code plus adjacent agent harnesses
v9.44.0 — Patch release for cursor-agent smoke checks in untrusted workspaces. Run /octo:setup.
대용량 파일 청킹, 컨텍스트 주입 및 작업 추천 도구
Conventional Commits 1.0.0 규격 준수 스마트 커밋, Git Flow 브랜치 관리, Worktree 지원
Claude Code 필수 플러그인: Atomic Commit + NestJS Swagger 문서화 지원
계층적 CLAUDE.md 및 agent-docs 문서 생성 에이전트
다중 에이전트 워크플로우 오케스트레이션 및 CI/CD 자동화
Claude Code 생산성 향상을 위한 스마트 커맨드 및 에이전트 마켓플레이스입니다.
이 마켓플레이스는 단일 책임 원칙을 중심으로 설계되었습니다:
각 플러그인은 필요한 컴포넌트만 컨텍스트에 로드하여 토큰 효율성을 극대화합니다.
# 1. 마켓플레이스 추가
/plugin marketplace add m16khb/claude-integration
# 2. 전체 플러그인 설치
/plugin install claude-integration
# 또는 개별 플러그인 설치
/plugin install backend-development
/plugin install documentation-generation
/plugin install git-workflows
/plugin install context-management
/plugin install automation-tools
| 플러그인 | 카테고리 | 설명 |
|---|---|---|
backend-development | development | NestJS + Fastify 백엔드 개발 에이전트 |
documentation-generation | documentation | CLAUDE.md 및 agent-docs 문서 생성 |
git-workflows | development | Git Flow 기반 스마트 커밋 |
context-management | productivity | 대용량 파일 청킹 및 컨텍스트 관리 |
automation-tools | productivity | Agent, Skill, Command 자동 생성 |
| 커맨드 | 플러그인 | 설명 |
|---|---|---|
/git-commit | git-workflows | Git Flow 기반 스마트 커밋 |
/continue-context | context-management | 컨텍스트 분석 및 작업 추천 |
/inject-context | context-management | 대용량 파일 구조 인식 청킹 |
/factory | automation-tools | Agent, Skill, Command 생성기 |
/setup-statusline | automation-tools | YAML 기반 status line 구성 |
/claude-sync | automation-tools | CLAUDE.md 자동 동기화 |
| 에이전트 | 모델 | 설명 |
|---|---|---|
nestjs-fastify-expert | Opus | NestJS + Fastify 오케스트레이터 |
| 에이전트 | 모델 | 설명 |
|---|---|---|
typeorm-expert | Sonnet | TypeORM 엔티티, 마이그레이션, 트랜잭션 |
redis-cache-expert | Sonnet | Redis 캐싱, @nestjs/cache-manager |
bullmq-queue-expert | Sonnet | BullMQ 작업 큐 |
cqrs-expert | Sonnet | CQRS 패턴, Command/Query/Event/Saga |
microservices-expert | Sonnet | 마이크로서비스, RabbitMQ, gRPC |
suites-testing-expert | Sonnet | Suites(Automock), Jest, E2E |
document-builder | Sonnet | 계층적 CLAUDE.md 및 agent-docs 생성 |
claude-integration/
├── .claude-plugin/
│ └── marketplace.json # 플러그인 레지스트리
├── plugins/ # 5개 전문화된 플러그인
│ ├── backend-development/ # NestJS 생태계 에이전트
│ │ ├── agents/
│ │ ├── commands/
│ │ └── skills/
│ ├── documentation-generation/
│ ├── git-workflows/
│ ├── context-management/
│ └── automation-tools/
├── agent-docs/ # 상세 문서
│ ├── constitution.md # 프로젝트 헌법
│ ├── architecture.md # 아키텍처 설계 원칙
│ ├── references/ # 레퍼런스
│ │ ├── agents.md
│ │ ├── plugins.md
│ │ └── agent-skills.md
│ └── guides/
│ └── usage.md # 사용 가이드
├── CLAUDE.md # 프로젝트 루트 설정
└── README.md
플러그인 활성화 시 자동 로드:
| MCP 서버 | 설명 | 요구사항 |
|---|---|---|
playwright | 브라우저 자동화 | Node.js 18+ |
context7 | 최신 문서 주입 | Node.js 18+ |
sequential-thinking | 단계별 사고 | Node.js 18+ |
chrome-devtools | 크롬 개발자 도구 | Node.js 22+, Chrome |
# MCP 상태 확인
claude mcp list
// Orchestrator를 통해 자동 위임
Task(
subagent_type="nestjs-fastify-expert",
prompt="Redis 캐시 설정하고 BullMQ 큐도 추가해줘"
)
/git-commit push
/inject-context ./large-file.ts "리팩토링해줘"
이슈와 PR을 환영합니다!
MIT License