MCP HubMCP Hub
Вернуться к навыкам

update-skill-content

pjt222
Обновлено 2 days ago
7 просмотров
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 — TypeScript-ориентированного инструмента, который преобразует файлы Markdown/MDX в типобезопасные коллекции данных с валидацией Zod. Используйте его при создании блогов, сайтов документации или контентных приложений на Vite + React для обеспечения типобезопасности и автоматической проверки содержимого. Он охватывает всё: от настройки плагина Vite и компиляции MDX до оптимизации развертывания и валидации схем.

Просмотреть навык

polymarket

Мета

Этот навык позволяет разработчикам создавать приложения на платформе прогнозных рынков Polymarket, включая интеграцию с API для торговли и получения рыночных данных. Он также обеспечивает потоковую передачу данных в реальном времени через WebSocket для отслеживания текущих сделок и рыночной активности. Используйте его для реализации торговых стратегий или создания инструментов, обрабатывающих обновления рынка в реальном времени.

Просмотреть навык

creating-opencode-plugins

Мета

Этот навык помогает разработчикам создавать плагины OpenCode, которые подключаются к более чем 25 типам событий, таким как команды, файлы и операции LSP. Он предоставляет структуру плагина, спецификации API событий и шаблоны реализации для модулей на JavaScript/TypeScript. Используйте его, когда вам нужно перехватывать, отслеживать или расширять жизненный цикл ассистента OpenCode AI с помощью пользовательской событийно-ориентированной логики.

Просмотреть навык

sglang

Мета

SGLang — это высокопроизводительный фреймворк для обслуживания больших языковых моделей (LLM), специализирующийся на быстрой структурированной генерации JSON, regex и рабочих процессов агентов с использованием кэширования префиксов RadixAttention. Он обеспечивает значительно более высокую скорость вывода, особенно для задач с повторяющимися префиксами, что делает его идеальным для сложных структурированных результатов и многократных диалогов. Выбирайте SGLang вместо альтернатив, таких как vLLM, когда вам требуется ограниченное декодирование или вы создаете приложения с интенсивным совместным использованием префиксов.

Просмотреть навык