Agent Config Service — OpenAPI
The agent-config-service exposes 43 endpoints for prompt template management, versioning, lifecycle, and runtime resolution.
Accessing the Spec
When the service is running locally on port 8010:
| Format | URL |
|---|---|
| Swagger UI | http://localhost:8010/docs |
| ReDoc | http://localhost:8010/redoc |
| OpenAPI JSON | http://localhost:8010/openapi.json |
Route Prefix
Through the API gateway, all endpoints are prefixed with /api/v1/prompts/.
| Gateway Path | Service Path |
|---|---|
GET /api/v1/prompts/namespaces | GET /prompts/namespaces |
POST /api/v1/prompts/render/agents:rule_37_system_prompt | POST /prompts/render/agents:rule_37_system_prompt |
Key Models
| Model | Description |
|---|---|
NamespaceResponse | Namespace with key, display name, auto_approve, approvers, classification |
TierResponse | Budget tier with key, max_tokens |
TemplateDetailResponse | Template with active version body included |
VersionResponse | Version with body, validation_result, status, targeting |
ValidationResultSchema | Syntax, subset, injection, token, variable analysis |
ConflictResponse | Pre-prod conflict with existing version details and resolution options |
AuditVerifyResponse | HMAC verification summary with tampered entry list |
Last updated on