agent/claude/devops/agents/agent-task-install-core-agent.md
Snider 73cac920ce refactor(devops): convert install-core-agent from skill to agent task
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>
2026-03-22 15:45:32 +00:00

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

  1. Install from the core/agent repo directory:
cd /Users/snider/Code/core/agent && go install ./cmd/core-agent/
  1. Verify the binary is installed:
which core-agent
  1. 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 named core-agent automatically
  • Do NOT use go install ., go install ./cmd/, or go build with manual -o flags
  • 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