用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/WenJunDuan/Rlues --skill athena-setup命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | athena-setup |
| description | 全新安装 Athena 9.9.6 或补装缺失端点。用户显式调用时触发;已装旧版改走 athena-migrate。 |
Run the bundled installer. It evaluates Claude Code (CC) and Codex (CX) independently.
The repository distribution pair is vibeCoding/claude/9.9.6/.claude and
vibeCoding/codex/9.9.6/.codex.
# From the Rlues repository root: inspect first, then install.
python3 vibeCoding/codex/9.9.6/.codex/skills/athena-setup/scripts/setup-athena.py \
--repo-root "$PWD" --dry-run
python3 vibeCoding/codex/9.9.6/.codex/skills/athena-setup/scripts/setup-athena.py \
--repo-root "$PWD"
Use --only cc or --only cx for one endpoint. Outside the repository, pass
--cc-package <path-to-.claude> / --cx-package <path-to-.codex>, or set
ATHENA_CC_PKG / ATHENA_CX_PKG.
| Endpoint state | Action |
|---|---|
fresh | Preflight every managed destination, then install selected missing endpoints transactionally |
CC-only | Install only CX; leave CC untouched |
CX-only | Install only CC; leave CX untouched |
same-version | Verify files, dynamic package counts, version, and CX skill paths; never overwrite |
old-version | Route that endpoint to /athena-migrate; another selected fresh endpoint may still install |
| Existing unversioned or invalid config | Refuse to overwrite; require an explicit merge decision |
The installer reports paths and counts only. It never prints user configuration values.
~/.claude/settings.json, CLAUDE.md, status line, rules, hooks, agents, and skills.~/.codex/config.toml, hooks.json, AGENTS.md, hooks, agents, and standards.~/.agents/skills/<name>/SKILL.md. Codex keeps $CODEX_HOME/skills
only as deprecated backward compatibility; the user-level standard is
$HOME/.agents/skills (Codex 0.144.1 loader source).Asset counts come from the selected package at runtime. Do not encode release counts in this skill.
For the fresh CX endpoint, the installer collision-checks and atomically installs the packaged
AGENTS.md; do not copy it manually against an existing endpoint.
3 is reserved for incomplete cleanup.__pycache__, *.pyc, .DS_Store, and tmp/) is excluded from the
runtime manifest.~/.codex/skills or ~/.agents/skills. Migration may remove only legacy
~/.codex/skills/<name> paths that the old Athena config explicitly registered.Run the same command again. A same-version run is read-only and exits successfully only when
all packaged assets exist, hashes match, the version marker is 9.9.6, and CX skill entries no
longer point at ~/.codex/skills.
python3 vibeCoding/codex/9.9.6/.codex/skills/athena-setup/tests/test_setup_991.py