소스 정보
- 저장소
- samhwang/me.samh.page
- 최근 소스 활동
- 2026년 5월 22일 14:26
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/samhwang/me.samh.page --skill update-docs명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | update-docs |
| description | Audit and update all project documentation to reflect recent changes |
Audit and update all project documentation to reflect recent code changes, ensuring docs stay in sync with the codebase.
When user asks to:
Also trigger automatically when:
| Location | Content | Key Sections |
|---|---|---|
README.md | Project overview, tech stack, quick start | Entry point, links to docs/ |
docs/ | Developer-facing docs (Diataxis framework) | How-to guides, reference, explanation |
AGENTS.md | Agent control manifest | Project structure, tech stack, available skills/rules, commands |
.agents/rules/ | Domain-specific guidelines | Code style, patterns, commands, testing, deployment, communication |
.agents/skills/ | Task-specific toolkits | Each skill's SKILL.md |
Determine the scope of changes to review:
# If user specifies a range, use it. Otherwise, find recent changes:
git log --oneline --since="2 weeks ago"
git log --oneline HEAD~20..HEAD
# Get a summary of what changed:
git diff --stat <range>
Ask the user for a commit range if not provided. Default to the last 20 commits or 2 weeks, whichever is smaller.
Group changes by their documentation impact:
For each category, note which documentation locations are affected using the mapping:
| Change Type | Docs to Check |
|---|---|
| New resume section | docs/how-to/02-add-resume-section.md, docs/reference/02-project-structure.md |
| New component | docs/reference/02-project-structure.md |
| New dependency | README.md, AGENTS.md (tech stack), docs/reference/01-commands.md |
| New pnpm script | docs/reference/01-commands.md, .agents/rules/commands.md |
| New route | docs/reference/02-project-structure.md, AGENTS.md |
| New design token | docs/reference/03-design-tokens.md |
| New skill/rule | AGENTS.md (available skills/rules) |
| Test changes | .agents/rules/testing.md |
| Deployment change | docs/explanation/01-architecture.md, .agents/rules/deployment.md |
| Build config change | docs/reference/01-commands.md, .agents/rules/commands.md |
| Styling change | docs/reference/03-design-tokens.md, .agents/rules/patterns.md |
For each affected documentation file:
Pay special attention to:
package.json?)panda.config.ts?)Update each affected file following these principles:
.agents/rules/communication.mdReview all changes for:
docs/index.md links are current and complete# Verify commands still work
pnpm typecheck
pnpm lint
README.md checked (entry point still accurate)docs/ files checked and updated for affected topicsdocs/index.md links verifiedAGENTS.md checked: project structure, tech stack, skills, rules, commands.agents/rules/ checked for affected rules.agents/skills/ checked for affected skillspnpm lint (for any code-adjacent changes)The docs/ directory follows the Diataxis framework. Each document must serve one primary purpose:
| Type | Purpose | Question It Answers |
|---|---|---|
| How-to guide | Goal-oriented steps | "How do I...?" |
| Reference | Information-oriented lookup | "What is...?" |
| Explanation | Understanding-oriented discussion | "Why...? Can you tell me about...?" |
| Tutorial | Learning-oriented guided experience | "Can you teach me to...?" |
Current docs/ structure:
how-to/: 01-quick-start, 02-add-resume-sectionreference/: 01-commands, 02-project-structure, 03-design-tokensexplanation/: 01-architectureWhen updating docs, do not mix content types. Move how-to steps out of reference docs, move reference tables out of explanation docs, etc.
Every mention of an external tool, framework, pattern, or standard must include a hyperlink on first mention per document.
docs/ files unless a major new feature clearly warrants one.docs/ files are numbered for ordering. If a new file is needed, pick the next available number.AGENTS.md is the most frequently impacted file since it tracks project structure, tech stack, and available skills/rules.