Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计异常

anthropic-docs-updaterAnthropic 文档 updater

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

499

周安装

21

GitHub Stars

9

下载量

175
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:anthropic-docs-updater(Anthropic 文档 updater)
来源仓库:https://github.com/adaptationio/skrillz
仓库路径:skills/anthropic-docs-updater
安装命令:
npx skills add https://github.com/adaptationio/skrillz --skill anthropic-docs-updater
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/adaptationio/skrillz --skill anthropic-docs-updater

简介

anthropic-docs-updater 自动检测并更新 anthropic-expert 技能中的官方文档内容。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中保持 Anthropic 相关知识库的时效性。
  • 通过五步流程:检测更新、获取内容、转换格式、集成到技能、验证质量,实现自动化维护。
  • 安装前请确认是否允许联网抓取官方源,注意是否会修改本地技能文件,建议定期运行。
  • 80% 以上更新可自动完成,剩余需人工复核以确保内容准确无退化。

SKILL.md

Anthropic Docs Updater

Overview

anthropic-docs-updater automatically keeps the anthropic-expert skill current by detecting, fetching, and integrating Anthropic documentation updates.

Purpose: Automated documentation maintenance for anthropic-expert

Update Workflow (5 steps):

  1. Check for Updates - Detect new releases and documentation changes
  2. Fetch Documentation - Download updated content from official sources
  3. Process Content - Convert to skill reference format
  4. Update Skill - Integrate new content into anthropic-expert
  5. Validate Updates - Ensure quality maintained, no regressions

Automation: 80% automated (manual review for breaking changes)

Update Sources:

  • GitHub Releases (SDK version updates)
  • docs.claude.com/en/release-notes (API updates)
  • code.claude.com/docs/en/changelog (Claude Code updates)
  • anthropic.com/news (model announcements)

When to Use

  • Weekly/monthly update checks (stay current)
  • After Anthropic announces new features
  • Before starting new Anthropic project (ensure latest docs)
  • When anthropic-expert seems outdated
  • Automated scheduled updates (cron job)

Prerequisites

  • anthropic-expert skill installed
  • Python 3.7+ with requests library
  • GitHub API access (for release checking)
  • Internet access (for fetching docs)

Update Workflow

Step 1: Check for Updates

Purpose: Detect new releases, documentation changes, feature announcements

Process:

  1. Check GitHub Releases python scripts/check-updates.py --github

- Queries GitHub API for latest releases - Checks: anthropic-sdk-python, claude-agent-sdk-python - Compares to current versions in changelog.md - Reports new releases found

  1. Check Release Notes python scripts/check-updates.py --docs

- Fetches docs.claude.com/en/release-notes - Compares to last check date - Identifies new entries

  1. Check Claude Code Changelog python scripts/check-updates.py --claude-code

- Fetches code.claude.com/docs/en/changelog - Detects new versions or features

  1. Generate Update Report python scripts/check-updates.py --all

- Runs all checks - Aggregates findings - Outputs: update-report.txt with detected changes

Validation:

  • GitHub releases checked
  • Release notes checked
  • Claude Code changelog checked
  • Update report generated
  • New updates detected (or confirmed current)

Outputs:

  • update-report.txt (what's new)
  • List of detected changes
  • Recommended update actions

Time Estimate: 10-15 minutes (automated)

Example Output:

Anthropic Documentation Update Check
=====================================
Date: 2025-11-15

GitHub Releases:
✅ anthropic-sdk-python: v0.45.0 (current: v0.42.0) - UPDATE AVAILABLE
✅ claude-agent-sdk-python: v1.12.0 (current: v1.10.0) - UPDATE AVAILABLE

Release Notes (docs.claude.com):
✅ New feature: Batch API cost reduction increased to 60%
✅ New model: Claude Sonnet 4.6 announced

Claude Code Changelog:
- No new updates since last check

Recommendation: UPDATE AVAILABLE
- 2 SDK updates
- 2 API feature updates
- Proceed to Step 2 (Fetch Documentation)

Step 2: Fetch Documentation

Purpose: Download updated content from official sources

Process:

  1. Fetch SDK Documentation python scripts/fetch-docs.py --github-readmes

- Downloads README.md from SDK repositories - Gets changelog/release notes from GitHub - Saves to temp/sdk-docs/

  1. Fetch API Documentation python scripts/fetch-docs.py --api-docs

- Fetches updated pages from docs.claude.com - Downloads release notes - Saves to temp/api-docs/

  1. Fetch Claude Code Documentation python scripts/fetch-docs.py --claude-code-docs

- Fetches updated pages from code.claude.com - Downloads changelog - Saves to temp/claude-code-docs/

  1. Verify Downloads

- Check all files downloaded successfully - Validate file integrity - Confirm no download errors

Validation:

  • SDK docs fetched successfully
  • API docs fetched successfully
  • Claude Code docs fetched (if updates)
  • All files saved to temp directory
  • No download errors

Outputs:

  • temp/sdk-docs/ (SDK documentation)
  • temp/api-docs/ (API documentation)
  • temp/claude-code-docs/ (Claude Code documentation)
  • fetch-log.txt (download log)

Time Estimate: 15-30 minutes (automated, depends on amount of content)


Step 3: Process Documentation

Purpose: Convert fetched content to skill reference format

Process:

  1. Parse Fetched Documentation python scripts/process-docs.py --input temp/ --output processed/

- Parses markdown from temp/ - Extracts relevant sections - Identifies code examples - Structures by product

  1. Convert to Reference Format

- Organize by product/capability - Format consistently with existing references - Extract code examples properly - Add navigation headers

  1. Merge with Existing Content

- Compare new vs existing documentation - Identify additions, changes, removals - Preserve custom examples/notes - Generate diff report

  1. Validate Processed Content

- Check markdown syntax - Verify code examples - Ensure consistent formatting

Validation:

  • All fetched docs processed
  • Content converted to reference format
  • Organized by product/capability
  • Code examples extracted correctly
  • Diff report generated (what changed)
  • Processed content validated

Outputs:

  • processed/ (processed documentation)
  • diff-report.txt (what changed)
  • Formatted content ready for integration

Time Estimate: 20-40 minutes (automated with manual review of diff)


Step 4: Update anthropic-expert Skill

Purpose: Integrate new content into anthropic-expert skill safely

Process:

  1. Backup Current Skill python scripts/update-skill.py --backup

- Creates backup of anthropic-expert - Saves to anthropic-expert.backup-YYYYMMDD/ - Preserves all files

  1. Integrate New Content python scripts/update-skill.py --integrate processed/

- Updates relevant reference files - Adds new features to appropriate sections - Preserves custom content - Updates changelog.md with changes

  1. Update Version

- Increments version number - Updates changelog with: - Version number - Date - Changes summary - New features - Updated documentation

  1. Review Changes

- Display diff of what changed - Prompt for confirmation (if manual mode) - Allow rollback if issues

Validation:

  • Current skill backed up
  • New content integrated successfully
  • Changelog updated with version and changes
  • No merge conflicts
  • All reference files valid markdown
  • Ready for validation step

Outputs:

  • Updated anthropic-expert skill
  • Backup in anthropic-expert.backup-*/
  • Updated changelog.md
  • Integration log

Time Estimate: 15-30 minutes (automated, quick review)


Step 5: Validate Updates

Purpose: Ensure updates maintain quality and don't introduce regressions

Process:

  1. Run Structure Validation python../../review-multi/scripts/validate-structure.py../anthropic-expert

- Validates YAML frontmatter - Checks file structure - Verifies naming conventions - Ensures progressive disclosure - Must pass (5/5 or 4/5)

  1. Test Search Functionality python../anthropic-expert/scripts/search-docs.py "test query"

- Verify search still works - Check can find content in updated files - Ensure no search errors

  1. Manual Spot Check

- Review 2-3 updated sections - Verify accuracy of new content - Check code examples valid - Ensure formatting consistent

  1. Validation Decision

- PASS: All validations successful → Finalize update - FAIL: Issues found → Rollback and investigate

  1. Rollback if Failed (if validation fails) python scripts/update-skill.py --rollback

- Restores from backup - Reverts to previous version - Logs failure for investigation

Validation:

  • Structure validation passes (≥4/5)
  • Search functionality works
  • Spot check confirms accuracy
  • No regressions detected
  • Quality maintained
  • Update finalized OR rolled back if issues

Outputs:

  • Validation report
  • Final updated skill (if passed)
  • OR restored backup (if failed)
  • Update success/failure status

Time Estimate: 20-30 minutes


Post-Workflow: Update Complete

If Successful:

  1. ✅ anthropic-expert updated with latest documentation
  2. ✅ Changelog.md updated with changes
  3. ✅ Quality validated (structure 5/5)
  4. ✅ Ready to use with latest Anthropic features

If Failed:

  1. ❌ Updates rolled back
  2. 📋 Investigation needed (check logs)
  3. 🔄 Manual review of changes
  4. 🛠️ Fix issues and retry

Next Check: Weekly or when Anthropic announces updates


Best Practices

1. Schedule Regular Updates

Practice: Weekly automated check for updates

Implementation: Cron job or scheduled task

# Weekly check (Mondays at 9am)
0 9 * * 1 cd /path/to/skills && python anthropic-docs-updater/scripts/check-updates.py --all

2. Review Breaking Changes Manually

Practice: For major version updates, review changes before applying

Why: Breaking changes may require manual updates to examples

3. Backup Before Updating

Practice: Always backup (Step 4 does this automatically)

Why: Can rollback if updates cause issues

4. Validate After Updates

Practice: Always run Step 5 (validation)

Why: Ensures updates don't break skill quality

5. Track Update History

Practice: Maintain detailed changelog

Why: Understand what changed when, aids troubleshooting


Quick Reference

The 5-Step Update Workflow

StepFocusTimeAutomationOutput
1. Check UpdatesDetect changes10-15m100%update-report.txt
2. Fetch DocsDownload content15-30m100%temp/docs/
3. Process ContentConvert format20-40m90%processed/docs/
4. Update SkillIntegrate content15-30m95%Updated skill
5. ValidateEnsure quality20-30m70%Validation report

Total Time: 1.5-2.5 hours (mostly automated)

Update Sources

SourceWhat It TracksCheck Method
GitHub ReleasesSDK versionsGitHub API
Release NotesAPI featuresWeb scraping
Claude Code ChangelogCLI updatesWeb scraping
Anthropic NewsModel announcementsManual/RSS

Common Commands

# Check for updates
python scripts/check-updates.py --all

# Fetch new documentation
python scripts/fetch-docs.py --all

# Process fetched docs
python scripts/process-docs.py --input temp/ --output processed/

# Apply updates
python scripts/update-skill.py --integrate processed/

# Validate
python scripts/update-skill.py --validate

# Rollback if needed
python scripts/update-skill.py --rollback

Automation Schedule

Recommended: Weekly checks, monthly comprehensive updates

Cron Example (check weekly, update monthly):

# Check for updates every Monday
0 9 * * 1 python check-updates.py --all > /tmp/anthropic-updates.log

# Full update first Monday of month
0 10 1-7 * 1 bash run-full-update.sh

anthropic-docs-updater ensures anthropic-expert stays current with the latest Anthropic products, features, and documentation through automated update detection, fetching, processing, and integration.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.74%
按下载量换算49

github-copilot

22.01%
按下载量换算39

OpenCode

16.38%
按下载量换算29

neovate

13.33%
按下载量换算23

Antigravity

8.11%
按下载量换算14

kilo

3.72%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills