Agent skill
project-guide
claude-plugin 프로젝트 개발 가이드라인, 레퍼런스 패턴, 프로젝트 구조 조회. Use when Claude needs to (1) Look up development principles (P1-P4, DRY, KISS, YAGNI, SOLID), (2) Find reference patterns for Hooks/Agents/Commands creation, (3) Understand project structure and file locations, (4) Learn how to create Skills/Hooks/Agents/Commands, or (5) Delegate to claude-code-guide for official Claude Code documentation
Install this agent skill to your Project
npx add-skill https://github.com/inchan/claude-plugins/tree/main/.claude/skills/project-guide
SKILL.md
Project Guide: claude-plugin 프로젝트 개발 도우미
핵심 지침
1. 프로젝트 문서 우선 원칙
항상 다음 순서로 조회:
1. /docs/guidelines/ # 개발 원칙 (development.md, tool-creation.md, documentation.md)
2. /docs/references/ # 레퍼런스 패턴 (hooks, agents, commands, plugins)₩
3. CLAUDE.md, README.md # 프로젝트 개요 및 구조
4. claude-code-guide # 공식 Claude Code 문서 (위임)
2. 주요 문서 경로
- Guidelines:
docs/guidelines/*.md - References:
docs/references/{hooks,agents,commands,plugins}/*.md - Templates:
templates/
3. claude-code-guide 위임 기준
다음 경우 반드시 위임:
-
Claude Code 작동 원리 질문
- "Skill은 어떻게 자동 활성화되나요?"
- "Hook 이벤트는 언제 발생하나요?"
-
공식 API/Tool 문서 질문
- "WebSearch 도구 사용법은?"
- "Task 도구 파라미터는?"
-
Agent SDK 관련 질문
- "Claude Agent SDK 구조는?"
- "서브에이전트 생성 방법은?"
위임 방법:
Task tool 사용:
- subagent_type: claude-code-guide
- description: "Claude Code 공식 문서 조회"
- prompt: "{사용자 질문 원문}"
4. 답변 형식
핵심 요약 + 파일:줄번호 참조
예시:
DRY 원칙(P3): 3번 반복 시 중복 제거
상세: docs/guidelines/development.md:69-84
제약 조건
- 허용 도구: Read, Grep, Glob, Task (claude-code-guide 위임용)
- 금지 도구: Write, Edit
- 답변 형식: 핵심 요약 + 파일 경로 제공 (전체 문서 복사 금지)
프로젝트 문서 위치
개발 가이드라인:
- Development principles:
/docs/guidelines/development.md - Tool creation guide:
/docs/guidelines/tool-creation.md - Documentation guide:
/docs/guidelines/documentation.md
레퍼런스:
- Quick reference table:
/docs/references/README.md - Hooks patterns:
/docs/references/hooks/ - Agents patterns:
/docs/references/agents/ - Commands patterns:
/docs/references/commands/
템플릿:
- Skills, Hooks, Agents, Commands:
/docs/templates/
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
outsourcing-core
로컬 AI CLI에 작업을 아웃소싱할 때 자동 활성화. Use when the task is complex, requires specialized AI capabilities, or benefits from distributing work to different AI models
search-core
웹 검색 및 출처 필터링 공통 로직. 공식 문서, 커뮤니티, 기술 블로그 검색 시 자동 활성화
scaffold-exercises
Create exercise directory structures with sections, problems, solutions, and explainers that pass linting. Use when user wants to scaffold exercises, create exercise stubs, or set up a new course section.
handoff
Compact the current conversation into a handoff document for another agent to pick up.
setup-pre-commit
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
obsidian-vault
Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.
Didn't find tool you were looking for?