一键导入
sync-references
Pull latest changes from origin for all git repos under a directory. Use when asked to update, sync, or pull reference projects.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Pull latest changes from origin for all git repos under a directory. Use when asked to update, sync, or pull reference projects.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up worktree-plus for a repo — manage git config (baseBranch, branchPrefix, dirBase, guessRemote) and build the .worktreeinclude / .worktreelink files by scanning which gitignored files actually exist. Use when the user asks to set up or configure worktree-plus, view or change worktree settings, reset the plugin config, or decide which gitignored files should be copied or symlinked into new worktrees.
Delegate an implementation task to Codex, then Claude reviews the result. Use when asked "codex rescue", "delegate to codex", "have codex do it", or wants Codex to implement or fix something.
Check Codex CLI, auth, Official plugin status, and configure defaults. Use when asked "codex setup", "configure codex", "install codex", or when another codex-advisor skill reports setup issues.
Diagnose Claude Code environment health — context budget, description obesity, trigger collisions, hooks, MCP, plugins, CLAUDE.md, memory, and skill-security scan. Use when asked to audit the environment, check context budget, review plugins, or scan installed skills for risky patterns.
Visualize git diffs as interactive HTML reports with architecture diagrams, change analysis, and side-by-side split-diff of the actual changed code. Use when asked to visualize, review, or summarize a diff, branch, commit, or PR — including seeing the real changed lines, not just a summary. Accepts branch names, commit hashes, HEAD, PR numbers, or commit ranges.
Convert any markdown document into a diagram-enriched visual HTML report. Use when asked to visualize, illustrate, or create a visual report from a document with diagrams. Single md file input. Also trigger when: "make this document visual", "add diagrams to this doc", "turn this markdown into a report", "visualize this README/ADR/spec", or any request to render a document with embedded diagrams.
| name | sync-references |
| disable-model-invocation | true |
| description | Pull latest changes from origin for all git repos under a directory. Use when asked to update, sync, or pull reference projects. |
| allowed-tools | Bash, AskUserQuestion |
| argument-hint | [path] |
Pull latest from origin for all git repos under a target directory.
Config: ${CLAUDE_PLUGIN_DATA}/config.json
# Read config
cat "${CLAUDE_PLUGIN_DATA}/config.json" 2>/dev/null
# Write/update config
mkdir -p "${CLAUDE_PLUGIN_DATA}"
echo '{"default_path": "<path>"}' > "${CLAUDE_PLUGIN_DATA}/config.json"
On first run, if no config exists and no $ARGUMENTS path is given, ask the user which directory to sync and save it to config.
Resolve the target path in this order:
$ARGUMENTS if provideddefault_path from config.jsonThen run:
bash "${CLAUDE_SKILL_DIR}/scripts/sync.sh" <resolved-path>
Output the result as-is. If any repos failed, briefly note what went wrong.