33god-33god-agent-factory
Bootstrap new 33GOD ecosystem agents with standardized configuration. Use when creating new agents, spawning workers, or when the user says "spin up an agent", "create a new agent", "deploy a new worker", or needs a new agent for a specific pipeline role. Handles workspace creation, config injection, skill installation, provider mirroring, channel binding, and 33GOD ecosystem onboarding (GOD Docs, Plane, Bloodbank, memory).
What this skill does
# Agent Factory
Standardized bootstrap for 33GOD ecosystem agents. Every agent ships ready to:
- Consume and produce Bloodbank events
- Read/write GOD Docs
- Track work on Plane boards
- Communicate with Cack (boss) and peer agents
- Use hindsight for long-term memory
- Authenticate against all configured providers
## Quick Start
When the user requests a new agent, gather these parameters:
| Parameter | Required | Description |
| --------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------- |
| `id` | ✅ | Agent ID (lowercase, no spaces, e.g. `scout`) |
| `name` | ✅ | Display name (e.g. `Scout`) |
| `role` | ✅ | One of: `manager`, `exec`, or `IC` |
| `purpose` | ✅ | One-line mission statement |
| `personality` | ❌ | Vibe/tone (defaults to "competent, concise, team-player") |
| `channel` | ❌ | `telegram` (needs bot token) |
| `telegram_bot_token` | ❌ | If channel=telegram, the BotFather token |
| `telegram_account_id` | ❌ | Account ID for multi-bot setup (defaults to agent id) |
| `model` | ❌ | Model override (defaults to ecosystem default) |
| `workspace_slug` | ❌ | Workspace path slug (agent-based default comes from display name first token, e.g. `Momo The Cat` -> `workspace-momo`) |
| `reports_to` | ❌ | Manager/owner for role charter (default: `Cack`) |
| `role_title` | ❌ | Human-readable charter title (default derived from role) |
| `directives` | ❌ | Per-agent directives (repeatable, merged into charter) |
| `skills` | ❌ | Additional skills beyond the base set |
## Bootstrap Procedure
### 1. Create Workspace
```bash
bash /home/delorenj/.openclaw/skills/33god-agent-factory/scripts/bootstrap.sh \
--id <id> \
--name <name> \
--role <role> \
--purpose "<purpose>" \
[--personality "<personality>"] \
[--model "<model>"] \
[--workspace-slug "<agent-workspace-slug>"] \
[--reports-to "<manager>"] \
[--role-title "<charter title>"] \
[--directive "<agent-specific directive>"]...
```
This creates `~/.openclaw/workspace-<id>/` with all template files populated.
### 2. Role Governance Is Auto-Synced
Bootstrap now calls `scripts/role_governance.py` automatically to:
- upsert this agent in `~/.openclaw/workspace/frameworks/agent-governance/AGENT_ROLE_MATRIX.json`
- apply inherited global prime directives to all managed `AGENTS.md` files
- apply per-agent directives (when provided via `--directive`)
You can re-run sync manually at any time:
```bash
python3 /home/delorenj/.openclaw/skills/33god-agent-factory/scripts/role_governance.py \
--governance-dir /home/delorenj/.openclaw/workspace/frameworks/agent-governance \
apply
```
### 3. Update Gateway Config
After running the bootstrap script, update `~/.openclaw/openclaw.json`:
**Add agent to `agents.list`:**
```json
{
"id": "<id>",
"name": "<name>",
"workspace": "/home/delorenj/.openclaw/workspace-<id>",
"identity": { "name": "<name>" }
}
```
**If Telegram channel, add to `channels.telegram.accounts`:**
```json
"<account_id>": {
"name": "<name>",
"dmPolicy": "pairing",
"botToken": "<token>",
"groupPolicy": "allowlist",
"streamMode": "partial"
}
```
**Add binding to `bindings` array:**
```json
{
"agentId": "<id>",
"match": {
"channel": "telegram",
"accountId": "<account_id>"
}
}
```
### 4. Restart Gateway
Use the `gateway` tool with `action: "restart"` to pick up the new agent.
### 5. Send Onboarding Briefing
After gateway restart, use `sessions_send` to the new agent's session (`agent:<id>:main`) with an onboarding message that includes:
- Their specific mission and current priorities
- Any immediate tasks from the Plane board
- Context about active projects they'll touch
### 6. Mandatory Process Hardening Check (Required)
Before considering bootstrap complete, verify the new agent understands and acknowledges:
- **PR-only delivery** (no direct merges to `main`/`master`)
- **Ticket branch discipline** (ticket id in branch name)
- **Evidence-first status updates** (`branch`, `last commit`, `git status`, `stash`, `open PRs`)
- **Clean-main handoff** after merges (`git checkout main && git pull --ff-only`)
- **BMAD mandatory** for coding repos (`npx bmad-method@alpha install` when missing)
Use `sessions_send` and require a confirmation response in this structure:
1. Repo hygiene checklist they will run every handoff
2. PR policy acknowledgment
3. BMAD enforcement acknowledgment
## Yi Node Flavors (Role Types)
| Role | Memory | Can Delegate | Description |
| ------------ | ------------- | ------------ | ------------------------------------------- |
| `manager` | ✅ Persistent | ✅ Yes | Delegators only — coordinate, don't execute |
| `exec` | ✅ Persistent | ✅ Yes | Delegator + worker hybrid |
| `ic` | ✅ Persistent | ❌ No | Individual contributor with full context |
| `contractor` | ❌ Ephemeral | ❌ No | Stateless worker, task-scoped |
**Invariant:** Delegator ⇒ persistent memory required.
## Base Skills (auto-installed via symlink)
Every agent gets these skills symlinked from Cack's install:
- `33god-creating-and-working-with-projects`
- `33god-service-development`
- `33god-workflow-generator`
- `god-docs`
- `managing-tickets-and-tasks-in-plane`
- `github`
- `ecosystem-patterns`
- `installing-apps-tools-and-services`
- `hindsight`
## Template Files
The bootstrap script generates these from templates in `references/`:
- `AGENTS.md` — Role-aware instructions + **repo execution protocol** (ticket branches, PR-only, evidence-first reporting, clean-main handoff, BMAD mandate)
- `SOUL.md` — Personality + ecosystem identity
- `USER.md` — Jarad's info (static)
- `IDENTITY.md` — Agent identity card
- `TOOLS.md` — Empty, agent fills as needed
- `MEMORY.md` — Pre-seeded with ecosystem context
- `HEARTBEAT.md` — Empty (agent configures as needed)
- `memory/` directory created
## Provider Auth
Providers are configured at the gateway level in `agents.defaults`, so all agents automatically inherit:
- anthropic, github-copilot, openai-codex, opencode, kimi-coding, google, google-antigravity, openrouter
No per-agent provider config needed — it's all in defaults.
## Conventions
- Workspace: `~/.openclaw/workspace-<id>/`
- Session key: `agent:<id>:main`
- Telegram account: matches agent id unless overridden
- All agents know Cack is the coordinator/boss
- All agents use `sessions_send` for inter-agent comms
- Plane workspace: `33god`
## Per-Agent Directive Updates (Post-Bootstrap)
Use this when you want to modify one agenRelated in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.