用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/WenJunDuan/Rlues --skill vibe-setup命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | vibe-setup |
| effort | xhigh |
| disable-model-invocation | true |
| description | VibeCoding Hermes 全局安装。检查 CC 版本、装插件、配置 Codex、部署 hooks。首次使用运行一次。 |
v9.5 减重原则:
- permissions.deny 列表 = 空 (用流程约束 + design boundary 替代硬规则)
- pre-bash-guard = 3 条灾难命令 (rm 根/curl-pipe/mkfs-dd)
- 全局 lessons 系统已删除 (Hermes 不做跨项目知识管理)
- 跨项目记忆 → 推荐装 claude-mem 或 superpowers
claude --version
要求 v2.1.121 或更高(hooks updatedToolOutput 全工具支持)。低于 → claude update 或 npm install -g @anthropic-ai/claude-code@latest。
逐个安装,跳过已有的。每装一个,问自己"这个真的会用吗"——多余的插件 = context 浪费。
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
/plugin marketplace add openai/codex-plugin-cc
/plugin install codex@openai-codex
# claude-mem: 用 SQLite + 向量做跨 session 记忆
# https://github.com/AnyResearch/claude-mem
/plugin install claude-mem@<对应 marketplace>
未装 claude-mem → vibe-setup 会软提示一次。继续不装也行,Hermes 仍可用。
| 路径 | 推荐插件 |
|---|---|
| Bugfix | debugger / bug-fix / metronome |
| Feature 实现 | superpowers / dev-workflows / context7 |
| Feature 审查 | codex-plugin-cc / agent-peer-review / local-review |
| Refactor | TypeScript LSP / Rust LSP / ast-grep |
| Refactor 审查 | codex-plugin-cc / AgentLint |
| System | shipyard (IaC) / mcp-builder |
| 跨节点优化 | context-mode (大输出 sandbox 化, 节省 98%) / skill-bus |
/plugin install feature-dev
/plugin install code-review
/plugin install commit-commands
/plugin install security-guidance
/plugin install frontend-design
/reload-plugins 后生效。
npx ctx7 setup --claude
无需全局安装 ctx7 CLI,npx 按需拉取。OAuth 登录后自动在 ~/.claude/skills/ 生成 context7 skill。
触发方式: "use context7" 或 "use context7 with /owner/repo for "。
/codex:setup
未登录 → !codex login
不要启用 review gate(/codex:setup --enable-review-gate)—— 会造成 Claude ↔ Codex 死循环。
settings.json codex 权限:
"Bash(codex:*)",
"Bash(node:*)"
首次 /codex:status 弹 prompt 时选 "Yes, and don't ask again",CC 会写到 .claude/settings.local.json。
Codex 独立配置 ~/.codex/config.toml:
model = "gpt-5.4-mini"
model_reasoning_effort = "high"
mkdir -p ~/.claude/hooks
cp .claude/hooks/*.cjs ~/.claude/hooks/
chmod +x ~/.claude/hooks/*.cjs
v9.5 hook 列表(9 个,比 v9.4.5 净 -2):
output-evidence-augmentor 默认禁用。启用方式:
# 编辑 ~/.claude/settings.json,把对应 hook 段的 disabled 字段改为 false
启用后:审查阶段 Edit/Write 后没找到 review-report.md → 工具输出尾部追加 "⚠ 未发现 review-report.md"。
claude --version # ≥ 2.1.121
/plugin list # superpowers / codex 已装
npx ctx7 library express # context7 CLI 通
/codex:setup # Codex ready
ls ~/.claude/hooks/*.cjs | wc -l # 应 ≥ 7
通过 → "安装完成。每个新项目 /vibe-init,然后 /vibe-dev。"
| v9.4.5 有 | v9.5 删除原因 |
|---|---|
| 18 条 permissions.deny | agent 频繁撞墙,正常 Read 都被拦。改用流程+边界约束 |
| 9 条 pre-bash-guard | 同上,重复管控。改 3 条灾难级 |
~/.claude/lessons/ 系统 | 知识管理不是 Hermes 职责,删除。需要装 claude-mem |
| lesson-drafter / archiver / curator | 同上 |
| 反 LLM 偏见段(6 条禁止) | 反复"禁止 X" 是 anti-pattern。改铁律 6 正向证据要求 |
| 铁律 8/9(流程描述) | 不是约束是 SOP,移到 pace/SKILL.md 失败处理协议 |