Push Snapshot
Push Logs
Validate Deployment (CI/CD)
SAFE (score ≥ 70), WARN (score 50-69), BLOCK (score < 50).Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Push cluster snapshots and logs
POST /ingest
X-API-Key: cg_your_key
X-Cluster-Id: my-cluster
Content-Type: application/json
Content-Encoding: gzip
{ "status": "ok" }
POST /ingest/logs
X-API-Key: cg_your_key
X-Cluster-Id: my-cluster
Content-Type: application/json
{
"namespace": "default",
"pod": "api-server-abc123",
"container": "api",
"lines": [
{ "timestamp": "2026-03-16T12:00:00Z", "message": "Request processed", "level": "INFO" }
]
}
POST /api/validate
X-API-Key: cg_your_key (scope: cicd)
Content-Type: application/json
{
"cluster_id": "production",
"resource": "deployment/api-server",
"namespace": "default",
"action": "image_update",
"image": "myapp:v2.1.0",
"user": "ci-pipeline",
"source": "github-actions"
}
{
"decision": "SAFE",
"csc_score": 87,
"risks": [],
"message": "Deployment validated successfully"
}
SAFE (score ≥ 70), WARN (score 50-69), BLOCK (score < 50).