Workers documentation

June 12, 2026 · View on GitHub

This folder collects procedures (SOPs) and shared architecture for workers in this monorepo. Per-worker deep docs stay inside each worker folder (e.g. session-manager/architecture/).

I want to…

GoalRead
Add a new worker to the reposops/new-worker.md
Scaffold a Rust deploy: binary workersops/binary-worker.md
Ship a version to the registrysops/release.md
Fix a failed releasesops/release.md § Troubleshooting
Write a consumer README.mdworker-readme.md
Author skills/SKILL.mdDOCUMENTATION_GUIDELINES.md
Understand iii.worker.yaml fieldsarchitecture/iii-worker-yaml.md
Understand CI gates on a PRarchitecture/testing-and-ci.md
Integrate with session-managersession-manager/architecture/integration.md

Layout

docs/
├── README.md                 # this file
├── sops/                     # step-by-step procedures
│   ├── new-worker.md         # cross-cutting onboarding
│   ├── binary-worker.md      # Rust binary scaffold
│   └── release.md            # cut, monitor, verify releases
└── architecture/             # shared reference (not step-by-step)
    ├── worker-model.md
    ├── iii-worker-yaml.md
    ├── deploy-modes.md
    ├── testing-and-ci.md
    ├── skills-and-permissions.md
    └── per-worker-architecture.md