com um clique
com um clique
Athena 主入口。从需求到交付的完整工程化开发流程。
把 v9.5.5 项目的 .ai_state/ 升级到 v9.6 schema (INDEX + details/ 重构)。
Athena 全局偏好便利层。直接操作 CC 原生 ~/.claude/settings.json 的 permissions.allow/deny 和全局 CLAUDE.md。
单独运行质量审查, 不走完整开发流程。
Athena 全局安装。检查 CC 版本、装插件、配置 Codex、部署 hooks、推 claude-mem。首次使用运行一次。
Athena 状态面板。显示当前 PACE 状态、Hook 触发计数、claude-mem 状态、plugin 健康。
| name | athena-init |
| description | 项目初始化。每个新项目首次使用 Athena 时运行。扫描项目、生成环境脚本、创建 .ai_state/ schema。 |
| effort | xhigh |
| disable-model-invocation | true |
参考: https://code.claude.com/docs/en/skills
无 CLAUDE.md → 运行 /init, 生成后追加: "本项目使用 VibeCoding Athena, 开发用 /athena-dev"
已有 CLAUDE.md → 跳过。
ls package.json pyproject.toml Cargo.toml go.mod build.gradle pom.xml 2>/dev/null
cat package.json 2>/dev/null | grep -A5 '"scripts"'
ls jest.config* vitest.config* pytest.ini .eslintrc* ruff.toml biome.json 2>/dev/null
mkdir -p .ai_state/details/reviews
mkdir -p .ai_state/details/tasks-archive
从 ~/.claude/skills/pace/templates/ 复制 (必须全部, 缺一不可):
_index.md → .ai_state/_index.md (单一入口, 铁律 8)details/tasks-current.mddetails/progress.mddetails/design.mddetails/handoff.mddetails/lessons.mddetails/review-report.md → .ai_state/details/reviews/template.mddetails/next.mddetails/proposals.mdinit.sh → .ai_state/init.sh把扫描结果写入:
tech_stack (检测到的: node/python/rust/go)test_cmd (从 package.json scripts.test 或 pytest 等)build_cmdlint_cmddev_cmd填充 platform_features (用 claude --version 和 codex --version 2>&1):
cc_versioncx_versiongoal_supported: 解析 cc_version, ≥ "2.1.139" 即 truebatch_supported: ≥ "2.1.121"background_supported: ≥ "2.1.139"session_memory_active: 检测 ~/.claude/projects/ 是否含 session-memory 子目录cross_session_memory: 检测 ~/.claude/plugins/ 含 claude-mem 则 "claude-mem", 含 superpowers 则 "superpowers", 否则 "none"根据扫描结果定制 .ai_state/init.sh:
chmod +x .ai_state/init.shgrep -q '.ai_state' .gitignore 2>/dev/null || echo '.ai_state/' >> .gitignore
# 检测 claude-mem 或 superpowers, 缺则软提示
if ! ls ~/.claude/plugins/ 2>/dev/null | grep -iE 'claude-mem|superpowers' > /dev/null; then
echo "💡 推荐装 claude-mem (89k stars) 做跨项目记忆"
echo " /plugin install claude-mem (待加入官方 marketplace)"
echo " 或: /athena-setup 走完整推荐流"
fi
git add .ai_state/ .gitignore
git commit -m "athena: project initialized (v9.6 schema)"
运行 bash .ai_state/init.sh 确认脚本正常。
告知用户: "Athena 已就绪。用 /athena-dev <需求> 开始开发, 或 /athena-status 看面板。"
已有 .ai_state/ 但 schema_version != "9.6" → 提示运行 /athena-migrate 升级。
已有 .ai_state/ 且 schema_version == "9.6" → 提示用户是否重新初始化 (会重置 _index.md)。