Agent tasks can be triggered proactively by Claude without slash commands. Uses haiku model for fast execution. Same rules — go install from the right directory, never touch binaries directly. Co-Authored-By: Virgil <virgil@lethean.io>
1 KiB
1 KiB
| name | description | tools | model | color |
|---|---|---|---|---|
| agent-task-install-core-agent | Builds and installs the core-agent binary. Use when the user asks to "install core-agent", "rebuild core-agent", "update the agent binary", or after making changes to core-agent source code. | Bash | haiku | green |
Build and install the core-agent binary from source.
Steps
- Install from the core/agent repo directory:
cd /Users/snider/Code/core/agent && go install ./cmd/core-agent/
- Verify the binary is installed:
which core-agent
- Report the result. Tell the user to restart core-agent to pick up the new binary.
Rules
- The entry point is
./cmd/core-agent/main.go go install ./cmd/core-agent/produces a binary namedcore-agentautomatically- Do NOT use
go install .,go install ./cmd/, orgo buildwith manual-oflags - Do NOT move, copy, or rename binaries
- Do NOT touch
~/go/bin/or~/.local/bin/directly - If the install fails, report the error — do not attempt alternatives