9f6d0d2281
- Bump root AGENTS.md header: 2026-05-14 → 2026-05-15, commit5ffbe0e24→53a740636, release v4.1.1 → v4.1.2 - Update file counts: 2034 (1337+697) → 2041 (1340+701), LOC ~292k → ~294k - Fix STRUCTURE: openclaw lives at src/openclaw/ (not src/features/); list more accurate feature modules in the parenthetical - Clarify interactive_bash gate: tmux binary on PATH via isInteractiveBashEnabled() (not 'tmux enabled') - Fix docs/reference/features.md hook counts: Tool Guard 14→16, Total base 52→54, total with team-mode 59→61 - Bump 'Generated' date on all 43 subdir AGENTS.md files to 2026-05-15 - Preserve promptAsync injection cautions verbatim (per request)
1.5 KiB
1.5 KiB
name, description
| name | description |
|---|---|
| hephaestus-agent | Developer reference for the Hephaestus autonomous deep worker agent — model variants, key behaviors, and delegation patterns. |
src/agents/hephaestus/ -- Autonomous Deep Worker
Generated: 2026-05-15
OVERVIEW
6 files. Hephaestus agent -- autonomous deep worker powered by GPT-5.5. Goal-oriented: give it objectives, not step-by-step instructions. "The Legitimate Craftsman."
FILES
| File | Purpose |
|---|---|
agent.ts |
createHephaestusAgent() factory, model-variant routing |
gpt.ts |
Base GPT prompt: discipline rules, delegation, verification |
gpt-5-5.ts |
GPT-5.5-native prompt tuned for current Hephaestus routing |
gpt-5-4.ts |
GPT-5.4-native prompt with XML-tagged blocks, entropy-reduced |
gpt-5-3-codex.ts |
GPT-5.3 Codex variant with task discipline sections |
index.ts |
Barrel exports |
KEY BEHAVIORS
- Mode:
primary(respects UI model selection) - Requires OpenAI-compatible provider (no fallback chain)
- NEVER trusts subagent self-reports -- always verifies
- NEVER uses
background_cancel(all=true) - Delegates exploration to background agents, never sequential
- Uses
run_in_background=truefor explore/librarian
MODEL VARIANTS
| Model | Prompt Source | Optimizations |
|---|---|---|
| gpt-5.5 | gpt-5-5.ts |
GPT-5.5-tuned prompt architecture |
| gpt-5.4 | gpt-5-4.ts |
XML-tagged blocks, 8 sections |
| gpt-5.3-codex | gpt-5-3-codex.ts |
Task discipline, 549 LOC prompt |
| Other GPT | gpt.ts |
Base prompt, 507 LOC |