update-skill-content
정보
이 스킬은 기존 SKILL.md 파일을 업데이트하여 문서의 품질과 정확성을 향상시킵니다. 절차를 정제하고, 일반적인 문제점을 확장하며, 특히 콘텐츠가 오래되거나 불명확할 때 관련 스킬을 동기화하는 데 중점을 둡니다. API 변경 후 또는 사용자 피드백을 바탕으로 스킬 문서를 유지 관리하는 데 사용하세요.
빠른 설치
Claude Code
추천npx skills add pjt222/agent-almanac -a claude-code/plugin add https://github.com/pjt222/agent-almanacgit clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/update-skill-contentClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Update Skill Content
Improve an existing SKILL.md by refining procedure steps, expanding Common Pitfalls with real failure modes, synchronizing the Related Skills section, and bumping the version number. Use this after a skill passes format validation but has content gaps, stale references, or incomplete procedures.
When to Use
- A skill's procedure steps reference outdated tools, APIs, or version numbers
- Common Pitfalls section is thin (fewer than 3 pitfalls) or missing real failure modes
- Related Skills section has broken cross-references or is missing relevant links
- Procedure steps lack concrete code examples or have vague instructions
- A new skill has been added to the library that should be cross-referenced from existing skills
- After receiving feedback that a skill's procedures are unclear or incomplete
Inputs
- Required: Path to the SKILL.md file to update
- Optional: Specific section(s) to focus on (e.g., "procedure", "pitfalls", "related-skills")
- Optional: Source of updates (changelog, issue report, user feedback)
- Optional: Whether to bump version (default: yes, minor bump)
Procedure
Step 1: Read Current Skill and Assess Content Quality
Read the entire SKILL.md and evaluate each section for completeness and accuracy.
Assessment criteria per section:
- When to Use: Are triggers concrete and actionable? (3-5 items expected)
- Inputs: Are types, defaults, and required/optional clearly separated?
- Procedure: Does each step have concrete code, Expected, and On failure?
- Validation: Are checklist items objectively testable? (5+ items expected)
- Common Pitfalls: Are pitfalls specific with symptoms and fixes? (3-6 expected)
- Related Skills: Do referenced skills exist? Are obvious related skills missing?
Got: A clear picture of which sections need improvement, with specific gaps identified.
If fail: If the skill cannot be read (path error), verify the path. If the SKILL.md has broken YAML frontmatter, fix frontmatter first using review-skill-format before attempting content updates.
Step 2: Check for Stale References
Scan procedure steps for version-specific references, tool names, URLs, and API patterns that may have changed.
Common staleness indicators:
- Specific version numbers (e.g.,
v1.24,R 4.3.0,Node 18) - URLs that may have moved or expired
- CLI flags or command syntax that has changed
- Package names that have been renamed or deprecated
- Configuration file formats that have evolved
# Check for version-specific references
grep -nE '[vV][0-9]+\.[0-9]+' skills/<skill-name>/SKILL.md
# Check for URLs
grep -nE 'https?://' skills/<skill-name>/SKILL.md
Got: A list of potentially stale references with line numbers. Each reference is verified as current or flagged for update.
If fail: If too many references to check manually, prioritize: procedure code blocks first (most likely to cause runtime failures), then Common Pitfalls (may reference old workarounds), then informational text.
Step 3: Update Procedure Steps for Accuracy
For each procedure step identified as needing improvement:
- Verify code blocks still execute correctly or reflect current best practices
- Add missing context sentences that explain why the step is needed
- Ensure concrete commands use real paths, real flags, and real output
- Update Expected blocks to match current tool behavior
- Update On failure blocks with current error messages and fixes
When updating code blocks, preserve the original structure:
- Keep step numbering consistent
- Maintain the
### Step N: Titleformat - Do not reorder steps unless the original order was incorrect
Got: All procedure steps contain current, executable code. Expected/On failure blocks reflect actual current behavior.
If fail: If unsure whether a code block is still correct, add a note: <!-- TODO: Verify this command against current version -->. Do not remove working code blocks to replace with untested alternatives.
Step 4: Expand Common Pitfalls
Review the Common Pitfalls section and expand if gaps exist.
Quality criteria for pitfalls:
- Each pitfall has a bold name followed by a specific description
- The description includes the symptom (what goes wrong) and the fix (how to avoid or recover)
- Pitfalls are drawn from real failure modes, not hypothetical concerns
- 3-6 pitfalls is the target range
Sources for new pitfalls:
- Procedure steps with complex On failure blocks (these are likely pitfalls)
- Related skills that warn about the same tools or patterns
- Common issues reported by users of the procedure
Got: 3-6 pitfalls, each with a specific symptom and fix. No generic pitfalls like "be careful" or "test thoroughly".
If fail: If only 1-2 pitfalls can be identified, that is acceptable for basic-complexity skills. For intermediate and advanced skills, fewer than 3 pitfalls suggests the author has not fully explored failure modes — flag this for future expansion.
Step 5: Synchronize Related Skills Section
Verify all cross-references in the Related Skills section are valid and add any missing links.
- For each referenced skill, verify it exists:
# Check if referenced skill exists test -d skills/referenced-skill-name && echo "EXISTS" || echo "NOT FOUND" - Search for skills that reference this skill (they should be cross-linked):
# Find skills that reference this skill grep -rl "skill-name" skills/*/SKILL.md - Check for obvious related skills based on domain and tags
- Use the format:
- \skill-id` — one-line description of the relationship`
Got: All referenced skills exist on disk. Bidirectional cross-references are in place. No orphaned links.
If fail: If a referenced skill does not exist, either remove the reference or note it as a planned future skill with a comment. If many skills reference this one but are not listed in Related Skills, add the most relevant 2-3.
Step 6: Bump Version in Frontmatter
Update the metadata.version field following semantic versioning:
- Patch bump (1.0 to 1.1): Typo fixes, minor clarifications, URL updates
- Minor bump (1.0 to 2.0): New procedure steps, significant content additions, structural changes
- Note: Skills use simplified two-part versioning (major.minor)
Also update any date fields if present in the frontmatter.
Got: Version is bumped appropriately. The change magnitude matches the update scope.
If fail: If the current version cannot be parsed, set it to "1.1" and add a comment noting the version history gap.
Validation
- All procedure steps contain current, executable code or concrete instructions
- No stale version references, URLs, or deprecated tool names remain
- Every procedure step has Expected: and On failure: blocks
- Common Pitfalls section has 3-6 specific pitfalls with symptoms and fixes
- All Related Skills cross-references point to existing skills
- Bidirectional cross-references are in place for closely related skills
- Version in frontmatter has been bumped appropriately
- Line count remains under 500 after updates
- SKILL.md still passes
review-skill-formatvalidation after changes
Pitfalls
- Updating code without testing: Changing a command in a procedure step without verifying it works is worse than leaving the old command. When uncertain, add a verification comment rather than an untested replacement.
- Over-expanding pitfalls: Adding 10+ pitfalls dilutes the section. Keep the 3-6 most impactful pitfalls; move edge cases to a
references/file if needed. - Breaking cross-references during updates: When renaming a skill or changing its domain, grep the entire skills library for references to the old name. Use
grep -rl "old-name" skills/to find all occurrences. - Forgetting to bump version: Every content update, no matter how small, should bump the version. This allows consumers to detect when a skill has changed.
- Scope creep into refactoring: Content updates improve what the skill says. If you find yourself restructuring sections or extracting to
references/, switch to therefactor-skill-structureskill instead.
Related Skills
review-skill-format— Run format validation before content updates to ensure the base structure is soundrefactor-skill-structure— When content updates push the skill over 500 lines, refactor structure to make roomevolve-skill— For deeper changes that go beyond content updates (e.g., creating an advanced variant)create-skill— Reference the canonical format spec when adding new sections or procedure stepsrepair-broken-references— Use for bulk cross-reference repair across the entire skills library
GitHub 저장소
연관 스킬
content-collections
메타이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
polymarket
메타이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
creating-opencode-plugins
메타이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
sglang
메타SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
