Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

continuous-claudemd-updatescontinuous claudemd updates 搜索

Agent Skill

continuous-claudemd-updates 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

264

周安装

11

GitHub Stars

公开资料未说明

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/vijaykpatel/favorite_skills_and_plugins --skill continuous-claudemd-updates

简介

continuous-claudemd-updates 自动同步 CLAUDE.md 与代码库变动。

  • 定期分析提交影响,清理过时信息并将细节移至 docs/ 文件夹。
  • 保持主文件简洁,仅保留高频指令与关键约定,提升可读性。
  • 启用前应配置分析脚本路径与触发时机,确保及时响应变更。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Continuous CLAUDE.md Updates

Overview

Keeps CLAUDE.md synchronized with codebase changes through automatic analysis after commits and periodic audits. Maintains conciseness by moving detailed content to docs/ folder, removes outdated information, and ensures documentation accuracy.

Announce at start: "I'm using the continuous-claudemd-updates skill to sync CLAUDE.md with recent changes."

Workflow

After Each Commit (Automatic Mode)

Follow this sequence when a commit has been made:

1. Analyze Changes

Run the analysis script to understand the impact:

python scripts/analyze_changes.py --commit HEAD

This outputs JSON with:

  • Changed files categorized by type (config, source, tests, docs, assets)
  • Change magnitude (insertions, deletions, total changes)
  • Impact level (minor, moderate, major)
  • Commit message for context

2. Review CLAUDE.md Relevance

Based on analysis, determine if CLAUDE.md needs updates:

Update if:

  • Config files changed (package.json, tsconfig.json, etc.)
  • New patterns/conventions introduced in source files
  • Architecture or structure modified
  • Files referenced in CLAUDE.md were changed/deleted
  • Major features added (impact: "major" or "moderate")

Skip if:

  • Only test files changed
  • Documentation-only changes
  • Minor bug fixes with no pattern changes
  • Impact level: "minor" with no config changes

3. Read Current CLAUDE.md

cat CLAUDE.md

Understand current structure and content before modifying.

4. Compare Against Changes

For each changed file category:

Config changes: Check if CLAUDE.md mentions these configs

  • Update version numbers, dependency changes, new scripts
  • Add new configuration requirements
  • Remove references to deleted configs

Source changes: Identify pattern changes

  • New component structures
  • Changed API conventions
  • Modified file organization
  • Updated workflows

Deletions: Remove obsolete references

  • Check for file paths that no longer exist
  • Remove outdated pattern descriptions
  • Delete deprecated workflow instructions

5. Apply Updates

When updating CLAUDE.md:

Keep entries concise (1-4 sentences):

## API Client

All API calls use `src/lib/api.ts`. Handles auth, retries, errors.

See [docs/api-patterns.md](docs/api-patterns.md) for advanced patterns.

Move verbose content to docs/:

If adding >3 paragraphs or >20 lines of code examples:

  1. Create a docs/ note using the template from assets/note-template.md
  2. Place detailed content there
  3. Add concise summary to CLAUDE.md with link

Example:

# Create detailed note
cp assets/note-template.md docs/authentication-flow.md
# Edit docs/authentication-flow.md with details

Then in CLAUDE.md:

## Authentication

Using NextAuth.js with session-based auth. Config in `pages/api/auth/[...nextauth].ts`.

Full setup guide: [docs/authentication-flow.md](docs/authentication-flow.md)

Remove outdated information:

  • Delete references to renamed/deleted files
  • Remove deprecated patterns
  • Eliminate historical context ("previously we used...")
  • Update file paths that changed

6. Verify Links

Check that all docs/ links are valid:

# Manual verification or use audit script
python scripts/audit_claudemd.py --claudemd CLAUDE.md

Fix any broken links before committing.

7. Commit Updates

Create a commit for CLAUDE.md changes:

git add CLAUDE.md docs/
git commit -m "$(cat <<'EOF'
Update CLAUDE.md: [brief description of changes]

- [Specific change 1]
- [Specific change 2]

Synced with commit: [original commit hash]

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
EOF
)"

Manual Audit Mode

When explicitly requested or for periodic maintenance:

1. Run Full Audit

python scripts/audit_claudemd.py --claudemd CLAUDE.md --report

This checks for:

  • Broken file references
  • Outdated configuration mentions
  • Overly verbose sections
  • Broken docs/ links

2. Review Audit Results

The audit categorizes issues:

missing_file: File referenced in CLAUDE.md no longer exists

  • Remove the reference or update to correct path

config_check: Configuration file mentioned may be outdated

  • Verify the reference matches actual config state
  • Update or remove if inaccurate

verbosity: Section is too long

  • Move content to docs/ with link
  • Condense to essential points

broken_link: docs/ link is invalid

  • Fix the link or create the missing doc

3. Systematic Cleanup

Work through audit issues systematically:

  1. Fix file references: Update all missing file paths
  2. Verify configs: Check each config reference against actual files
  3. Reduce verbosity: Move long sections to docs/
  4. Repair links: Create missing docs or fix paths

4. Overall Coherence Check

After fixing audit issues, review CLAUDE.md as a whole:

Structure check:

  • Is organization logical?
  • Are sections clearly labeled?
  • Is there a natural flow?

Content check:

  • Does each section add value?
  • Are examples current and accurate?
  • Is information duplicated anywhere?

Completeness check:

  • Are critical conventions documented?
  • Are new patterns from recent commits included?
  • Is anything essential missing?

5. Commit Audit Changes

git add CLAUDE.md docs/
git commit -m "$(cat <<'EOF'
Audit and update CLAUDE.md

- Fix [N] broken file references
- Move verbose sections to docs/
- Update configuration references
- Remove outdated information

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
EOF
)"

Content Guidelines

See references/guidelines.md for comprehensive content standards.

Quick reference:

  • Be concise: Bullet points over paragraphs
  • Be current: Remove outdated info immediately
  • Be specific: Link to actual file paths
  • Split when verbose: >3 paragraphs → docs/ folder
  • Link generously: Point to details rather than include everything

Examples

See references/examples.md for good vs bad examples covering:

  • Configuration changes
  • Component patterns
  • API conventions
  • Testing requirements
  • Major refactoring scenarios
  • When to create docs/ notes

Common Patterns

Pattern 1: New Feature Added

1. Analyze: Major source changes detected
2. Review: New component pattern introduced
3. Update: Add concise entry to CLAUDE.md
4. If complex: Create docs/component-patterns.md
5. Commit: "Update CLAUDE.md: Document new component pattern"

Pattern 2: Configuration Changed

1. Analyze: Config file modified (e.g., package.json)
2. Review: New scripts or dependencies
3. Update: Modify relevant CLAUDE.md section
4. Verify: Ensure all config references accurate
5. Commit: "Update CLAUDE.md: Sync with package.json changes"

Pattern 3: Files Renamed/Deleted

1. Analyze: File deletions detected
2. Review: CLAUDE.md for references to deleted files
3. Update: Remove or fix file path references
4. Verify: Run audit to catch any missed references
5. Commit: "Update CLAUDE.md: Fix stale file references"

Pattern 4: Audit Finds Verbosity

1. Audit: Section flagged as too long
2. Create: New docs/ note using template
3. Move: Detailed content to docs/ file
4. Update: Replace with concise summary + link
5. Commit: "Refactor CLAUDE.md: Move [topic] details to docs/"

Decision Tree

Commit made or update requested?
├─ Automatic after commit
│  ├─ Run analyze_changes.py
│  ├─ Impact level "minor" + no config changes?
│  │  └─ Skip update (notify user)
│  └─ Impact "moderate"/"major" or config changed?
│     ├─ Read CLAUDE.md
│     ├─ Compare against changes
│     ├─ Apply updates (concise, split if verbose)
│     └─ Commit changes
│
└─ Manual audit requested
   ├─ Run audit_claudemd.py --report
   ├─ Review audit issues
   ├─ Fix systematically (files → configs → verbosity → links)
   ├─ Overall coherence check
   └─ Commit audit changes

Resources

scripts/analyze_changes.py

Analyzes git changes and determines impact on CLAUDE.md.

Usage:

python scripts/analyze_changes.py [--commit <hash>]

Output: JSON with change analysis (magnitude, categories, impact level)

scripts/audit_claudemd.py

Audits CLAUDE.md against actual codebase state.

Usage:

python scripts/audit_claudemd.py [--claudemd <path>] [--report] [--json]

Checks:

  • Missing file references
  • Outdated config mentions
  • Overly verbose sections
  • Broken docs/ links

references/guidelines.md

Comprehensive content guidelines for CLAUDE.md including:

  • When to include vs move to docs/
  • Content quality standards
  • Section organization
  • Maintenance workflow
  • Red flags to watch for

Load when you need detailed guidance on content decisions.

references/examples.md

Good vs bad examples covering:

  • Configuration changes
  • Component patterns
  • API conventions
  • Major refactoring scenarios
  • When to create docs/ notes

Load when you need specific examples for comparison.

assets/note-template.md

Template for creating detailed docs/ notes with standard structure:

  • Purpose statement
  • Overview
  • Sections with examples
  • Common patterns
  • Troubleshooting
  • Last updated date

Copy this template when creating new docs/ notes.

Red Flags

Never:

  • Leave outdated file references in CLAUDE.md
  • Add verbose content (>4 paragraphs) directly to CLAUDE.md
  • Include historical context ("we used to...")
  • Skip verification after updates
  • Commit without descriptive message

Always:

  • Run analysis before updates (automatic mode)
  • Check for verbosity (split to docs/ if needed)
  • Remove outdated information immediately
  • Verify links before committing
  • Create commit with specific change description

Integration

This skill runs:

Automatically (if configured):

  • After git commit via post-commit hook
  • Triggered by commit workflow skills

Manually:

  • User requests CLAUDE.md update
  • User requests CLAUDE.md audit
  • After major refactoring
  • Periodic maintenance (weekly/monthly)

Pairs with:

  • Commit workflow skills
  • Documentation maintenance tasks
  • Code review processes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.07%
按下载量换算34

Claude

30.1%
按下载量换算26

Cursor

16.97%
按下载量换算15

Gemini CLI

9.57%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills