Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计异常

update-refs更新参考文献

Agent Skill

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

总安装

541

周安装

23

GitHub Stars

1,620

下载量

190
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/maxritter/claude-codepro --skill update-refs

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • update-refs 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Update References

Ensure naming and documentation consistency across all codebase locations.

Checklist

When updating terminology, feature names, descriptions, or counts, check ALL locations:

1. User-Facing Messages

LocationWhat to Check
launcher/banner.pyWelcome banner text, feature descriptions
launcher/cli.pyPilot CLI help text and messages
installer/cli.pyInstaller CLI help text, prompts
installer/steps/finalize.pyPost-install instructions
installer/ui.pyUI banner and status messages

2. Documentation & Website

LocationWhat to Check
README.mdFeature descriptions, usage examples, counts (rules, hooks, skills, commands)
docs/site/index.htmlSEO meta tags, page title, structured data
docs/site/src/pages/Index.tsxSEO description, structured data counts
docs/site/src/components/HeroSection.tsxStats bar counts (rules, hooks, skills, LSPs, MCP)
docs/site/src/components/WhatsInside.tsxFeature cards, descriptions, item counts
docs/site/src/components/DeepDiveSection.tsxUnder the Hood subtitle counts, hooks pipeline, rules categories
docs/site/src/components/WorkflowSteps.tsx/spec workflow details, All Commands grid
docs/site/src/components/ComparisonSection.tsxBefore & After comparison table
docs/site/src/components/PricingSection.tsxStandard plan feature counts, value proposition
docs/site/src/components/InstallSection.tsxInstallation instructions
docs/site/src/components/Footer.tsxFooter links
docs/site/src/components/NavBar.tsxNavigation links

3. Package & Install

LocationWhat to Check
pyproject.tomlPackage name, description, metadata
install.shShell installer script messages
launcher/__init__.pyPackage docstring

4. Claude Configuration (Plugin Source)

LocationWhat to Check
pilot/commands/*.mdCommand descriptions in frontmatter (spec, sync, vault, learn, plus internal phases)
pilot/skills/*/SKILL.mdSkill descriptions in frontmatter
pilot/rules/*.mdStandard rules content
pilot/hooks/hooks.jsonHook configuration and event triggers
pilot/hooks/*.pyHook script messages and logic
pilot/agents/*.mdSub-agent definitions (plan-verifier, spec-verifier)
pilot/settings.jsonLSP server configuration
pilot/modes/*.jsonLanguage mode definitions

5. Project-Level Claude Config

LocationWhat to Check
.claude/rules/*.mdProject-specific rules (git-commits.md, project.md)
.claude/skills/*/SKILL.mdProject-specific skills (lsp-cleaner, pr-review, update-refs)

No Hardcoded Counts

Do NOT add specific counts (e.g., "22 rules", "7 hooks", "14 skills") to user-facing text.

The project deliberately avoids quantity-focused messaging. Use qualitative descriptions instead:

❌ Don't✅ Do
"22 rules loaded every session""Production-tested rules loaded every session"
"7 hooks auto-lint on every edit""Hooks auto-lint, format, type-check on every edit"
"14 coding skills""Coding skills activated dynamically"
"5 MCP servers + 3 LSP servers""MCP servers + language servers pre-configured"
"2,900+ lines of best practices""Production-tested best practices"

Why: Quality over quantity. Counts become stale and create maintenance burden across many files. The value is in what the system does, not how many components it has.

Workflow

  1. Search first - Use Grep to find all occurrences: Grep pattern="old term" glob="*.{md,py,tsx,json,ts}"
  2. Update systematically - Work through checklist above, section by section
  3. Verify consistency - Search again to confirm no misses: Grep pattern="old term" glob="*.{md,py,tsx,json,ts}"
  4. Build website - Verify site compiles after changes: cd docs/site && npm run build

Common Updates

Change TypeKey Locations
Command rename/addpilot/commands/*.md, README.md, WorkflowSteps.tsx, WhatsInside.tsx, counts table
Skill renamepilot/skills/*/SKILL.md, README.md, WhatsInside.tsx, DeepDiveSection.tsx
Rule add/removepilot/rules/*.md, README.md, all count locations (see table above)
Hook changepilot/hooks/hooks.json, pilot/hooks/*.py, DeepDiveSection.tsx, README.md
Feature descriptionlauncher/banner.py, README.md, site components, Index.tsx structured data
Workflow changepilot/commands/*.md, pilot/rules/*.md, README.md, WorkflowSteps.tsx
Package renamepyproject.toml, install.sh, launcher/init.py, README.md
Installer messageinstaller/*.py, installer/steps/*.py
Terminology changeSearch all locations in checklist above — grep for old term, replace everywhere

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenCode

31.4%
按下载量换算60

Claude Code

25.4%
按下载量换算48

windsurf

15.97%
按下载量换算30

Antigravity

12.32%
按下载量换算23

Cursor

7.63%
按下载量换算14

Gemini CLI

3.29%
按下载量换算6

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/maxritter/claude-codepro --skill update-refs;npx skills add maxritter/claude-codepro --skill "update-refs" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills