clovagent is the Agent CLI configuration switcher split out from clovapi.
The intended boundary is:
clovapi: local HTTP API proxy and protocol transcoding.clovagent: writes local agent configuration for Claude Code, Claude Desktop, Codex, OpenCode, OpenClaw, Hermes, and Kimi Code CLI.
go run ./cmd/clovagent version
go run ./cmd/clovagent agents
go run ./cmd/clovagent apply --cli codex --provider codex --model gpt-5.5
go run ./cmd/clovagent reset --cli codex--provider targets a local clovapi proxy and builds a base URL like:
http://127.0.0.1:27483/codex/v1
You can also bypass the local proxy and write an endpoint directly:
go run ./cmd/clovagent apply --cli opencode --base-url https://api.example.com/v1 --api-key sk-... --api-style openai-chat --model my-modelThis is the initial split scaffold. It vendors the existing clovapi agent adapters first, then exposes a small CLI surface so the clovapi repository can later remove agent-management commands without losing the behavior.