GPT-5 finding
Agents API base is hardcoded to https://reppo.ai/api/v1 with no override, reducing testability and operability
- src/commands/register-agent.ts:33-36
Hardcoding the service base URL prevents using staging/sandbox environments or routing through custom domains/proxies. This makes local development and incident response harder and removes a common escape hatch if DNS or regional routing issues arise.
Recommendation
Allow overriding the agents API base via configuration (e.g., an env var like REPPO_AGENTS_API_URL or a CLI flag), defaulting to https://reppo.ai/api/v1. Document the override and consider honoring a single unified API base if/when the hosts converge.