_Sidebar
anti edited this page 2026-05-10 04:27:14 -04:00
Clone

Wiki Page Revisions

13 Commits

Author SHA1 Message Date
58915d8115 docs: add BEHAVE-SHELL reference page — all 37 primitives, attribution state machine, calibration data 2026-05-10 04:27:14 -04:00
d45fb08b6d docs: add Fingerprinting page covering sniffer, prober, and Caddy fp module 2026-05-10 04:10:47 -04:00
1855cfe7ae docs: add Resource-Footprint page with real numbers from first VPS deploy
Document the disk/RAM/CPU footprint of a live deployment so anyone
sizing a VPS for DECNET can see what to expect. Numbers are from the
first Contabo deploy: 4.5 GiB disk, 2.1 GiB RAM, 0.03 load average,
12 containers, 12 workers, ~80 attackers in the first hour.

Adds a "what scales with topology size" breakdown so operators can
project from these numbers to their own target deployment, and a
sizing-floor recommendation per deployment shape (UNIHOST small,
UNIHOST medium, SWARM master, SWARM agent).

Linked from the User docs section of the sidebar between
Tailscale-Global-Deployment and MazeNET.
2026-04-27 23:06:21 -04:00
2a0295891c realism migration: wiki sync
Document the realism content engine, the orchestrator service collapse,
and every public surface change from the migration on dev.

Page-level changes:

- Realism.md (new) — operator walkthrough of the realism library:
  ContentClass taxonomy, persona pools (topology vs global), diurnal
  gating, edit-in-place, LLM enrichment with circuit breaker, and 3%
  canary cultivation. Configuration table and CLI surface.
- Module-Reference-Core.md — new "decnet/realism/" section covering
  taxonomy / planner / naming / bodies / personas / LLM backend /
  prompts. Notes the env-var rename.
- Module-Reference-Workers.md — new "Orchestrator" section covering
  the unified worker, action-kind weights, drivers (ActivityDriver
  ABC, plant_file/read_file contract, _run_edit), and the email
  delivery surface that stayed put (events / threads / scheduler).
- Service-Bus.md — fix orchestrator topic table: emailgen producer
  attribution is gone (orchestrator owns email now), system.emailgen.*
  topics removed.
- CLI-Reference.md — new "decnet orchestrate" and "decnet realism
  import-personas" sections plus DECNET_REALISM_* / DECNET_CANARY_*
  rows in the env summary.
- Environment-Variables.md — new "Realism content engine" and
  "Canary worker" sections; starter .env.local entries appended.
- Systemd-Setup.md — bundled decnet-orchestrator.service template
  with the realism env block; explicit note that decnet-emailgen
  is gone post-migration.
- Design-Overview.md — Orchestrator + Canary rows added to the
  microservice table; Realism cross-link in the Related Pages list.
- Roadmap-and-Known-Debt.md — moved orchestrator-fake-files and
  emailgen-twin-worker entries to "Recently closed" with a pointer
  to the migration history.
- Home.md, _Sidebar.md — Realism added to the user-docs nav.
2026-04-27 17:23:41 -04:00
d5b3efe30e docs(wiki): Identity-Resolution page + identity.* topics in Service-Bus
Documents the observation/identity/campaign three-level hierarchy, the
read-only API surface, the deferred clusterer worker, and how to test
the substrate. Companion to development/IDENTITY_RESOLUTION.md in the
main repo.

Service-Bus.md gains the three identity.* topic rows (reserved for the
future clusterer); sidebar links Identity-Resolution under Developer
docs alongside Campaign-Clustering.
2026-04-26 07:15:55 -04:00
ba1862f380 docs(wiki): Campaign-Clustering page + sidebar link
Documents the pre-implementation test infrastructure: UKC vocabulary,
synthetic campaign factory + DSL, metric harness, fixture layout, and
how to run the suite. Algorithm itself isn't built yet — the simulator
ships first per the design doc.
2026-04-26 06:34:45 -04:00
a574fde3a2 docs(wiki): add Tailscale global deployment guide
Playbook for taking DECNET into the wild on geographically dispersed
VPSes with management bound to tailscale0 and decoys on the public NIC.
Covers bind cheat sheet, ACL recipe, firewall belt-and-suspenders,
SWARM + UNIHOST walkthroughs, live-QA hardening checklist, and
troubleshooting.
2026-04-26 01:58:22 -04:00
3fde4a8c74 docs(wiki): add UI-Things page with button/chip/layout proportions 2026-04-22 19:57:11 -04:00
158c43ec10 Add Service Bus page
Documents the host-local UNIX-socket pub/sub transport: architecture,
topic hierarchy, env vars, code examples (publish/subscribe +
get_app_bus for the API), at-most-once delivery semantics, the
live-topology-mutation worked example, testing helpers, and
troubleshooting. Linked from the user-docs section of the sidebar
between Systemd setup and Logging.
2026-04-21 14:41:18 -04:00
189a4cd383 docs(mazenet): add MazeNET wiki page + sidebar entry 2026-04-20 17:01:18 -04:00
e473159ea1 docs: document swarm/agent/updater APIs and add PKI-and-mTLS reference
- Module-Reference-Workers: new sections for decnet/swarm/, decnet/agent/,
  and decnet/updater/ covering exported symbols, FastAPI routes, uvicorn
  launcher flags, and the executor seams the test suite monkeypatches.
- PKI-and-mTLS: standalone developer page covering CA generation, leaf
  issuance, SSLContext wiring (client + server), the VERIFY_X509_STRICT
  workaround for Python 3.13, the RFC 5425 log pipeline's reuse of the
  same CA, and the currently-unenforced CN/role-separation gap.
- Sidebar: link the new PKI page from the Developer docs section.
2026-04-19 00:21:15 -04:00
2c75d6593f docs(swarm): add SWARM Mode page and cross-link from Deployment Modes
Comprehensive walkthrough for the newly-landed SWARM control plane:
- Architecture diagram (master: swarmctl/listener/ingester/api; worker:
  agent/forwarder) with ports cheat sheet
- Step-by-step setup (CA bootstrap, enrollment, bundle shipment, agent +
  forwarder startup, check, first swarm deploy)
- Full command reference for swarmctl, listener, agent, forwarder, and
  the swarm enroll/list/check/decommission subcommands
- Log-pipeline end-to-end story (RFC 5424 on worker → RFC 5425 mTLS on
  6514 → master.json → ingester → dashboard), including tcpdump-based
  plaintext-leak check and source_worker provenance note
- Operational concerns: master crash resume (no dup/loss), worker crash,
  CA rotation, cert rotation, teardown
- Security posture summary
- Known limitations (get_host_ip master-side bug, no web UI yet,
  round-robin only, single master)
- Troubleshooting matrix

Deployment-Modes: trimmed the old 'swarm is not implemented, drive it
from Ansible' section and replaced with a link to the new page.

_Sidebar: added SWARM-Mode under User docs.
2026-04-18 20:20:42 -04:00
anti
c80940e531 wiki: skeleton (home, sidebar, footer) 2026-04-18 06:03:00 -04:00