33GOD Ecosystem
Thin router for the 33GOD / DeLoNET platform. Load this skill when a request touches multiple platform components or when you need to pick the right member skill.
Operating Principles
- The project registry is the project source of truth. Plane and Hermes are downstream integrations.
.project.jsonis a repo-local projection. It is authored by33god-projects, not by Plane or Hermes.- Bloodbank owns event schemas. No other skill mints event names.
- Hermes fleet operations stay in
hermes-fleet-operations. CommonProject does not repair the fleet. - Hub bodies route; they do not implement. Long recipes and command snippets live in member skills.
Routing Matrix
| User intent | Primary skill | Optional secondary |
|---|---|---|
| Create a new 33GOD project / bootstrap CommonProject / add a PM or Ticket Sentinel | 33god-projects |
hermes-fleet-operations only for live agent provisioning details; managing-tickets-and-tasks-in-plane only for live board actions |
| Change CommonProject template or pjangler CLI/MCP | pjangler-dev |
33god-projects for project-facing contract |
| Add a PM or scrum-master agent to this repo | 33god-projects |
hermes-fleet-operations for runtime/template/systemd details |
| Update Hermes model/profile/default config or fleet self-check | hermes-fleet-operations |
33god-projects only if repo projection changes |
| Fix inherited Hermes config after upstream update | hermes-fleet-operations |
none unless repo-local agent projections changed |
| Create or move Plane tickets | managing-tickets-and-tasks-in-plane |
33god-projects to resolve project binding from .project.json |
| Define an event or debug missing envelopes | bloodbank-integration |
agent-config-fanout only if an agent hook projection is broken |
| Change project-scoped hook generation | agent-config-fanout |
33god-projects if CommonProject baseline changes; bloodbank-integration if event emission changes |
| Change zsh, Traefik, Tailscale, Docker stack convention | delonet-conventions |
project skills only if repo scaffold must change |
| Bump version and release | mise-versioning |
mise-tasks only if release task DAG must change |
| Author or debug mise tasks | mise-tasks |
delonet-conventions only for host-level env conventions |
| Hindsight memory operations | hindsight |
33god-projects for wiring during bootstrap only |
Source-of-Truth Map
| Domain | Owner skill | Durable source |
|---|---|---|
| Project registry / repo bootstrap | 33god-projects |
~/.config/pjangler/projects.yaml or PJ_PROJECT_REGISTRY; templates/commonproject; repo .project.json |
| PJangler code | pjangler-dev |
/home/delorenj/code/pjangler/src, templates/commonproject |
| Agent hook/skill fan-out | agent-config-fanout |
.agents/hooks/hooks.master.json, lock files |
| Hermes fleet runtime | hermes-fleet-operations |
~/.hermes/fleet.env, ~/.hermes/config.yaml, ~/.hermes/agents-registry.yaml, hermes-agent-template |
| Ticket lifecycle | managing-tickets-and-tasks-in-plane |
Plane API / board state |
| Event contract | bloodbank-integration |
Bloodbank docs/event-naming.md, schemas/ |
| Host conventions | delonet-conventions |
home layout, zshyzsh, Docker/Traefik/Tailscale conventions |
| Version workflow | mise-versioning |
repo mise.toml, release tasks |
| Task authoring | mise-tasks |
repo mise.toml [tasks] |
| Memory operations | hindsight |
Hindsight memory banks |
Common Combinations
Project bootstrap: 33god-projects → managing-tickets-and-tasks-in-plane (only for live board work) → hermes-fleet-operations (only for live agent provisioning).
PJangler implementation: pjangler-dev → 33god-projects for expected project-facing contract.
Agent hook / skill fan-out: agent-config-fanout → 33god-projects for CommonProject baseline → bloodbank-integration if hook events are emitted.
Hermes fleet maintenance: hermes-fleet-operations → managing-tickets-and-tasks-in-plane only if creating/closing maintenance tickets → 33god-projects only if .project.json or registry projections change.
Event system work: bloodbank-integration → agent-config-fanout for agent hook projections.
Out of Scope
- Implementation procedures → member skills.
- Plane API details →
managing-tickets-and-tasks-in-plane. - Hermes runtime repair steps →
hermes-fleet-operations. - Bloodbank schema authoring details →
bloodbank-integration. - Generic host/workstation conventions →
delonet-conventions.