MCP HubMCP Hub
스킬 목록으로 돌아가기

update-skill-content

pjt222
업데이트됨 Yesterday
1 조회
17
2
17
GitHub에서 보기
메타api

정보

이 스킬은 기존 SKILL.md 파일을 업데이트하여 정확성과 명확성을 높이며, 절차 정교화, 일반적인 함정 확장, 관련 스킬 동기화에 중점을 둡니다. 이는 문서가 오래된 도구를 참조하거나, 함정 섹션이 부실하거나, 깨진 교차 참조를 포함할 때 트리거됩니다. 이 프로세스에는 버전 업그레이드가 포함되며, 절차가 불명확하거나 불완전하다는 피드백을 받은 후 유지 관리를 위해 설계되었습니다.

빠른 설치

Claude Code

추천
기본
npx skills add pjt222/agent-almanac -a claude-code
플러그인 명령대체
/plugin add https://github.com/pjt222/agent-almanac
Git 클론대체
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/update-skill-content

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Update Skill Content

Improve existing SKILL.md → refine procedure, expand pitfalls w/ real failure modes, sync Related Skills, bump ver. Use after format passes but content has gaps, stale refs, incomplete procedures.

Use When

  • Procedure refs outdated tools|APIs|vers
  • Pitfalls thin (< 3) or missing real failure modes
  • Related Skills broken refs|missing relevant
  • Procedure lacks concrete code|vague instructions
  • New skill added → existing should cross-ref
  • Feedback → procedures unclear|incomplete

In

  • Required: Path to SKILL.md
  • Optional: Specific section(s) ("procedure", "pitfalls", "related-skills")
  • Optional: Update source (changelog, issue, feedback)
  • Optional: Bump ver (default: yes, minor)

Do

Step 1: Read + Assess

Read entire SKILL.md, eval each section.

Per-section criteria:

  • When to Use: Triggers concrete + actionable? (3-5 items)
  • Inputs: Types, defaults, required|optional clear?
  • Procedure: Each step has concrete code, Expected, On failure?
  • Validation: Checklist objectively testable? (5+)
  • Pitfalls: Specific w/ symptoms + fixes? (3-6)
  • Related Skills: Refs exist? Obvious related missing?

Got: Clear picture of which sections need work, specific gaps ID'd.

If err: Can't read (path err) → verify path. Broken YAML frontmatter → fix first via review-skill-format before content updates.

Step 2: Stale Refs

Scan procedure for ver-specific refs, tool names, URLs, API patterns.

Staleness indicators:

  • Specific vers (v1.24, R 4.3.0, Node 18)
  • URLs maybe moved|expired
  • CLI flags|cmd syntax changed
  • Pkg names renamed|deprecated
  • Config formats 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: List of stale refs w/ line nums. Each verified current or flagged.

If err: Too many to check manually → prioritize: procedure code blocks first (most likely runtime fail), then Pitfalls (old workarounds), then info text.

Step 3: Update Procedure

Per step needing improvement:

  1. Verify code blocks exec correctly|reflect best practices
  2. Add missing ctx → explain why
  3. Concrete cmds: real paths, real flags, real out
  4. Update Expected → match current tool behavior
  5. Update On failure → current err msgs + fixes

When updating code, preserve orig structure:

  • Step numbering consistent
  • ### Step N: Title format
  • No reorder unless orig wrong

Got: All procedure steps current + executable code. Expected/On failure reflect actual current behavior.

If err: Unsure code still correct → add note <!-- TODO: Verify this command against current version -->. No remove working code → untested replace.

Step 4: Expand Pitfalls

Review Pitfalls, expand if gaps.

Quality:

  • Each: bold name + specific description
  • Description: symptom (what wrong) + fix (avoid|recover)
  • Real failure modes, not hypothetical
  • 3-6 target

Sources for new:

  • Procedure steps w/ complex On failure (likely pitfalls)
  • Related skills warning about same tools|patterns
  • Common user-reported issues

Got: 3-6 pitfalls, each w/ specific symptom + fix. No generic "be careful"|"test thoroughly".

If err: Only 1-2 ID'd → OK for basic. Intermediate|advanced w/ < 3 → author hasn't fully explored failure modes → flag for future.

Step 5: Sync Related Skills

Verify cross-refs valid + add missing.

  1. Per ref'd skill → verify exists:
    # Check if referenced skill exists
    test -d skills/referenced-skill-name && echo "EXISTS" || echo "NOT FOUND"
    
  2. Skills referencing this (should cross-link):
    # Find skills that reference this skill
    grep -rl "skill-name" skills/*/SKILL.md
    
  3. Check obvious related → domain + tags
  4. Format: - \skill-id` — one-line description of relationship`

Got: All ref'd skills exist on disk. Bidirectional refs in place. No orphaned links.

If err: Ref'd doesn't exist → remove ref or note as planned future. Many skills ref this but missing from Related → add 2-3 most relevant.

Step 6: Bump Ver

Update metadata.version per semver:

  • Patch (1.0 → 1.1): Typos, minor clarifications, URL updates
  • Minor (1.0 → 2.0): New procedure steps, significant additions, structural changes
  • Note: Skills use simplified two-part (major.minor)

Update date fields if present.

Got: Ver bumped appropriately. Change magnitude matches scope.

If err: Current ver unparseable → set "1.1" + comment noting history gap.

Check

  • All procedure steps current + executable code|concrete instructions
  • No stale ver refs, URLs, deprecated tool names
  • Every step has Expected: + On failure: blocks
  • Pitfalls 3-6 specific w/ symptoms + fixes
  • All Related Skills refs → existing skills
  • Bidirectional refs for closely related
  • Ver bumped appropriately
  • Line count < 500
  • SKILL.md still passes review-skill-format after changes

Traps

  • Update code w/o testing: Changing cmd w/o verify works → worse than leaving old. Uncertain → add verify comment, not untested replace.
  • Over-expand pitfalls: 10+ dilutes section. Keep 3-6 most impactful → edge cases → references/.
  • Break refs during updates: Renaming|domain change → grep entire library. grep -rl "old-name" skills/ finds all.
  • Forget bump: Every update, no matter small, bump ver. Lets consumers detect changes.
  • Scope creep → refactor: Content updates improve what skill says. Restructuring|extracting → switch to refactor-skill-structure.

  • review-skill-format — Run format validation before content updates
  • refactor-skill-structure — Content updates push > 500 lines → refactor structure for room
  • evolve-skill — Deeper changes beyond content updates (advanced variant)
  • create-skill — Reference canonical format spec for new sections|steps
  • repair-broken-references — Bulk cross-ref repair across library

GitHub 저장소

pjt222/agent-almanac
경로: i18n/caveman-ultra/skills/update-skill-content
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

연관 스킬

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을 선택하십시오.

스킬 보기