13 lines
559 B
Go
13 lines
559 B
Go
// Package agent loads agent profiles (Copilot, Claude Code, ...) from
|
|
// ~/.config/sherlock/agents.d/ plus built-in defaults, renders the
|
|
// per-session MCP config, and exec's the underlying agent CLI with the
|
|
// correct argv and environment.
|
|
//
|
|
// The package is the single integration point between sherlock and any
|
|
// supported agent CLI; adding a new agent must be a config-only change
|
|
// (a new TOML file under agents.d/), never a code change here.
|
|
//
|
|
// Implementation lands in Phase 1. See docs/agent-profiles.md for the
|
|
// TOML schema.
|
|
package agent
|