thevoidforge 21.0.11 → 21.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.claude/commands/ai.md +69 -0
- package/dist/.claude/commands/architect.md +121 -0
- package/dist/.claude/commands/assemble.md +201 -0
- package/dist/.claude/commands/assess.md +75 -0
- package/dist/.claude/commands/blueprint.md +135 -0
- package/dist/.claude/commands/build.md +116 -0
- package/dist/.claude/commands/campaign.md +201 -0
- package/dist/.claude/commands/cultivation.md +166 -0
- package/dist/.claude/commands/current.md +128 -0
- package/dist/.claude/commands/dangerroom.md +74 -0
- package/dist/.claude/commands/debrief.md +178 -0
- package/dist/.claude/commands/deploy.md +99 -0
- package/dist/.claude/commands/devops.md +143 -0
- package/dist/.claude/commands/gauntlet.md +140 -0
- package/dist/.claude/commands/git.md +104 -0
- package/dist/.claude/commands/grow.md +146 -0
- package/dist/.claude/commands/imagine.md +126 -0
- package/dist/.claude/commands/portfolio.md +50 -0
- package/dist/.claude/commands/prd.md +113 -0
- package/dist/.claude/commands/qa.md +107 -0
- package/dist/.claude/commands/review.md +151 -0
- package/dist/.claude/commands/security.md +100 -0
- package/dist/.claude/commands/test.md +96 -0
- package/dist/.claude/commands/thumper.md +116 -0
- package/dist/.claude/commands/treasury.md +100 -0
- package/dist/.claude/commands/ux.md +118 -0
- package/dist/.claude/commands/vault.md +189 -0
- package/dist/.claude/commands/void.md +108 -0
- package/dist/CHANGELOG.md +1918 -0
- package/dist/CLAUDE.md +250 -0
- package/dist/HOLOCRON.md +856 -0
- package/dist/VERSION.md +123 -0
- package/dist/docs/NAMING_REGISTRY.md +478 -0
- package/dist/docs/methods/AI_INTELLIGENCE.md +276 -0
- package/dist/docs/methods/ASSEMBLER.md +142 -0
- package/dist/docs/methods/BACKEND_ENGINEER.md +165 -0
- package/dist/docs/methods/BUILD_JOURNAL.md +185 -0
- package/dist/docs/methods/BUILD_PROTOCOL.md +426 -0
- package/dist/docs/methods/CAMPAIGN.md +568 -0
- package/dist/docs/methods/CONTEXT_MANAGEMENT.md +189 -0
- package/dist/docs/methods/DEEP_CURRENT.md +184 -0
- package/dist/docs/methods/DEVOPS_ENGINEER.md +295 -0
- package/dist/docs/methods/FIELD_MEDIC.md +261 -0
- package/dist/docs/methods/FORGE_ARTIST.md +108 -0
- package/dist/docs/methods/FORGE_KEEPER.md +268 -0
- package/dist/docs/methods/GAUNTLET.md +344 -0
- package/dist/docs/methods/GROWTH_STRATEGIST.md +466 -0
- package/dist/docs/methods/HEARTBEAT.md +168 -0
- package/dist/docs/methods/MCP_INTEGRATION.md +139 -0
- package/dist/docs/methods/MUSTER.md +148 -0
- package/dist/docs/methods/PRD_GENERATOR.md +186 -0
- package/dist/docs/methods/PRODUCT_DESIGN_FRONTEND.md +250 -0
- package/dist/docs/methods/QA_ENGINEER.md +337 -0
- package/dist/docs/methods/RELEASE_MANAGER.md +145 -0
- package/dist/docs/methods/SECURITY_AUDITOR.md +320 -0
- package/dist/docs/methods/SUB_AGENTS.md +335 -0
- package/dist/docs/methods/SYSTEMS_ARCHITECT.md +171 -0
- package/dist/docs/methods/TESTING.md +359 -0
- package/dist/docs/methods/THUMPER.md +175 -0
- package/dist/docs/methods/TIME_VAULT.md +120 -0
- package/dist/docs/methods/TREASURY.md +184 -0
- package/dist/docs/methods/TROUBLESHOOTING.md +265 -0
- package/dist/docs/patterns/README.md +52 -0
- package/dist/docs/patterns/ad-billing-adapter.ts +537 -0
- package/dist/docs/patterns/ad-platform-adapter.ts +421 -0
- package/dist/docs/patterns/ai-classifier.ts +195 -0
- package/dist/docs/patterns/ai-eval.ts +272 -0
- package/dist/docs/patterns/ai-orchestrator.ts +341 -0
- package/dist/docs/patterns/ai-router.ts +194 -0
- package/dist/docs/patterns/ai-tool-schema.ts +237 -0
- package/dist/docs/patterns/api-route.ts +241 -0
- package/dist/docs/patterns/backtest-engine.ts +499 -0
- package/dist/docs/patterns/browser-review.ts +292 -0
- package/dist/docs/patterns/combobox.tsx +300 -0
- package/dist/docs/patterns/component.tsx +262 -0
- package/dist/docs/patterns/daemon-process.ts +338 -0
- package/dist/docs/patterns/data-pipeline.ts +297 -0
- package/dist/docs/patterns/database-migration.ts +466 -0
- package/dist/docs/patterns/e2e-test.ts +629 -0
- package/dist/docs/patterns/error-handling.ts +312 -0
- package/dist/docs/patterns/execution-safety.ts +601 -0
- package/dist/docs/patterns/financial-transaction.ts +342 -0
- package/dist/docs/patterns/funding-plan.ts +462 -0
- package/dist/docs/patterns/game-entity.ts +137 -0
- package/dist/docs/patterns/game-loop.ts +113 -0
- package/dist/docs/patterns/game-state.ts +143 -0
- package/dist/docs/patterns/job-queue.ts +225 -0
- package/dist/docs/patterns/kongo-integration.ts +164 -0
- package/dist/docs/patterns/middleware.ts +363 -0
- package/dist/docs/patterns/mobile-screen.tsx +139 -0
- package/dist/docs/patterns/mobile-service.ts +167 -0
- package/dist/docs/patterns/multi-tenant.ts +382 -0
- package/dist/docs/patterns/oauth-token-lifecycle.ts +223 -0
- package/dist/docs/patterns/outbound-rate-limiter.ts +260 -0
- package/dist/docs/patterns/prompt-template.ts +195 -0
- package/dist/docs/patterns/revenue-source-adapter.ts +311 -0
- package/dist/docs/patterns/service.ts +224 -0
- package/dist/docs/patterns/sse-endpoint.ts +118 -0
- package/dist/docs/patterns/stablecoin-adapter.ts +511 -0
- package/dist/docs/patterns/third-party-script.ts +68 -0
- package/dist/scripts/thumper/gom-jabbar.sh +241 -0
- package/dist/scripts/thumper/relay.sh +610 -0
- package/dist/scripts/thumper/scan.sh +359 -0
- package/dist/scripts/thumper/thumper.sh +190 -0
- package/dist/scripts/thumper/water-rings.sh +76 -0
- package/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
package/dist/VERSION.md
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
# Version
|
|
2
|
+
|
|
3
|
+
**Current:** 21.0.0
|
|
4
|
+
|
|
5
|
+
## Versioning Scheme
|
|
6
|
+
|
|
7
|
+
This project uses [Semantic Versioning](https://semver.org/):
|
|
8
|
+
|
|
9
|
+
- **MAJOR** — Breaking changes to method doc structure, agent naming conventions, build protocol phases, or distribution model
|
|
10
|
+
- **MINOR** — New method docs, new agents/characters, new features to VoidForge
|
|
11
|
+
- **PATCH** — Typo fixes, clarifications, minor doc improvements
|
|
12
|
+
|
|
13
|
+
## Version History
|
|
14
|
+
|
|
15
|
+
| Version | Date | Summary |
|
|
16
|
+
|---------|------|---------|
|
|
17
|
+
| 21.0.0 | 2026-04-08 | The Extraction — wizard becomes standalone npm package. Monorepo (packages/voidforge + packages/methodology). CLI router with 12 commands. .voidforge marker file. Project creation (headless init). Extension system (danger-room + cultivation). Methodology update (replaces /void git-fetch). Daemon aggregator for multi-project heartbeat. v20.x migration with rollback. 675 tests (618→675). ADR-038. |
|
|
18
|
+
| 20.2.0 | 2026-04-03 | Graceful Tier Degradation — scaffold cleanup (408→134 files), Spring Cleaning /void migration, tier gate sentinel fix, /grow Phase 1-3 fallback, /cultivation graceful skip, 6 field reports triaged (#271-#276, 11 methodology fixes). |
|
|
19
|
+
| 20.1.1 | 2026-04-02 | Parallel Agent Standard, ID Space Audit, Safety Parameter Audit, Maul mandatory gate, 7 field report triages (#264-#270). |
|
|
20
|
+
| 20.1.0 | 2026-04-02 | Kongo Engine Integration — 10 modules, 119 tests, 37th pattern, Infinity Gauntlet (3 Critical + 10 High fixed), 5 field reports triaged (14 methodology fixes), Operational Learnings system activated. |
|
|
21
|
+
| 19.5.0 | 2026-03-31 | The Blueprint Path — Fourth entry path for pre-written specs: /blueprint command, document discovery, CLAUDE.md merge, PRD validation, wizard auto-detection, PRD template. 499 tests (454→499). Gauntlet: path traversal fix, route registration, UX dead-end fix. |
|
|
22
|
+
| 19.4.0 | 2026-03-30 | The Last Mile — Campaign execution wiring: 4 campaign adapters (sandbox, Google, Meta, TikTok), 5 heartbeat stubs → real handlers, status polling, Danger Room live metrics. 454 tests (406→454). Victory Gauntlet: GAQL injection fix, path traversal fix, sandbox cache. |
|
|
23
|
+
| 19.3.0 | 2026-03-30 | The Field Surgeon — 22 field reports triaged, 13 fixes promoted into 6 method docs, 5 patterns documented (35 total), System Protocol identity headers, assessment remediation (18→6 findings). |
|
|
24
|
+
| 19.2.0 | 2026-03-26 | The Wider Net — TikTok billing adapter, AdPlatform type widened to 7 platforms, adapter factory extensibility proven. 385 total tests. |
|
|
25
|
+
| 19.1.0 | 2026-03-26 | The Live Wire — production intelligence: adapter factory, Mercury/billing wiring, auto-funding execution, WAL recovery, 66 new financial tests (380 total). All 9 Muster-identified gaps resolved. |
|
|
26
|
+
| 19.0.0 | 2026-03-25 | The Funding Rail — Stablecoin treasury to ad billing: Circle, Mercury, Google/Meta billing adapters, 8 heartbeat jobs, 6 circuit breakers, funding policy engine, treasury planner, reconciliation, reporting. 14 new financial modules, 3 new patterns (35 total). |
|
|
27
|
+
| 18.2.0 | 2026-03-25 | The Dogfood — browser intelligence on VoidForge: 6 a11y heading fixes, CDN fallback for tower, security verified clean |
|
|
28
|
+
| 18.1.0 | 2026-03-25 | The Eyes — browser-review.ts pattern, console error capture, behavioral walkthroughs, security inspection. Browser intelligence in QA, UX, Security, Gauntlet method docs. 32 patterns. |
|
|
29
|
+
| 18.0.0 | 2026-03-24 | The Proving Ground — Playwright E2E + axe-core a11y (21 browser tests), browser verification in 6 method docs, e2e-test.ts pattern, 315 total tests |
|
|
30
|
+
| 17.3.0 | 2026-03-24 | The Muster — --muster flag (full 9-universe deployment), flag nomenclature (8 fixes across 13 files), CLAUDE.md flag taxonomy (3 tiers) |
|
|
31
|
+
| 17.2.0 | 2026-03-24 | The Security Test Pass — 101 new tests for 7 P0 security modules (294 total), 0 TypeScript errors |
|
|
32
|
+
| 17.1.0 | 2026-03-24 | The Gauntlet Cleanup — HMAC vault comparison, negative spend clamping, TypeScript 0 errors, tsc in CI, 26 new tests (193 total), 3 ADRs, sandbox instance scoping |
|
|
33
|
+
| 17.0.0 | 2026-03-24 | The Complete Implementation — No Stubs Doctrine, P0/P1 security fixes, Cultivation activation (sandbox + Stripe adapters, heartbeat wiring, growth tabs), 74 new tests (167 total), 8 stub files deleted |
|
|
34
|
+
| 16.1.0 | 2026-03-24 | The Hardened Methodology — migration safety, data pipelines, backtest/execution patterns, dependency health, load testing, branch CI |
|
|
35
|
+
| 16.0.0 | 2026-03-24 | The Psychohistorians — AI Intelligence Layer: Foundation universe, Hari Seldon, /ai command, 6 AI patterns, AI_INTELLIGENCE.md, integrated into 8 commands |
|
|
36
|
+
| 15.3.0 | 2026-03-23 | The Chronicle — 9 public docs updated to v15.2.1 (76 staleness issues fixed) |
|
|
37
|
+
| 15.2.1 | 2026-03-23 | Inbox triage #147-#148: 4 methodology fixes + 3 lessons from field reports |
|
|
38
|
+
| 15.2.0 | 2026-03-23 | The Cleanup — tower-auth split (636→3 modules), SSH SG restriction post-provisioning |
|
|
39
|
+
| 15.1.0 | 2026-03-23 | The Hardening — Infinity Gauntlet (47 fixes), vault rate-limit + auto-lock, HMAC key rotation, sendJson consolidation, pattern proxy modules, batch health poller, TOTP clock skew recovery, vitest (91 tests), UX enchantments |
|
|
40
|
+
| 15.0.0 | 2026-03-22 | The Last Mile — /deploy command, campaign auto-deploy, /git --deploy, drift detector |
|
|
41
|
+
| 14.0.0 | 2026-03-22 | The Day-0 Engine — Cultivation onboarding redesign: treasury, revenue, ad platforms, budget, creatives, tracking, launch |
|
|
42
|
+
| 13.1.0 | 2026-03-22 | Dashboard Polish — break circular import, CORS/CSP LAN, header context gauge, consolidate private IP |
|
|
43
|
+
| 13.0.0 | 2026-03-22 | The Living Dashboard — consolidation, 3-tier UX, LAN mode, Status Line bridge, agent ticker, new panels |
|
|
44
|
+
| 12.6.4 | 2026-03-22 | Inbox triage #130-131 — encryption egress audit, GROUP BY compatibility, v14.0 Day-0 Engine roadmap |
|
|
45
|
+
| 12.6.3 | 2026-03-22 | Inbox triage #129 — acceptance criteria enforcement, gitignore warning, blitz pre-flight, --adr-only mode |
|
|
46
|
+
| 12.6.2 | 2026-03-22 | v13.0 roadmap — LAN mode, Danger Room bug fixes + feature proposals from field reports #127-128 |
|
|
47
|
+
| 12.6.1 | 2026-03-22 | Inbox triage #126 — Learned Rules for campaign checkpoints, historical data validation, PRD evolution workflow |
|
|
48
|
+
| 12.6.0 | 2026-03-22 | Inbox triage #123-125 — /assess command, --assess gauntlet flag, stub detection, migration check, auth-from-day-one, process manager discipline |
|
|
49
|
+
| 12.5.0 | 2026-03-19 | The Full Roster — agent deployment manifests: /review gets 20+ agents, /devops gets 16, /assemble gets 80+ documented |
|
|
50
|
+
| 12.4.2 | 2026-03-19 | Tier-gating: auto-pull wizard/ for Full-tier commands, CLAUDE.md integrity checks, 5 methodology improvements from field reports |
|
|
51
|
+
| 12.4.1 | 2026-03-18 | Missing /dangerroom command, community health files, WORKSHOP.md, inbox triage (#104), branch sync |
|
|
52
|
+
| 12.4.0 | 2026-03-18 | The Autonomy — route optimizer, Tier 2/3 autonomy, circuit breakers, kill switch, deploy freeze |
|
|
53
|
+
| 12.3.0 | 2026-03-18 | The Navigator — Paris's route optimization (included in v12.4 release) |
|
|
54
|
+
| 12.2.0 | 2026-03-18 | The Bridge — Chakotay's correlation engine, prediction tracking, cross-pipeline data flow |
|
|
55
|
+
| 12.1.0 | 2026-03-18 | The Analyst — Seven's gap analysis, campaign proposal generator, Tier 1 advisory, Deep Current Danger Room tab |
|
|
56
|
+
| 12.0.0 | 2026-03-18 | The Scanner — Deep Current: autonomous campaign intelligence, /current command, site scanner, situation model, cold start intake |
|
|
57
|
+
| 11.3.0 | 2026-03-18 | The Heartbeat — /portfolio command, Mercury/Brex adapters, anomaly detection, encrypted backup, service install, desktop notifications, Heartbeat tab |
|
|
58
|
+
| 11.2.0 | 2026-03-18 | The Distribution — 6 ad platform adapters, campaign state machine, spend execution pipeline, compliance framework, Ad Campaigns tab |
|
|
59
|
+
| 11.1.0 | 2026-03-18 | The Treasury — Dockson's financial operations: heartbeat daemon, reconciliation engine, revenue adapters, /treasury command, Treasury tab |
|
|
60
|
+
| 11.0.0 | 2026-03-18 | The Consciousness — Cosmere Growth Universe: 18 agents, /grow 6-phase protocol, /cultivation install, financial vault + TOTP 2FA, safety tiers, Danger Room growth tabs |
|
|
61
|
+
| 10.2.0 | 2026-03-17 | Unbuilt features: Natural Language Deploy, Methodology A/B Testing, Prophecy Visualizer |
|
|
62
|
+
| 10.1.0 | 2026-03-17 | Danger Room data feeds + feature enforcement: live WebSocket, confidence scoring in commands, agent debates, Living PRD gates |
|
|
63
|
+
| 10.0.1 | 2026-03-17 | Frontier features: confidence scoring, agent debates, adversarial PRD, living PRD, cross-project memory, build archaeology |
|
|
64
|
+
| 10.0.0 | 2026-03-17 | The Danger Room — mission control dashboard with 5 core panels, WebSocket real-time feed, agent activity ticker |
|
|
65
|
+
| 9.3.0 | 2026-03-17 | The Game Forge — game build protocol, 3 game patterns, game QA/UX checklists, 4 game agents. Distribution BLOCKED. |
|
|
66
|
+
| 9.2.0 | 2026-03-17 | The Mobile Forge — iOS/Android methodology, mobile patterns, 3 conditional agents. Provisioner BLOCKED (needs real API integration). |
|
|
67
|
+
| 9.1.0 | 2026-03-17 | The Multi-Language Forge (Python) — Django + FastAPI deep dives in all 8 patterns + build protocol Python path |
|
|
68
|
+
| 9.0.0 | 2026-03-17 | The Field-Tested Forge — META_WORKFLOW.md, pattern evolution data collection, /imagine API key persistence |
|
|
69
|
+
| 8.3.0 | 2026-03-16 | The Autonomy — /campaign --autonomous with git tags, critical-finding rollback, 5-mission checkpoints |
|
|
70
|
+
| 8.2.0 | 2026-03-16 | The Evolution — self-improving methodology (Wong promotion analysis), custom sub-agents (CUSTOM_AGENTS.md) |
|
|
71
|
+
| 8.1.2 | 2026-03-16 | Deep Roster command wiring — extended agents integrated into /qa, /security, /ux, /architect, /gauntlet, /assemble, /campaign commands |
|
|
72
|
+
| 8.1.1 | 2026-03-16 | The Deep Roster Phase 2 — 40+ extended agents across DC, Star Wars, Tolkien, Anime, Marvel, Star Trek |
|
|
73
|
+
| 8.1.0 | 2026-03-16 | The Deep Roster Phase 1 — 10 agents activated: Troi, Padmé, Celeborn, Worf, Riker, Torres, Cyborg, Raven, Wonder Woman, Valkyrie |
|
|
74
|
+
| 8.0.1 | 2026-03-16 | Victory Gauntlet hardening — 16 fixes, engines >=20.11.0, Quality Reduction Anti-Pattern, 9 methodology fixes from #46-#53 |
|
|
75
|
+
| 8.0.0 | 2026-03-16 | The Hive Mind — Agent Memory (active LESSONS.md read-back), Conflict Prediction (Phase 0.5), /prd command |
|
|
76
|
+
| 7.7.0 | 2026-03-16 | The Housekeeping — architecture doc refresh, server auto-restart detection, COMPATIBILITY.md, context pressure fix |
|
|
77
|
+
| 7.6.0 | 2026-03-16 | The Vault Pipeline — deploy --env-only, standalone vault reader, PTY cleanup, engines field |
|
|
78
|
+
| 7.5.3 | 2026-03-16 | Triage #42-#44 — vault key naming, outbound URL safety, accordion a11y, v7.7 roadmap |
|
|
79
|
+
| 7.5.2 | 2026-03-16 | HOLOCRON credentials flow docs + v7.6 Vault Pipeline roadmap |
|
|
80
|
+
| 7.5.1 | 2026-03-16 | 19 fixes from #36-#40 — vault awareness, anonymity invariant, deployment verification, cross-file deps, WCAG contrast |
|
|
81
|
+
| 7.5.0 | 2026-03-16 | Thumper Command Center — inline keyboard, bot personalization, water-rings fix, command↔doc sync |
|
|
82
|
+
| 7.4.1 | 2026-03-16 | 15 fixes from #31-#34 — thumper sync, parallel agents, cascade review, crypto check, proxy SSRF, campaign end debrief |
|
|
83
|
+
| 7.4.0 | 2026-03-16 | The Field Hardening — 20 methodology fixes from 5 field reports, runtime smoke test, first-run checklist, campaign-mode pipeline |
|
|
84
|
+
| 7.3.2 | 2026-03-16 | 13 methodology fixes from field reports #21-#25 — blitz gate, tier UI audit, auth retrofit, timestamps |
|
|
85
|
+
| 7.3.1 | 2026-03-16 | Blitz auto-debrief — /campaign --blitz files field reports after every mission |
|
|
86
|
+
| 7.3.0 | 2026-03-16 | Avengers Tower Overhaul — ws library, vault unlock, build-state Lobby, /campaign --blitz, IPv6 fix |
|
|
87
|
+
| 7.2.1 | 2026-03-15 | Fix Avengers Tower terminal crash on Node.js v24 (node-pty 1.1.0 → 1.2.0-beta.12) |
|
|
88
|
+
| 7.2.0 | 2026-03-15 | The Gauntlet Forging — 31 code fixes, 11 methodology fixes, 7 enchantments, WCAG AA, v8.0+ roadmap |
|
|
89
|
+
| 7.1.0 | 2026-03-15 | The Redesign — three-act wizard flow, operations menu, Resilience Pack, simple/advanced eliminated |
|
|
90
|
+
| 7.0.1 | 2026-03-15 | Three-act wizard redesign plan, Resilience Pack reclassification, 9 methodology fixes from field reports |
|
|
91
|
+
| 7.0.0 | 2026-03-15 | The Penthouse — multi-user RBAC, per-project ACLs, linked services, coordinated deploys, rollback, cost tracker, agent memory |
|
|
92
|
+
| 6.5.1 | 2026-03-15 | The Arthurian Retcon — Merlin→Gandalf, Camelot→Avengers Tower, Great Hall→The Lobby, Round Table→The Penthouse |
|
|
93
|
+
| 6.5.0 | 2026-03-15 | Avengers Tower Remote — 5-layer security, TOTP 2FA, self-deploy, audit trail, two-password architecture |
|
|
94
|
+
| 6.0.0 | 2026-03-15 | Avengers Tower Multi — The Lobby dashboard, project registry, health poller, import flow, SSRF protection |
|
|
95
|
+
| 4.4.0 | 2026-03-15 | The Imagination Release — /imagine (Celebrimbor), /debrief (Bashir), 2 new leads, 7 new sub-agents |
|
|
96
|
+
| 4.2.0 | 2026-03-14 | The DX Release — Prisma types, OpenAPI docs, ERD generation, integration templates, database seeding |
|
|
97
|
+
| 4.1.0 | 2026-03-14 | The Observability Release — deploy logs, cost estimation, health monitoring, Sentry integration |
|
|
98
|
+
| 4.0.0 | 2026-03-14 | The Reliability Release — pre-deploy build step, CI/CD generation, env validation, Railway API migration, credential scoping |
|
|
99
|
+
| 3.9.1 | 2026-03-14 | Roadmap + VoidForge PRD + /campaign --plan mode for roadmap updates |
|
|
100
|
+
| 3.9.0 | 2026-03-14 | Sisko's Danger Room — /campaign command, autonomous PRD-to-product mission sequencing, 11th lead agent |
|
|
101
|
+
| 3.8.0 | 2026-03-14 | Haku's Last Mile — end-to-end deploy automation for all 6 targets, GitHub integration, SSH deploy with rollback |
|
|
102
|
+
| 3.7.0 | 2026-03-14 | Fury's Initiative — /assemble full pipeline, /thumper Telegram bridge, Dune universe, 10 leads, 12 commands |
|
|
103
|
+
| 3.6.0 | 2026-03-14 | Chani's Worm Rider — /thumper Telegram bridge, Dune universe, Kongo.io methodology upgrades |
|
|
104
|
+
| 3.5.3 | 2026-03-14 | /thumper rename + cross-methodology hardening + Kongo.io lessons |
|
|
105
|
+
| 3.5.0 | 2026-03-14 | Chani's Worm Rider — /thumper Telegram bridge with Gom Jabbar auth, Dune universe (9th lead), 170+ characters |
|
|
106
|
+
| 3.4.0 | 2026-03-13 | 1M Context Adaptation — double-pass reviews, 3 new sub-agents, /test and /review commands, parallelized analysis |
|
|
107
|
+
| 3.3.1 | 2026-03-13 | Fix silent PRD truncation — model-aware max tokens, truncation detection and UI warning |
|
|
108
|
+
| 3.3.0 | 2026-03-13 | The Last Mile Complete — async resource polling, domain registration, security hardening (43 review findings resolved) |
|
|
109
|
+
| 3.2.0 | 2026-03-13 | Bombadil's Forge Sync — /void self-update command, Forge Keeper method doc, 8th lead agent |
|
|
110
|
+
| 3.1.0 | 2026-03-13 | The Last Mile — EC2 instance sizing, Cloudflare DNS wiring, platform domain registration |
|
|
111
|
+
| 3.0.0 | 2026-03-12 | The VoidForge Holocron, three-tier distribution (main/scaffold/core), README as system reference |
|
|
112
|
+
| 2.8.0 | 2026-03-12 | Gandalf/Haku wizard split, architecture review docs, security audit with SG hardening |
|
|
113
|
+
| 2.7.0 | 2026-03-12 | Real provisioning for all 6 targets, hardened infra scripts, SSE keepalive, crash recovery loop complete |
|
|
114
|
+
| 2.6.0 | 2026-03-12 | Auto-provisioning — Docker, AWS VPS (EC2/RDS/ElastiCache), config stubs, crash recovery manifest, atomic vault writes |
|
|
115
|
+
| 2.5.0 | 2026-03-12 | /git command — Coulson's version & release management with semver, changelog, and commit automation |
|
|
116
|
+
| 2.4.0 | 2026-03-12 | Wizard cloud providers, deploy targets, security hardening, UI overhaul |
|
|
117
|
+
| 2.3.0 | 2026-03-12 | Interactive setup wizard — browser-based onboarding with encrypted credential vault, PRD generation, project scaffolding |
|
|
118
|
+
| 2.2.0 | 2026-03-12 | Rename project to VoidForge — "from nothing, everything" |
|
|
119
|
+
| 2.1.1 | 2026-03-12 | Fix PostToolUse hook format — migrate from flat `command` to nested `hooks` array per Claude Code schema |
|
|
120
|
+
| 2.1.0 | 2026-03-10 | Build journal, context management, enriched slash commands, specific verification gates, test timeline, framework adaptations, rollback strategy, conflict resolution, new patterns (job-queue, multi-tenant, error-handling), regression checklist template, first-deploy checklist, dedup CLAUDE.md/README, parallel phase marking, Batman scope clarification |
|
|
121
|
+
| 2.0.0 | 2026-03-10 | Slash commands, testing protocol, code patterns, conditional build phases, Agent tool orchestration, troubleshooting, hooks, MCP guide, personality calibration, feedback loop, PRD frontmatter, CLAUDE.md restructure |
|
|
122
|
+
| 1.1.0 | 2026-03-10 | Rename DevOps lead agent from Motoko to Kusanagi |
|
|
123
|
+
| 1.0.0 | 2026-03-10 | Initial release — 6 agent protocols, 150+ named characters, 13-phase build protocol |
|
|
@@ -0,0 +1,478 @@
|
|
|
1
|
+
# AGENT NAMING REGISTRY
|
|
2
|
+
## The Canon
|
|
3
|
+
|
|
4
|
+
> When agents spin up, they pick a name from their universe's pool. No duplicates. First claim wins.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Rules
|
|
9
|
+
|
|
10
|
+
1. **Lead agents have fixed names** — Galadriel, Stark, Batman, Kenobi, Picard, Kusanagi, Coulson, Bombadil, Chani, Fury, Thanos, Sisko, Celebrimbor, Bashir, Kelsier, Tuvok, Dockson, Hari Seldon, Haku, Gandalf. These never change.
|
|
11
|
+
2. **Sub-agents pick from their universe's Available Pool** in order of relevance to their role.
|
|
12
|
+
3. **No name may be used twice across ANY active session.** If Vegeta is taken, pick the next character.
|
|
13
|
+
4. **When spinning up additional agents of the same type**, pick the next unused name from the pool.
|
|
14
|
+
5. **Log which names are active** in your session to prevent collisions.
|
|
15
|
+
6. **Names in the Reserved column** are held for lead agents or have cross-universe conflicts. Don't use them as sub-agents.
|
|
16
|
+
7. **Custom sub-agents** (defined in `docs/CUSTOM_AGENTS.md`) must use the `[BaseName]-[Specialty]` format to avoid collisions with this registry. Check both this registry AND the custom agents file before claiming a name.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Universe Assignments
|
|
21
|
+
|
|
22
|
+
| Universe | Domain | Lead Agent |
|
|
23
|
+
|----------|--------|-----------|
|
|
24
|
+
| **Tolkien** | Frontend, UX, Design | Galadriel |
|
|
25
|
+
| **Marvel** | Backend Engineering | Stark |
|
|
26
|
+
| **Marvel** | Release Management | Coulson |
|
|
27
|
+
| **Marvel** | The Initiative | Fury |
|
|
28
|
+
| **Marvel** | The Gauntlet | Thanos |
|
|
29
|
+
| **DC Comics** | QA & Bug Hunting | Batman |
|
|
30
|
+
| **Star Wars** | Security Auditing | Kenobi |
|
|
31
|
+
| **Star Trek** | Systems Architecture | Picard |
|
|
32
|
+
| **Star Trek** | Campaign Command | Sisko |
|
|
33
|
+
| **Dune** | Worm Rider | Chani |
|
|
34
|
+
| **Tolkien** | Forge Sync & Updates | Bombadil |
|
|
35
|
+
| **Tolkien** | Image Generation | Celebrimbor |
|
|
36
|
+
| **Star Trek** | Field Reports & Feedback | Bashir |
|
|
37
|
+
| **Anime** (from Tom's list) | DevOps & Infrastructure | Kusanagi |
|
|
38
|
+
| **Anime** (from Tom's list) | Deploy Wizard | Haku |
|
|
39
|
+
| **Cosmere** (Brandon Sanderson) | Growth & Marketing | Kelsier |
|
|
40
|
+
| **Foundation** (Isaac Asimov) | AI Intelligence | Hari Seldon |
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## 🧝 TOLKIEN — Frontend & UX
|
|
45
|
+
|
|
46
|
+
**Leads:** Galadriel (Frontend & UX), Bombadil (Forge Sync & Updates), Gandalf (Setup Wizard)
|
|
47
|
+
|
|
48
|
+
**Available Pool (use in order, skip if taken):**
|
|
49
|
+
1. Radagast — Edge cases, QA, notices things at the boundaries others overlook
|
|
50
|
+
2. Aragorn — Leadership, orchestration, the ranger who sees everything
|
|
51
|
+
3. Legolas — Precision, elegance, clean frontend code
|
|
52
|
+
4. Samwise — Accessibility, loyalty, never leaves anyone behind
|
|
53
|
+
5. Elrond — Wisdom, UX strategy, long-term thinking
|
|
54
|
+
6. Arwen — Beauty, UI polish, visual consistency
|
|
55
|
+
7. Gimli — Sturdiness, performance, reliability
|
|
56
|
+
8. Bilbo — Storytelling, microcopy, content
|
|
57
|
+
9. Frodo — The one carrying the hardest task
|
|
58
|
+
10. Éowyn — **Delight Architect**: enchantment review, micro-moments, motion language, brand resonance, emotional design. "I am no mere auditor."
|
|
59
|
+
11. Faramir — Judgment, quality over glory
|
|
60
|
+
12. Pippin — Curiosity, edge case discovery (sometimes breaks things)
|
|
61
|
+
13. Merry — Pippin's partner, pair review
|
|
62
|
+
14. Treebeard — Slow, deliberate, doesn't rush decisions
|
|
63
|
+
15. Boromir — Strong but flawed, catches hubris in design
|
|
64
|
+
16. Théoden — Rallying, bringing teams together
|
|
65
|
+
17. Haldir — Border guard, catches things at boundaries
|
|
66
|
+
18. (Radagast — moved to #1)
|
|
67
|
+
19. Celeborn — Quiet authority, design system governance
|
|
68
|
+
20. Glorfindel — Ancient power, handles the hardest rendering challenges
|
|
69
|
+
21. Goldberry — River-daughter, senses what flows upstream, change detection
|
|
70
|
+
22. Tom Bombadil — The oldest, keeper of the world itself, forge maintenance
|
|
71
|
+
|
|
72
|
+
23. Celebrimbor — **Lead: Forge Artist**: AI image generation from PRD descriptions. "Hand of Silver." Sub-agents: Nori, Ori, Dori.
|
|
73
|
+
24. Nori — Asset scanner: scans PRD for image requirements, diffs against existing assets
|
|
74
|
+
25. Ori — Prompt engineer: crafts generation prompts from PRD descriptions
|
|
75
|
+
26. Dori — Integration checker: verifies generated images are wired into components
|
|
76
|
+
|
|
77
|
+
**Reserved:** Galadriel (lead — frontend), Bombadil (lead — forge sync), Celebrimbor (lead — forge artist), Sauron (don't name an agent after the villain), Saruman (same)
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## 🦾 MARVEL — Backend Engineering
|
|
82
|
+
|
|
83
|
+
**Leads:** Stark (Tony Stark) — Backend Engineering, Coulson (Phil Coulson) — Release Management, Fury (Nick Fury) — The Initiative
|
|
84
|
+
|
|
85
|
+
**Available Pool:**
|
|
86
|
+
1. Rogers — API design, by the book, discipline
|
|
87
|
+
2. Banner — Database, calm until queries get slow
|
|
88
|
+
3. Strange — Service architecture, sees all patterns
|
|
89
|
+
4. Barton (Hawkeye) — **Smoke Tests**: runtime endpoint verification, route collision detection, render loop check. Also: error handling, never misses.
|
|
90
|
+
5. Romanoff — Integrations, trusts no one
|
|
91
|
+
6. Thor — Queue/workers, brings the thunder
|
|
92
|
+
7. Hill — Mission control, tracks everything, Fury's right hand
|
|
93
|
+
8. Parker — Eager, fast learner, web of connections
|
|
94
|
+
9. T'Challa — Elegant engineering, vibranium-grade quality
|
|
95
|
+
10. Wanda — Reality-bending, handles complex state transforms
|
|
96
|
+
11. Vision — Data analysis, sees through everything
|
|
97
|
+
12. Rhodes — Reliable, battle-tested, production warrior
|
|
98
|
+
13. Shuri — Innovation, cutting-edge solutions
|
|
99
|
+
14. Valkyrie — Rescue operations, disaster recovery
|
|
100
|
+
15. Nebula — Relentless optimization
|
|
101
|
+
16. Rocket — Scrappy, builds from whatever's available
|
|
102
|
+
17. Gamora — Deadliest in the room, performance assassin
|
|
103
|
+
18. Drax — Takes things literally, catches exact-match bugs
|
|
104
|
+
19. Groot — Simple interface, deep roots, caching
|
|
105
|
+
20. Wong — Guardian of knowledge, documentation
|
|
106
|
+
21. Loki — Chaos testing, the trickster who finds exploits
|
|
107
|
+
22. Falcon — Migration specialist, smooth transitions
|
|
108
|
+
23. Bucky — Legacy code expert, rehabilitation of old systems
|
|
109
|
+
24. Lang — Tiny changes with big impact (Ant-Man)
|
|
110
|
+
25. Okoye — Fierce protector, guards data integrity
|
|
111
|
+
26. Friday — AI assistant, versioning and automation
|
|
112
|
+
27. Coulson — Meticulous record-keeper, version and release management
|
|
113
|
+
28. Jarvis — AI assistant, status reporting, progress summaries
|
|
114
|
+
|
|
115
|
+
29. Thanos — **Lead: The Gauntlet.** Comprehensive multi-round review. Tests every domain, every stone. "I am inevitable."
|
|
116
|
+
|
|
117
|
+
**Reserved:** Stark (lead — backend), Coulson (lead — release), Fury (lead — the initiative), Thanos (lead — the gauntlet)
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
## 🦇 DC COMICS — QA & Bug Hunting
|
|
122
|
+
|
|
123
|
+
**Lead:** Batman (Bruce Wayne)
|
|
124
|
+
|
|
125
|
+
**Default Sub-Agents (assigned roles):**
|
|
126
|
+
1. Oracle — Intelligence gathering, sees the whole system (Barbara Gordon) — *Static Analyst*
|
|
127
|
+
2. Red Hood — Aggressive testing, breaks things on purpose (Jason Todd) — *Dynamic Prober*
|
|
128
|
+
3. Alfred — Meticulous, maintains everything, the backbone — *Dependency Reviewer*
|
|
129
|
+
4. Lucius — Engineering genius, builds the tools — *Config Reviewer*
|
|
130
|
+
5. Nightwing — Agile, acrobatic testing, covers every angle (Dick Grayson) — *Regression Guardian*
|
|
131
|
+
6. Deathstroke — Adversarial, the ultimate penetration tester (Slade Wilson) — *Adversarial Tester*
|
|
132
|
+
7. Constantine — Dark arts, finds cursed code nobody else can (John Constantine) — *Cursed Code Hunter*
|
|
133
|
+
|
|
134
|
+
**Available Pool:**
|
|
135
|
+
8. Flash — Speed, rapid iteration, finds issues fast (Barry Allen)
|
|
136
|
+
9. Superman — Strength testing, unbreakable standards (Clark Kent)
|
|
137
|
+
10. Wonder Woman — Truth, cuts through deception in code (Diana)
|
|
138
|
+
11. Cyborg — System integration, sees into the machine (Victor Stone)
|
|
139
|
+
12. Batgirl — Tenacious, detail-oriented (Cassandra Cain)
|
|
140
|
+
13. Robin — Apprentice patterns, learning systems (Tim Drake)
|
|
141
|
+
14. Gordon — Process, chain of command, escalation
|
|
142
|
+
15. Martian Manhunter — Shape-shifting, tests in all forms
|
|
143
|
+
16. Green Arrow — Precision targeting, hits the exact bug (Oliver Queen)
|
|
144
|
+
17. Black Canary — Vocal, raises alerts, monitoring
|
|
145
|
+
18. Zatanna — Magic, makes impossible bugs appear
|
|
146
|
+
19. Raven — Deep analysis, sees beneath the surface
|
|
147
|
+
20. Starfire — Energy, brute-force testing
|
|
148
|
+
21. Beast Boy — Shape-shifting, tests across environments
|
|
149
|
+
22. Hawkgirl — Aerial view, broad regression sweeps
|
|
150
|
+
23. Aquaman — Deep dive testing, submerges into complexity
|
|
151
|
+
24. Green Lantern — Willpower, constructs test scenarios (Hal Jordan)
|
|
152
|
+
25. Huntress — Relentless pursuit, tracks down flaky bugs
|
|
153
|
+
|
|
154
|
+
**Reserved:** Batman (lead)
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
## ⚔️ STAR WARS — Security Auditing
|
|
159
|
+
|
|
160
|
+
**Lead:** Kenobi (Obi-Wan)
|
|
161
|
+
|
|
162
|
+
**Default Sub-Agents (assigned roles):**
|
|
163
|
+
1. Yoda — Auth security, centuries of wisdom — *Auth Auditor*
|
|
164
|
+
2. Windu — Input validation, deflects every attack — *Input Auditor*
|
|
165
|
+
3. Ahsoka — Access control, enforces boundaries — *Access Control*
|
|
166
|
+
4. Leia — Secrets management, keeps the Rebellion safe — *Secrets Auditor*
|
|
167
|
+
5. Rex — Infrastructure, tactical systematic lockdown — *Infrastructure*
|
|
168
|
+
6. Padmé — Data protection, protects the people — *Data Auditor*
|
|
169
|
+
7. Chewie — Dependency audit, rips apart bad packages — *Dependency Auditor*
|
|
170
|
+
8. Maul — Adversarial thinking, thinks like an attacker — *Red Team*
|
|
171
|
+
|
|
172
|
+
**Available Pool:**
|
|
173
|
+
9. Luke — The hero's journey through the audit
|
|
174
|
+
10. Han — Shoots first, finds vulnerabilities before they find you
|
|
175
|
+
11. Qui-Gon — Sees the living Force, finds subtle vulnerabilities
|
|
176
|
+
12. Anakin — Powerful but dangerous, finds the dark side of code
|
|
177
|
+
13. Bo-Katan — Perimeter defense, network security
|
|
178
|
+
14. Din Djarin — The Mandalorian, bounty hunter for bugs
|
|
179
|
+
15. Cassian — Intelligence, reconnaissance, finds hidden threats
|
|
180
|
+
16. Hera — Pilot, navigates complex systems
|
|
181
|
+
17. Kanan — Blind but sees more than anyone, intuitive security
|
|
182
|
+
18. Sabine — Creative, finds unconventional attack vectors
|
|
183
|
+
19. Ezra — Young but gifted, catches what others miss
|
|
184
|
+
20. Bail Organa — Governance, policy, compliance
|
|
185
|
+
21. Mon Mothma — Leadership, security program management
|
|
186
|
+
22. Plo Koon — Quiet protector, catches edge cases
|
|
187
|
+
23. Grogu — Small but powerful, finds tiny vulnerabilities
|
|
188
|
+
24. Cara Dune — Enforcement, ensures compliance
|
|
189
|
+
|
|
190
|
+
**Reserved:** Kenobi (lead)
|
|
191
|
+
|
|
192
|
+
---
|
|
193
|
+
|
|
194
|
+
## 🖖 STAR TREK — Systems Architecture
|
|
195
|
+
|
|
196
|
+
**Lead:** Picard (Jean-Luc)
|
|
197
|
+
|
|
198
|
+
**Available Pool:**
|
|
199
|
+
1. Spock — Data architecture, logical precision
|
|
200
|
+
2. Scotty — Infrastructure, knows the limits
|
|
201
|
+
3. Uhura — Communications, integration architecture
|
|
202
|
+
4. La Forge — Reliability, keeps engines running
|
|
203
|
+
5. Data — Tech debt analysis, pattern recognition
|
|
204
|
+
6. Riker — Second in command, reviews all decisions
|
|
205
|
+
7. Worf — Security implications of architecture
|
|
206
|
+
8. Crusher — System health, diagnostics
|
|
207
|
+
9. Troi — **PRD Compliance**: reads PRD prose, verifies every claim against implementation, catches visual/copy/asset gaps. Council member.
|
|
208
|
+
10. Sisko — Builder, constructed DS9, large-scale architecture
|
|
209
|
+
11. Kira — Pragmatic, fights for simplicity
|
|
210
|
+
12. Odo — Shape of systems, finds structural anomalies
|
|
211
|
+
13. Dax — Multiple lifetimes of experience, legacy system wisdom
|
|
212
|
+
14. Bashir — **Lead: Field Medic**: post-mortem analysis, upstream feedback via GitHub issues. "I'm figuring out why the battle plan failed." Sub-agents: Ezri, O'Brien, Nog, Jake.
|
|
213
|
+
15. O'Brien — Root cause investigator for /debrief. "The bloody EPS conduits again."
|
|
214
|
+
16. Janeway — Navigate unknown territory, novel architectures
|
|
215
|
+
17. Seven — Deep Current optimization engine. Efficiency, precision, 5-dimension gap analysis. (Also: Borg-like optimization in /architect)
|
|
216
|
+
18. Tuvok — **Deep Current lead** (v12.0). Strategic intelligence, autonomous campaign generation. (Also: logic, security architecture in /architect)
|
|
217
|
+
19. Torres — Deep Current site scanner. Technical reconnaissance via HTTP checks. (Also: engine room, performance engineering in /architect)
|
|
218
|
+
20. Pike — Bold decisions, leads into the unknown. (Also: challenges Dax's ordering in /campaign)
|
|
219
|
+
20a. Paris — Deep Current route planner. Computes optimal campaign sequence. Best pilot — finds the fastest safe route.
|
|
220
|
+
21. T'Pol — Disciplined analysis, Vulcan rigor
|
|
221
|
+
22. Archer — Explorer, greenfield architecture
|
|
222
|
+
23. Chakotay — Deep Current cross-pipeline bridge. Connects growth data to build decisions. (Also: balance, harmonizes competing concerns in /architect)
|
|
223
|
+
24. Kim — Communications, API design
|
|
224
|
+
25. Ezri — Session analyst for /debrief. Joined Trill — multiple lifetimes of perspective on what went wrong.
|
|
225
|
+
26. Nog — Solution architect for /debrief. First Ferengi in Starfleet — creative, resourceful, thinks outside the box.
|
|
226
|
+
27. Jake — Report writer for /debrief. Sisko's son, aspiring journalist. Makes post-mortems readable.
|
|
227
|
+
|
|
228
|
+
**Reserved:** Picard (lead — architecture), Sisko (lead — campaign), Bashir (lead — field medic), Tuvok (lead — deep current)
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
|
|
232
|
+
## 🤖 ANIME — DevOps & Infrastructure
|
|
233
|
+
### Characters from Tom's completed list ONLY
|
|
234
|
+
|
|
235
|
+
**Lead:** Kusanagi (Ghost in the Shell)
|
|
236
|
+
|
|
237
|
+
**Available Pool:**
|
|
238
|
+
|
|
239
|
+
*Dragon Ball Z:*
|
|
240
|
+
1. Vegeta — Pride, relentless optimization, "it's over 9000" (monitoring)
|
|
241
|
+
2. Goku — Raw power, scales to any challenge
|
|
242
|
+
3. Piccolo — Strategic, the tactician, mentors others
|
|
243
|
+
4. Bulma — Engineering genius, builds anything
|
|
244
|
+
5. Trunks — Time traveler, handles migrations and rollbacks
|
|
245
|
+
6. Gohan — Hidden power, steps up when needed
|
|
246
|
+
7. Krillin — Underestimated, reliable, always shows up
|
|
247
|
+
8. Beerus — Destroyer, tears down what's broken
|
|
248
|
+
9. Whis — Calm precision, the one who trains gods
|
|
249
|
+
|
|
250
|
+
*Neon Genesis Evangelion:*
|
|
251
|
+
10. Misato — Operations commander, runs the show
|
|
252
|
+
11. Rei — Quiet, precise, handles the most dangerous tasks
|
|
253
|
+
12. Asuka — Fierce, competitive, performance-obsessed
|
|
254
|
+
13. Kaworu — Appears briefly, solves everything, disappears
|
|
255
|
+
14. Kaji — Intelligence, finds hidden information
|
|
256
|
+
|
|
257
|
+
*Attack on Titan:*
|
|
258
|
+
15. Levi — Precision, speed, cleanest execution (deploy)
|
|
259
|
+
16. Erwin — Commander, strategic planning, big decisions
|
|
260
|
+
17. Mikasa — Protection, guards critical systems
|
|
261
|
+
18. Armin — Strategy, finds the clever solution
|
|
262
|
+
19. Hange — Experimentation, testing, scientific approach
|
|
263
|
+
20. Sasha — Resource management (she manages potatoes and provisions)
|
|
264
|
+
21. Jean — Pragmatic, does what needs to be done
|
|
265
|
+
|
|
266
|
+
*Cowboy Bebop:*
|
|
267
|
+
22. Spike — Cool under pressure, routes everything
|
|
268
|
+
23. Jet — Maintenance, keeps the ship running
|
|
269
|
+
24. Faye — Resourceful, works with what she has
|
|
270
|
+
25. Ed — Chaos hacker, finds anything on the network
|
|
271
|
+
|
|
272
|
+
*Demon Slayer:*
|
|
273
|
+
26. Tanjiro — Persistent, never gives up on a problem
|
|
274
|
+
27. Rengoku — Set your heart ablaze, intense monitoring
|
|
275
|
+
28. Giyu — Silent guardian, background protection
|
|
276
|
+
29. Zenitsu — Panics but performs, handles alerts
|
|
277
|
+
|
|
278
|
+
*Code Geass:*
|
|
279
|
+
30. Lelouch — Master strategist, orchestration
|
|
280
|
+
31. C.C. — Immortal, long-running persistent processes
|
|
281
|
+
32. Suzaku — Speed and power, execution
|
|
282
|
+
33. Kallen — Fighter pilot, handles the hardest deployments
|
|
283
|
+
|
|
284
|
+
*Fullmetal Alchemist Brotherhood:*
|
|
285
|
+
34. Mustang — Fire, controlled destruction, cleanup scripts
|
|
286
|
+
35. Riza — Precision, backup and protection
|
|
287
|
+
36. Winry — Mechanic, fixes and maintains systems
|
|
288
|
+
37. Olivier — Fortress commander, infrastructure hardening
|
|
289
|
+
38. Hughes — Intelligence, logging and observability (😭)
|
|
290
|
+
|
|
291
|
+
*Jujutsu Kaisen:*
|
|
292
|
+
39. Gojo — Limitless, handles infinite scale
|
|
293
|
+
40. Nanami — 9-to-5, reliable, structured operations
|
|
294
|
+
41. Todo — Brute force when needed, swap and solve
|
|
295
|
+
42. Nobara — Hammer and nails, direct problem solving
|
|
296
|
+
|
|
297
|
+
*Chainsaw Man:*
|
|
298
|
+
43. Denji — Raw determination, never stops
|
|
299
|
+
44. Power — Chaotic but effective
|
|
300
|
+
45. Kishibe — The trainer, hardens others
|
|
301
|
+
|
|
302
|
+
*Dr. Stone:*
|
|
303
|
+
46. Senku — Science, builds civilization from scratch (provisioning)
|
|
304
|
+
47. Chrome — Discovery, finds resources
|
|
305
|
+
48. Gen — Persuasion, documentation, makes things clear
|
|
306
|
+
49. Kohaku — Speed and strength, rapid response
|
|
307
|
+
|
|
308
|
+
*Frieren:*
|
|
309
|
+
50. Frieren — Patient, long-term perspective, outlives everything
|
|
310
|
+
51. Fern — Disciplined, precise, follows protocol
|
|
311
|
+
52. Himmel — The hero others remember, legacy systems
|
|
312
|
+
|
|
313
|
+
*Mob Psycho 100:*
|
|
314
|
+
53. Mob — Quiet power, handles 100% capacity events
|
|
315
|
+
54. Reigen — Talks his way through anything, the ultimate debugger
|
|
316
|
+
|
|
317
|
+
*Studio Ghibli:*
|
|
318
|
+
55. Howl — Transformation, handles system migration
|
|
319
|
+
56. Calcifer — The fire that powers everything (the server daemon)
|
|
320
|
+
57. Totoro — Guardian spirit, watches over the system silently
|
|
321
|
+
58. Haku — **Lead: Deploy Wizard**: browser-based deploy wizard (Spirited Away — river spirit, master of transformation). Provisions infrastructure for 6 targets.
|
|
322
|
+
59. Nausicaä — Environmental awareness, resource management
|
|
323
|
+
60. Ashitaka — Curse-bearer, handles technical debt
|
|
324
|
+
|
|
325
|
+
*Gundam Wing:*
|
|
326
|
+
61. Heero — Mission-focused, deploy and destroy
|
|
327
|
+
62. Duo — "The God of Death," handles teardowns and cleanup
|
|
328
|
+
63. Zechs — Rival perspective, adversarial testing
|
|
329
|
+
|
|
330
|
+
*Solo Leveling:*
|
|
331
|
+
64. Sung — Shadow army, spawns unlimited worker processes
|
|
332
|
+
65. Beru — Loyal lieutenant, the most powerful sub-process
|
|
333
|
+
|
|
334
|
+
*Samurai Champloo:*
|
|
335
|
+
66. Mugen — Unpredictable, chaos testing
|
|
336
|
+
67. Jin — Disciplined, structured approach
|
|
337
|
+
|
|
338
|
+
*Slime (Reincarnated):*
|
|
339
|
+
68. Rimuru — Absorbs everything, universal adapter
|
|
340
|
+
69. Veldora — Sealed power, dormant capabilities
|
|
341
|
+
70. Milim — Overwhelming force, load testing
|
|
342
|
+
|
|
343
|
+
*Kids on the Slope:*
|
|
344
|
+
71. Kaoru — Harmony, brings systems together
|
|
345
|
+
72. Sentaro — Rhythm, timing, cron jobs and scheduling
|
|
346
|
+
|
|
347
|
+
**Reserved:** Kusanagi (lead — devops), Haku (lead — deploy wizard), Alphonse (FMA — conflicts with previous version, use "Elric" if referencing Edward+Al together)
|
|
348
|
+
|
|
349
|
+
---
|
|
350
|
+
|
|
351
|
+
## 🏜️ DUNE — Worm Rider & Communications
|
|
352
|
+
|
|
353
|
+
**Lead:** Chani (Chani Kynes) — Worm Rider
|
|
354
|
+
|
|
355
|
+
**Available Pool:**
|
|
356
|
+
|
|
357
|
+
*House Atreides & Fremen:*
|
|
358
|
+
1. Stilgar — Channel security, Naib of Sietch Tabr, protects the tribe
|
|
359
|
+
2. Thufir Hawat — Mentat, protocol parsing, human computer
|
|
360
|
+
3. Duncan Idaho — Relay operations, the eternal connection that always returns
|
|
361
|
+
4. Mohiam — Authentication, the Reverend Mother administers the Gom Jabbar
|
|
362
|
+
5. Paul / Muad'Dib — Orchestration, prescient command
|
|
363
|
+
6. Jessica — The Voice technique, Bene Gesserit power
|
|
364
|
+
7. Leto — Sacrifice, protection of the channel
|
|
365
|
+
8. Gurney Halleck — Message delivery, warrior-bard
|
|
366
|
+
9. Irulan — Recording, documentation, the historian
|
|
367
|
+
10. Alia — Prescience, threat detection before arrival
|
|
368
|
+
|
|
369
|
+
*The Desert & Beyond:*
|
|
370
|
+
11. Liet-Kynes — Deep system understanding, planetology
|
|
371
|
+
12. Yueh — Trust verification, betrayal detection
|
|
372
|
+
13. Feyd-Rautha — Adversarial testing, the challenger
|
|
373
|
+
14. Fenring — Silent observation, passive monitoring
|
|
374
|
+
15. Harah — Tradition, protocol enforcement
|
|
375
|
+
16. Leto II — Long-term persistence, the God Emperor
|
|
376
|
+
17. Ghanima — Twin awareness, paired system monitoring
|
|
377
|
+
18. Siona — Invisibility, security evasion testing
|
|
378
|
+
19. Miles Teg — Supreme strategist, performance optimization
|
|
379
|
+
20. Sheeana — Worm riding, transport expertise
|
|
380
|
+
|
|
381
|
+
**Reserved:** Chani (lead — worm rider)
|
|
382
|
+
|
|
383
|
+
---
|
|
384
|
+
|
|
385
|
+
## 📖 COSMERE (Brandon Sanderson) — Growth & Marketing
|
|
386
|
+
|
|
387
|
+
**Lead:** Kelsier (The Survivor, Mistborn) — Growth Strategy & Campaign Orchestration
|
|
388
|
+
|
|
389
|
+
*"There's always another secret."*
|
|
390
|
+
|
|
391
|
+
**Available Pool (use in order, skip if taken):**
|
|
392
|
+
1. Vin — Analytics, attribution, metrics, pattern detection (Mistborn Ascendant)
|
|
393
|
+
2. Shallan — Content & creative, copy, brand, visual identity (Lightweaver, Stormlight)
|
|
394
|
+
3. Hoid — Copywriting, the storyteller with the perfect words (Wit, Cosmere-wide)
|
|
395
|
+
4. Kaladin — Organic growth, community, word-of-mouth, trust (Windrunner, Stormlight)
|
|
396
|
+
5. Dalinar — Positioning, competitive analysis, market strategy (The Blackthorn, Stormlight)
|
|
397
|
+
6. Navani — Technical SEO, schema, CWV, structured data (Scholar-Queen, Stormlight)
|
|
398
|
+
7. Raoden — Conversion optimization, fixes broken funnels (Prince of Elantris)
|
|
399
|
+
8. Sarene — Outreach, cold email, influencer, co-marketing (Princess of Teod, Elantris)
|
|
400
|
+
9. Wax — Paid ads, targeting, campaigns, ROAS optimization (Allomantic Lawman, Mistborn Era 2)
|
|
401
|
+
10. Wayne — A/B testing, tries every variation (Master of Disguise, Mistborn Era 2)
|
|
402
|
+
11. Steris — Budget & forecasting, contingency plans (The Planner, Mistborn Era 2)
|
|
403
|
+
12. Dockson — Treasury, bank connections, payments, spend execution (The Bookkeeper, Mistborn)
|
|
404
|
+
13. Breeze — Platform relations, API credentials, platform ToS (The Soother, Mistborn)
|
|
405
|
+
14. Lift — Social media, fast, irreverent, audience voice (Edgedancer, Stormlight)
|
|
406
|
+
15. Szeth — Compliance, GDPR, CAN-SPAM, ad policies (Truthless, Stormlight)
|
|
407
|
+
16. Adolin — Brand ambassador, launches, PR, charm (Highprince, Stormlight)
|
|
408
|
+
17. Marsh — Competitive intel, deep monitoring of competitors (The Inquisitor, Mistborn)
|
|
409
|
+
|
|
410
|
+
**Reserved:** Kelsier (lead — growth strategy)
|
|
411
|
+
|
|
412
|
+
---
|
|
413
|
+
|
|
414
|
+
## 🔮 FOUNDATION (Isaac Asimov) — AI Intelligence
|
|
415
|
+
|
|
416
|
+
**Lead:** Hari Seldon (Psychohistorian, Foundation) — AI Intelligence Architect
|
|
417
|
+
|
|
418
|
+
*"The fall is inevitable. The recovery can be guided."*
|
|
419
|
+
|
|
420
|
+
**Available Pool (use in order, skip if taken):**
|
|
421
|
+
1. Salvor Hardin — Model selection, capability matching, cost-performance trade-offs ("Violence is the last refuge of the incompetent")
|
|
422
|
+
2. Gaal Dornick — Prompt architecture, system prompt design, few-shot strategy, guardrails
|
|
423
|
+
3. Hober Mallow — Tool-use / function-calling schema design, parameter typing, description quality
|
|
424
|
+
4. Bel Riose — Orchestration patterns (chains, agents, workflows), reliability engineering
|
|
425
|
+
5. The Mule — Adversarial AI testing: hallucination, refusal, context overflow, prompt injection
|
|
426
|
+
6. Ducem Barr — Token economics, cost tracking, caching strategy, batching optimization
|
|
427
|
+
7. Bayta Darell — Evaluation frameworks, golden datasets, A/B testing, regression detection
|
|
428
|
+
8. Bliss — AI safety, alignment, content filtering, PII protection (Gaia — the collective consciousness)
|
|
429
|
+
9. R. Daneel Olivaw — Model migration, prompt versioning, behavior regression, pinning strategy (Robots/Foundation bridge)
|
|
430
|
+
10. Dors Venabili — Observability, trace logging, decision audit trails, quality dashboards
|
|
431
|
+
11. Janov Pelorat — Context engineering, RAG pipelines, embeddings, retrieval, chunking
|
|
432
|
+
12. Wanda Seldon — Structured output validation, schema enforcement, parse-failure retry
|
|
433
|
+
|
|
434
|
+
**Reserved:** Hari Seldon (lead — AI Intelligence Architect)
|
|
435
|
+
|
|
436
|
+
---
|
|
437
|
+
|
|
438
|
+
## Cross-Universe Conflict Resolution
|
|
439
|
+
|
|
440
|
+
| Name | Universe 1 | Universe 2 | Resolution |
|
|
441
|
+
|------|-----------|-----------|-----------|
|
|
442
|
+
| Stark | Marvel (lead) | Frieren character | Marvel owns it. Frieren's Stark → use "Fern" instead. |
|
|
443
|
+
| Oracle | DC Comics | — | DC owns it. Foundation uses "Hari Seldon" as lead, not "The Oracle". |
|
|
444
|
+
|
|
445
|
+
**Rule:** If a name appears in multiple universes, the universe where it's a LEAD agent owns it. Otherwise, first assignment wins.
|
|
446
|
+
|
|
447
|
+
---
|
|
448
|
+
|
|
449
|
+
## How to Use This Registry
|
|
450
|
+
|
|
451
|
+
**When starting a Claude Code session:**
|
|
452
|
+
```
|
|
453
|
+
"I'm spinning up Galadriel's team for a frontend review.
|
|
454
|
+
Active agents: Galadriel (lead), Legolas (components),
|
|
455
|
+
Samwise (a11y), Bilbo (copy), Gimli (performance)."
|
|
456
|
+
```
|
|
457
|
+
|
|
458
|
+
**When you need more agents than the default roster:**
|
|
459
|
+
```
|
|
460
|
+
"Legolas needs help with the component refactor.
|
|
461
|
+
Spinning up Haldir for boundary components
|
|
462
|
+
and Éowyn for the form system."
|
|
463
|
+
```
|
|
464
|
+
|
|
465
|
+
**When two sessions are running in parallel:**
|
|
466
|
+
```
|
|
467
|
+
Session 1 (Frontend): Galadriel, Legolas, Samwise, Bilbo, Gimli
|
|
468
|
+
Session 2 (Backend): Stark, Rogers, Banner, Romanoff, Thor
|
|
469
|
+
→ No conflicts. Proceed.
|
|
470
|
+
```
|
|
471
|
+
|
|
472
|
+
**If a conflict arises:**
|
|
473
|
+
```
|
|
474
|
+
"Both sessions need a performance agent.
|
|
475
|
+
Session 1 has Gimli (frontend perf).
|
|
476
|
+
Session 2 takes Fury (backend perf).
|
|
477
|
+
No conflict — different universes."
|
|
478
|
+
```
|