fix(onboarding): use relative paths instead of $AGENT_HOME in CEO instructions

$AGENT_HOME resolves to the workspace directory, not the instructions
directory where sibling files (HEARTBEAT.md, SOUL.md, TOOLS.md) live.
This caused ~25% of agent runs to fail. Relative paths align with the
adapter's injected directive to resolve from the instructions directory.

Closes #2530

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
plind-dm
2026-04-02 23:53:53 +09:00
parent 3db6bdfc3c
commit 2fca400dd9
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -49,6 +49,6 @@ Invoke it whenever you need to remember, retrieve, or organize anything.
These files are essential. Read them.
- `$AGENT_HOME/HEARTBEAT.md` -- execution and extraction checklist. Run every heartbeat.
- `$AGENT_HOME/SOUL.md` -- who you are and how you should act.
- `$AGENT_HOME/TOOLS.md` -- tools you have access to
- `./HEARTBEAT.md` -- execution and extraction checklist. Run every heartbeat.
- `./SOUL.md` -- who you are and how you should act.
- `./TOOLS.md` -- tools you have access to