DevOps plugin (5 skills): - install-core-agent, repair-core-agent, merge-workspace, update-deps, clean-workspaces CLI commands: version, check, extract for diagnostics. Codex dispatch: --skip-git-repo-check, removed broken --model-reasoning-effort, --sandbox workspace-write via --full-auto. Workspace template extracts to wsDir not srcDir. AX sweep (Codex-generated): sanitise.go extracted from prep/plan, mirror.go JSON parsing via encoding/json, setup/config.go URL parsing via net/url, strings/fmt imports eliminated from setup. CODEX.md template updated with Env/Path patterns. Review workspace template with audit-only PROMPT.md. Marketplace updated with devops plugin. Co-Authored-By: Virgil <virgil@lethean.io>
1.2 KiB
1.2 KiB
| name | description | argument-hint | allowed-tools | |
|---|---|---|---|---|
| install-core-agent | This skill should be used when the user asks to "install core-agent", "rebuild core-agent", "update the agent binary", or needs to compile and install the core-agent MCP server binary. Runs the correct go install from the right directory with the right path. | (no arguments needed) |
|
Install core-agent
Build and install the core-agent binary from source.
Steps
- Run 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
- Tell the user to restart core-agent (it runs as an MCP server — the process needs restarting to pick up the new binary).
Important
- The entry point is
./cmd/core-agent/main.go— NOT./cmd/or. 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 to the user — do not attempt alternatives