用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/UitbreidenOS/Claudient --skill freshness-auditor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | freshness-auditor |
| description | Run freshness audits and generate prioritized refresh lists for content maintenance |
check-freshness.js instead)/workflows/freshness-refresh instead, which spawns review agents)code-review skill)Execute the freshness check script:
node scripts/check-freshness.js
This scans all skills/ and agents/ directories for files with an updated: date in YAML frontmatter. It flags files older than 6 months as stale and files missing a date entirely.
Output includes:
updated: fieldFor a more detailed breakdown organized by category and priority:
node scripts/generate-refresh-report.js > FRESHNESS_REPORT.md
This produces a Markdown report with:
Read the freshness report and sort files into tiers:
Tier 1 (Critical — refresh immediately):
These files are on critical paths; staleness could mislead users or break workflows.
Tier 2 (Important — refresh within 2 weeks):
These are referenced regularly but less critical than Tier 1.
Tier 3 (Optional — review, may keep as-is):
These may not need updating if content is still accurate.
For each Tier 1 file, do a quick accuracy check:
File: [path]
Last updated: [date]
Age: [N months]
Quick accuracy check:
- [ ] All command examples still work in current Claude Code
- [ ] Tool names and features referenced still exist
- [ ] No references to deprecated features or old model versions
- [ ] External links (if any) are not 404
- [ ] Code syntax is current (not using obsolete APIs)
Status: [Fresh | Minor Updates Needed | Major Rewrite Needed]
If >30% of a file's content is inaccurate or outdated, mark it for a major refresh in the next quarterly cycle.
Create a text file with your findings:
# Freshness Audit Results — [DATE]
## Summary
- Total files scanned: X
- Fresh (< 6 months): X
- Stale (≥ 6 months): X
- Missing dates: X
## Tier 1 (Refresh immediately)
- [File path] — last updated [date], [N] months old
- ...
## Tier 2 (Refresh within 2 weeks)
- [File path] — last updated [date], [N] months old
- ...
## Tier 3 (Optional review)
- [File path] — last updated [date], [N] months old
- ...
## Files needing major rewrite
- [File path] — [reason: outdated examples, deprecated features, etc.]
## Next steps
1. Assign Tier 1 files to review agents
2. Schedule Tier 2 review for sprint backlog
3. Archive or deprecate Tier 3 files if no longer relevant
4. Run the full /workflows/freshness-refresh to coordinate updates
Based on the audit results:
/workflows/freshness-refresh immediately to get all agents updating content in parallel.Before certifying Claudient as a production tool, you want to ensure all content is current.
# Step 1: Run freshness check
node scripts/check-freshness.js
# Output:
# Freshness check: 847 files scanned (stale threshold: 6 months)
# Fresh: 621
# Stale: 156
# No date: 70
156 stale files and 70 missing dates — time to remediate before certification.
# Step 2: Generate detailed report
node scripts/generate-refresh-report.js > FRESHNESS_REPORT.md
# Review the report and categorize:
# Tier 1 (Core skills): 32 files
# Tier 2 (Domain skills, workflows): 89 files
# Tier 3 (Archived, examples): 35 files
Based on the audit, the team decides:
Spawn a targeted refresh workflow for Tier 1 files only:
# (Uses the freshness-refresh workflow with --tier 1 flag)
This ensures certification readiness without blocking on the full backlog.
/guides/content-freshness — SLA, staleness thresholds, and what to check per content type/workflows/freshness-refresh — full quarterly maintenance sprint (uses this audit as input)/scripts/check-freshness.js — core freshness detection CLI/scripts/generate-refresh-report.js — generates the detailed freshness report