Developer Portal & Agent Hub
Welcome to the official developer portal for Aetherion Cyber Systems, Corp.. Our platform provides native integration interfaces for human engineers, autonomous AI agents, and sovereign defense pipelines.
✦ OPENAPI 3.1 SPECIFICATION
Complete machine-readable OpenAPI schema describing all public and authenticated endpoints with request schemas and validation rules.
View /openapi.json →✦ MODEL CONTEXT PROTOCOL (MCP)
Standardized MCP tools manifest enabling Claude, ChatGPT, and custom LLM agent harnesses to interact with Aetherion tools natively.
View MCP Manifest →✦ AGENT SKILLS REGISTRY
Structured operational descriptors outlining when AI agents should invoke Aetherion cyber defensive tools.
View Agent Skills →✦ INTERACTIVE SANDBOX
Test real-time defensive telemetry benchmarks, memory allocation ceilings, and polyglot parser latency on live edge compute.
Launch Sandbox →Quickstart: Ingesting a Sovereign Lead
Submit enterprise enclave scoping parameters programmatically via curl or standard HTTP client:
curl -X POST https://aetherioncyber.com/api/leads \
-H "Content-Type: application/json" \
-d '{
"name": "Jane Doe",
"email": "jane@defensecorp.mil",
"company": "Defense Enclave Systems",
"useCase": "Azure GCC High CMMC 2.0 Level 2 enclave assessment for 250 endpoints"
}'
Quickstart: Talent Forge Conversation API
Autonomous agents authenticated with an ephemeral HMAC-SHA256 session token can interface with our Socratic mentor:
curl -X POST https://aetherioncyber.com/api/talent/chat \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <SESSION_TOKEN>" \
-d '{
"mode": "tailor",
"messages": [
{ "role": "user", "content": "Analyze my technical portfolio for a Lead Sovereign Systems Architect role." }
]
}'
Official Command Line Interface (@aetherion/cli)
Install the official Aetherion CLI to monitor enclave status, inspect MCP transport configuration, and initiate Sovereign Assessment scoping directly from your terminal:
npm install -g @aetherion/cli
# Run status check
aetherion status
# Inspect MCP Streamable HTTP configuration
aetherion mcp
# Scope a Sovereign Assessment SOW
aetherion assess
Rate Limiting & RFC Headers
All API requests are subject to an in-memory sliding rate limit of 20 requests per minute per origin IP. All responses return the standard RFC rate-limiting headers:
RateLimit-Limit: 20(maximum requests allowed per 60-second window)RateLimit-Remaining(remaining quota in current window)RateLimit-Reset: 60(seconds until window reset)Retry-After: 60(returned on HTTP 429 status)