Skip to content

IMPORTANT

AI Context & Knowledge Heritage

  • Subsystem: Architecture & Documentation / Core Docs / TROUBLESHOOTING
  • Architecture: @docs ARCHITECTURE:Documentation
  • Failure Path: Information drift, legacy terminology, or documentation mismatch.
  • Observability: Traceability via execution/parity_guard.py

๐Ÿงฉ Troubleshooting & Diagnostics โ€‹

Intelligence Level: Operational (Level 4) Status: Verified Production-Ready Version: 1.1.462 Last Hardened: 2026-08-19 Classification: Sovereign


IMPORTANT

๐Ÿ” Phase 0: AI-Indexable Asset Check (IDENTITY.md Directive #6 โ€” Always First) โ€‹

Before inspecting any log, UI panel, or source file, check the AI-indexable assets in order:

  1. docs/ERROR_REGISTRY.json โ€” search by symptom keyword or error code. It maps error codes to source files and remediation paths.
  2. docs/SECURITY_REGISTRY.json โ€” search by security policy (SEC-01 to SEC-08) or threat vector (ASI01โ€“ASI10, AML.TXXXX) to identify enforcing files and validation commands.
  3. docs/TELEMETRY_MAP.json โ€” trace by tag (e.g., [VaultStore], [AgentService]) to find the log emitter location.
  4. For Sovereign events (BUDGET_BREACH, STASIS_ACTIVE, LOGIC_BLOCKER, COMPLIANCE_DRIFT): consult ERROR_REGISTRY.json and SECURITY_REGISTRY.json โ€” all codes are registered with directive references and remediation paths.

Only proceed to the sections below if these assets yield no result.


๐Ÿ—๏ธ System Connectivity โ€‹

๐Ÿ”ด Dashboard shows "OFFLINE" โ€‹

Symptoms: The PageHeader status indicator is red, and "Connection Lost" toasts appear.

  1. Check Engine Status: Ensure the Rust backend is running (npm run engine or cargo run --release).
  2. Verify Endpoint: Go to System Config and ensure TadpoleOSUrl matches the server address (typically http://localhost:8000).
  3. CORS Mismatch: If accessing from a remote IP (e.g., Tailscale), ensure the server is started with the correct host binding (0.0.0.0).

๐Ÿ”‘ WebSocket Connection Refused โ€‹

Symptoms: "WebSocket Error: 401 Unauthorized" in browser console.

  1. Token Handshake: The NEURAL_TOKEN in your .env MUST match the Neural Engine Access Token in your dashboard settings.
  2. Redaction Intercept: If the token contains special characters that trigger the secret_redactor.rs regex, it might be stripped. Use a standard hex string (32+ chars).

๐Ÿง  Intelligence & LLMs โ€‹

๐ŸŒ‘ Agent Returns No Response (Silent Failure) โ€‹

Symptoms: Mission log shows "Thinking..." indefinitely or transitions directly to "Idle" without output.

  1. Registry Audit: Go to AI Provider Manager โ†’ scroll to Model Registry. Ensure the model assigned to the agent actually exists in the registry.
  2. Vault Lock: If the Neural Vault is locked, the engine cannot access decrypted API keys. Unlock the vault to resume operations.
  3. Quota Exhaustion: Check the RPM/TPM metrics in the System Log. If you've hit model limits, the agent will "park" until the window resets.

๐Ÿงช Malformed Tool Calls (Groq/Llama) โ€‹

Symptoms: "Error: Malformed JSON in tool call."

  1. Self-Healing Pass: The engine automatically attempts a re-synthesis pass for common Llama-3 malformations. If it still fails, decrease the agent's Temperature to 0.1 or 0.3 for higher precision.

๐Ÿ’พ Filesystem & Workspaces โ€‹

๐Ÿšซ "Access Denied" or "Sandbox Escape" โ€‹

Symptoms: Tool fails with a security error when reading/writing files.

  1. Canonicalization Error: Tadpole OS uses strict path verification (server-rs/src/adapter/filesystem.rs). Paths must be relative to the cluster root โ€” do not use ../ to attempt to exit the workspace.
  2. Windows Paths: Ensure your DATABASE_URL in .env or server-rs/.env is valid (e.g., sqlite:data/tadpole.db or sqlite:%CD%\tadpole.db).

๐Ÿ”’ Security & Vault โ€‹

๐Ÿ›ก๏ธ Forget Master Password โ€‹

Symptoms: Unable to unlock the Neural Vault.

  1. Emergency Reset: Click the Emergency Vault Reset button at the bottom of the unlock screen. This will purge all encrypted provider keys from the registry, allowing you to set a new password and re-enter your keys.

โ›“๏ธ Audit Trail Broken โ€‹

Symptoms: UI shows "Verification Failed" on audit logs.

  1. Tamper Detection: The Merkle Audit Trail (server-rs/src/security/audit.rs) detects if the SQLite database has been manually edited. Check the Security Dashboard integrity status, or query the integrity endpoint: curl -H "Authorization: Bearer <NEURAL_TOKEN>" http://localhost:8000/v1/oversight/security/integrity. You can also run unit tests via cargo test --package server-rs --lib security::audit to verify the logic.

๐Ÿ› ๏ธ Performance & Telemetry โ€‹

๐Ÿ“‰ UI Jank during Swarming โ€‹

Symptoms: Browser becomes unresponsive when 5+ agents are active.

  1. RAF Throttling: Ensure Telemetry Batching is enabled in Settings. This flushes engine pulses to the UI on requestAnimationFrame to maintain 60fps.
  2. Visualizer Detachment: If the Swarm Visualizer is too heavy, click the Detach icon to move it to a separate window, freeing up the main thread.

๐Ÿ”ด OpenTelemetry Export Error (TonicTracesClient) โ€‹

Symptoms: Log shows ERROR opentelemetry_sdk: BatchSpanProcessor.ExportError ... connection refused.

  1. Collector Offline: This occurs if the OpenTelemetry collector (e.g. Jaeger or Datadog) is not running on your host machine.
  2. To Disable: Set OTEL_STDOUT_EXPORTER=false and unset or comment out OTEL_EXPORTER_OTLP_ENDPOINT in your .env to prevent the engine from attempting to send trace spans.

Sovereign Intelligence Architecture.