← ClaudeAtlas

update-hephaestuslisted

Update hephaestus to the latest version. Use for /update-hephaestus requests.
amurshak/hephaestus · ★ 1 · AI & Automation · score 65
Install: claude install-skill amurshak/hephaestus
<!-- requires: none --> <!-- chains: none --> <!-- generated from .ai/workflows/update-hephaestus.md; do not edit directly --> > **Codex:** this skill is the `/update-hephaestus` adapter. Use Codex role agents from `.codex/agents/` when the runtime exposes them; otherwise perform the work directly and keep the same structured output. Update hephaestus to the latest version. ## Steps 1. Detect the install: - `.heph-manifest` in the project root → **vendored** (its `# version:` line is the current version) - otherwise resolve the clone: `dirname $(dirname $(dirname $(readlink ~/.claude/commands/ship.md)))`, falling back to `$HEPHAESTUS_HOME` or `~/.hephaestus` → **user-level** - neither → **plugin** install: run `/plugin marketplace update hephaestus` and stop here. 2. Run the updater — it pulls, re-installs, and prints the version transition plus the commits in between: - user-level: `bash <clone>/update.sh` - vendored: `bash <clone>/update.sh --vendor .` 3. Report the version transition and what changed. 4. Vendored installs only — commit the refreshed copy: ``` git add .heph-manifest .claude .opencode .agents .codex && git commit -m "chore: update hephaestus to <new_version>" ```