Developer Knowledgebase

Documentation & API Reference

Quickstart guides, SDK bindings, and interactive documentation reader for CyberSovereign Command Deck.

1. Quickstart Guide

Initialize your local sovereign agent daemon in under 60 seconds:

# 1. Install CLI npm install -g @zoth/site-synthesizer # 2. Initialize local loopback cluster zoth init --name "CyberSovereign Command Deck" --theme "retro-terminal" # 3. Start local daemon zoth start --port 8088

2. Hardware Vault Authentication

Requests are authenticated via ephemeral Argon2id tokens:

Authorization: Bearer zoth_vault_live_key_9942a Content-Type: application/json

3. Swarm Dispatch API (POST /v1/swarm)

Sample request in cURL, Python, and TypeScript:

curl -X POST http://127.0.0.1:8088/v1/swarm/dispatch \ -H "Authorization: Bearer zoth_vault_live_key_9942a" \ -H "Content-Type: application/json" \ -d '{ "task": "Synthesize 6-page site bundle", "entropyFilter": 0.9998, "airgapped": true }'

4. Web Audio SFX Synthesizer Hooks

Attach procedural audio chimes to state transitions in your client applications:

// Synthesize high-frequency confirmation chime playAudioTone(880, 'triangle', 0.18); // Low-frequency warning pulse playAudioTone(220, 'sawtooth', 0.25);