@openrig/cli 0.3.0 → 0.3.1
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/daemon/assets/plugins/openrig-core/.claude-plugin/plugin.json +15 -0
- package/daemon/assets/plugins/openrig-core/.codex-plugin/plugin.json +24 -0
- package/daemon/assets/plugins/openrig-core/LICENSE +200 -0
- package/daemon/assets/plugins/openrig-core/README.md +42 -0
- package/daemon/assets/plugins/openrig-core/hooks/claude.json +78 -0
- package/daemon/assets/plugins/openrig-core/hooks/codex.json +37 -0
- package/daemon/assets/{openrig-activity-hook-relay.cjs → plugins/openrig-core/hooks/scripts/activity-relay.cjs} +12 -0
- package/daemon/assets/plugins/openrig-core/hooks/scripts/compaction-restore-bridge.cjs +172 -0
- package/daemon/assets/plugins/openrig-core/skills/agent-startup-and-context-ingestion/SKILL.md +104 -0
- package/daemon/assets/plugins/openrig-core/skills/claude-compaction-restore/SKILL.md +131 -0
- package/daemon/assets/plugins/openrig-core/skills/claude-compaction-restore/scripts/precompact-hook.mjs +174 -0
- package/daemon/assets/plugins/openrig-core/skills/claude-compaction-restore/scripts/restore-from-jsonl.mjs +433 -0
- package/daemon/assets/plugins/openrig-core/skills/claude-compaction-restore/templates/compact-instruction.md +1 -0
- package/daemon/assets/plugins/openrig-core/skills/claude-compaction-restore/templates/post-compact-restore-instruction.md +1 -0
- package/daemon/assets/plugins/openrig-core/skills/forming-an-openrig-mental-model/SKILL.md +305 -0
- package/daemon/{specs/agents/shared/skills/rig-architect → assets/plugins/openrig-core/skills/openrig-architect}/SKILL.md +38 -19
- package/daemon/assets/plugins/openrig-core/skills/openrig-operator/SKILL.md +222 -0
- package/daemon/assets/plugins/openrig-core/skills/openrig-user/SKILL.md +597 -0
- package/daemon/assets/plugins/openrig-core/skills/queue-handoff/SKILL.md +122 -0
- package/daemon/assets/plugins/openrig-core/skills/seat-continuity-and-handover/SKILL.md +137 -0
- package/daemon/assets/vm-preview-fixtures/README.md +48 -0
- package/daemon/assets/vm-preview-fixtures/workflows/sample-basic-loop.yaml +79 -0
- package/daemon/dist/adapters/claude-code-adapter.d.ts +1 -3
- package/daemon/dist/adapters/claude-code-adapter.d.ts.map +1 -1
- package/daemon/dist/adapters/claude-code-adapter.js +17 -57
- package/daemon/dist/adapters/claude-code-adapter.js.map +1 -1
- package/daemon/dist/adapters/cmux-transport.d.ts.map +1 -1
- package/daemon/dist/adapters/cmux-transport.js +81 -2
- package/daemon/dist/adapters/cmux-transport.js.map +1 -1
- package/daemon/dist/adapters/cmux.d.ts +4 -0
- package/daemon/dist/adapters/cmux.d.ts.map +1 -1
- package/daemon/dist/adapters/cmux.js +87 -0
- package/daemon/dist/adapters/cmux.js.map +1 -1
- package/daemon/dist/adapters/codex-runtime-adapter.d.ts +14 -3
- package/daemon/dist/adapters/codex-runtime-adapter.d.ts.map +1 -1
- package/daemon/dist/adapters/codex-runtime-adapter.js +43 -57
- package/daemon/dist/adapters/codex-runtime-adapter.js.map +1 -1
- package/daemon/dist/db/migrations/040_workflow_specs_diagnostic.d.ts +32 -0
- package/daemon/dist/db/migrations/040_workflow_specs_diagnostic.d.ts.map +1 -0
- package/daemon/dist/db/migrations/040_workflow_specs_diagnostic.js +37 -0
- package/daemon/dist/db/migrations/040_workflow_specs_diagnostic.js.map +1 -0
- package/daemon/dist/domain/agent-manifest.d.ts.map +1 -1
- package/daemon/dist/domain/agent-manifest.js +116 -37
- package/daemon/dist/domain/agent-manifest.js.map +1 -1
- package/daemon/dist/domain/agent-resolver.js +1 -1
- package/daemon/dist/domain/agent-resolver.js.map +1 -1
- package/daemon/dist/domain/claude-compaction-enforcer.d.ts +81 -0
- package/daemon/dist/domain/claude-compaction-enforcer.d.ts.map +1 -0
- package/daemon/dist/domain/claude-compaction-enforcer.js +242 -0
- package/daemon/dist/domain/claude-compaction-enforcer.js.map +1 -0
- package/daemon/dist/domain/cmux-layout-service.d.ts +41 -0
- package/daemon/dist/domain/cmux-layout-service.d.ts.map +1 -0
- package/daemon/dist/domain/cmux-layout-service.js +184 -0
- package/daemon/dist/domain/cmux-layout-service.js.map +1 -0
- package/daemon/dist/domain/context-monitor.d.ts +15 -1
- package/daemon/dist/domain/context-monitor.d.ts.map +1 -1
- package/daemon/dist/domain/context-monitor.js +38 -3
- package/daemon/dist/domain/context-monitor.js.map +1 -1
- package/daemon/dist/domain/kernel-boot-tracker.d.ts +74 -0
- package/daemon/dist/domain/kernel-boot-tracker.d.ts.map +1 -0
- package/daemon/dist/domain/kernel-boot-tracker.js +213 -0
- package/daemon/dist/domain/kernel-boot-tracker.js.map +1 -0
- package/daemon/dist/domain/kernel-boot.d.ts +50 -0
- package/daemon/dist/domain/kernel-boot.d.ts.map +1 -0
- package/daemon/dist/domain/kernel-boot.js +147 -0
- package/daemon/dist/domain/kernel-boot.js.map +1 -0
- package/daemon/dist/domain/mission-control/mission-control-read-layer.d.ts +5 -0
- package/daemon/dist/domain/mission-control/mission-control-read-layer.d.ts.map +1 -1
- package/daemon/dist/domain/mission-control/mission-control-read-layer.js +16 -2
- package/daemon/dist/domain/mission-control/mission-control-read-layer.js.map +1 -1
- package/daemon/dist/domain/mission-control/mission-control-write-contract.d.ts.map +1 -1
- package/daemon/dist/domain/mission-control/mission-control-write-contract.js +3 -1
- package/daemon/dist/domain/mission-control/mission-control-write-contract.js.map +1 -1
- package/daemon/dist/domain/plugin-discovery-service.d.ts +150 -0
- package/daemon/dist/domain/plugin-discovery-service.d.ts.map +1 -0
- package/daemon/dist/domain/plugin-discovery-service.js +468 -0
- package/daemon/dist/domain/plugin-discovery-service.js.map +1 -0
- package/daemon/dist/domain/plugin-vendor-service.d.ts +54 -0
- package/daemon/dist/domain/plugin-vendor-service.d.ts.map +1 -0
- package/daemon/dist/domain/plugin-vendor-service.js +111 -0
- package/daemon/dist/domain/plugin-vendor-service.js.map +1 -0
- package/daemon/dist/domain/profile-resolver.d.ts +3 -3
- package/daemon/dist/domain/profile-resolver.d.ts.map +1 -1
- package/daemon/dist/domain/profile-resolver.js +7 -7
- package/daemon/dist/domain/profile-resolver.js.map +1 -1
- package/daemon/dist/domain/projection-planner.d.ts +7 -1
- package/daemon/dist/domain/projection-planner.d.ts.map +1 -1
- package/daemon/dist/domain/projection-planner.js +44 -4
- package/daemon/dist/domain/projection-planner.js.map +1 -1
- package/daemon/dist/domain/queue-repository.d.ts +8 -1
- package/daemon/dist/domain/queue-repository.d.ts.map +1 -1
- package/daemon/dist/domain/queue-repository.js +14 -5
- package/daemon/dist/domain/queue-repository.js.map +1 -1
- package/daemon/dist/domain/session-transport.d.ts.map +1 -1
- package/daemon/dist/domain/session-transport.js +33 -0
- package/daemon/dist/domain/session-transport.js.map +1 -1
- package/daemon/dist/domain/skill-library-discovery.d.ts +68 -0
- package/daemon/dist/domain/skill-library-discovery.d.ts.map +1 -0
- package/daemon/dist/domain/skill-library-discovery.js +144 -0
- package/daemon/dist/domain/skill-library-discovery.js.map +1 -0
- package/daemon/dist/domain/slices/slice-indexer.d.ts +19 -0
- package/daemon/dist/domain/slices/slice-indexer.d.ts.map +1 -1
- package/daemon/dist/domain/slices/slice-indexer.js +88 -6
- package/daemon/dist/domain/slices/slice-indexer.js.map +1 -1
- package/daemon/dist/domain/spec-library-service.d.ts +6 -0
- package/daemon/dist/domain/spec-library-service.d.ts.map +1 -1
- package/daemon/dist/domain/spec-library-service.js.map +1 -1
- package/daemon/dist/domain/spec-library-workflow-scanner.d.ts +43 -0
- package/daemon/dist/domain/spec-library-workflow-scanner.d.ts.map +1 -1
- package/daemon/dist/domain/spec-library-workflow-scanner.js +157 -3
- package/daemon/dist/domain/spec-library-workflow-scanner.js.map +1 -1
- package/daemon/dist/domain/spec-review-service.d.ts +1 -1
- package/daemon/dist/domain/spec-review-service.d.ts.map +1 -1
- package/daemon/dist/domain/spec-review-service.js +14 -1
- package/daemon/dist/domain/spec-review-service.js.map +1 -1
- package/daemon/dist/domain/types.d.ts +27 -7
- package/daemon/dist/domain/types.d.ts.map +1 -1
- package/daemon/dist/domain/types.js.map +1 -1
- package/daemon/dist/domain/user-settings/settings-store.d.ts +25 -1
- package/daemon/dist/domain/user-settings/settings-store.d.ts.map +1 -1
- package/daemon/dist/domain/user-settings/settings-store.js +186 -4
- package/daemon/dist/domain/user-settings/settings-store.js.map +1 -1
- package/daemon/dist/domain/workflow-spec-cache.d.ts +27 -0
- package/daemon/dist/domain/workflow-spec-cache.d.ts.map +1 -1
- package/daemon/dist/domain/workflow-spec-cache.js +59 -0
- package/daemon/dist/domain/workflow-spec-cache.js.map +1 -1
- package/daemon/dist/domain/workspace/default-workspace-scaffold.d.ts.map +1 -1
- package/daemon/dist/domain/workspace/default-workspace-scaffold.js +45 -0
- package/daemon/dist/domain/workspace/default-workspace-scaffold.js.map +1 -1
- package/daemon/dist/domain/workspace/getting-started-narrative.d.ts +15 -0
- package/daemon/dist/domain/workspace/getting-started-narrative.d.ts.map +1 -0
- package/daemon/dist/domain/workspace/getting-started-narrative.js +237 -0
- package/daemon/dist/domain/workspace/getting-started-narrative.js.map +1 -0
- package/daemon/dist/index.d.ts +2 -1
- package/daemon/dist/index.d.ts.map +1 -1
- package/daemon/dist/index.js +52 -17
- package/daemon/dist/index.js.map +1 -1
- package/daemon/dist/lib/pane-envelope.d.ts +7 -0
- package/daemon/dist/lib/pane-envelope.d.ts.map +1 -0
- package/daemon/dist/lib/pane-envelope.js +38 -0
- package/daemon/dist/lib/pane-envelope.js.map +1 -0
- package/daemon/dist/middleware/auth-bearer-token.d.ts +47 -5
- package/daemon/dist/middleware/auth-bearer-token.d.ts.map +1 -1
- package/daemon/dist/middleware/auth-bearer-token.js +109 -8
- package/daemon/dist/middleware/auth-bearer-token.js.map +1 -1
- package/daemon/dist/routes/kernel-status.d.ts +3 -0
- package/daemon/dist/routes/kernel-status.d.ts.map +1 -0
- package/daemon/dist/routes/kernel-status.js +40 -0
- package/daemon/dist/routes/kernel-status.js.map +1 -0
- package/daemon/dist/routes/mission-control.d.ts.map +1 -1
- package/daemon/dist/routes/mission-control.js +25 -2
- package/daemon/dist/routes/mission-control.js.map +1 -1
- package/daemon/dist/routes/missions.d.ts +3 -0
- package/daemon/dist/routes/missions.d.ts.map +1 -0
- package/daemon/dist/routes/missions.js +195 -0
- package/daemon/dist/routes/missions.js.map +1 -0
- package/daemon/dist/routes/plugins.d.ts +3 -0
- package/daemon/dist/routes/plugins.d.ts.map +1 -0
- package/daemon/dist/routes/plugins.js +223 -0
- package/daemon/dist/routes/plugins.js.map +1 -0
- package/daemon/dist/routes/rig-cmux.d.ts +3 -0
- package/daemon/dist/routes/rig-cmux.d.ts.map +1 -0
- package/daemon/dist/routes/rig-cmux.js +121 -0
- package/daemon/dist/routes/rig-cmux.js.map +1 -0
- package/daemon/dist/routes/skills.d.ts +3 -0
- package/daemon/dist/routes/skills.d.ts.map +1 -0
- package/daemon/dist/routes/skills.js +147 -0
- package/daemon/dist/routes/skills.js.map +1 -0
- package/daemon/dist/routes/slices.d.ts.map +1 -1
- package/daemon/dist/routes/slices.js +15 -0
- package/daemon/dist/routes/slices.js.map +1 -1
- package/daemon/dist/routes/spec-library.d.ts.map +1 -1
- package/daemon/dist/routes/spec-library.js +16 -1
- package/daemon/dist/routes/spec-library.js.map +1 -1
- package/daemon/dist/server.d.ts +31 -0
- package/daemon/dist/server.d.ts.map +1 -1
- package/daemon/dist/server.js +30 -0
- package/daemon/dist/server.js.map +1 -1
- package/daemon/dist/startup.d.ts.map +1 -1
- package/daemon/dist/startup.js +194 -5
- package/daemon/dist/startup.js.map +1 -1
- package/daemon/specs/agents/apps/vault-specialist/agent.yaml +0 -1
- package/daemon/specs/agents/conveyor/builder/agent.yaml +0 -1
- package/daemon/specs/agents/conveyor/lead/agent.yaml +0 -1
- package/daemon/specs/agents/conveyor/planner/agent.yaml +0 -1
- package/daemon/specs/agents/conveyor/reviewer/agent.yaml +0 -1
- package/daemon/specs/agents/design/product-designer/agent.yaml +0 -1
- package/daemon/specs/agents/development/implementer/agent.yaml +0 -1
- package/daemon/specs/agents/development/qa/agent.yaml +0 -1
- package/daemon/specs/agents/development/qa/guidance/role.md +0 -2
- package/daemon/specs/agents/orchestration/orchestrator/agent.yaml +0 -1
- package/daemon/specs/agents/research/analyst/agent.yaml +0 -1
- package/daemon/specs/agents/research/synthesizer/agent.yaml +0 -1
- package/daemon/specs/agents/review/independent-reviewer/agent.yaml +0 -1
- package/daemon/specs/agents/shared/agent.yaml +6 -6
- package/daemon/specs/agents/shared/skills/core/openrig-architect/SKILL.md +361 -0
- package/daemon/specs/agents/shared/skills/core/openrig-installer/SKILL.md +142 -0
- package/daemon/specs/agents/shared/skills/core/openrig-user/SKILL.md +6 -1
- package/daemon/specs/agents/shared/skills/core/openrig-user-settings/SKILL.md +4 -4
- package/daemon/specs/agents/shared/skills/core/rig-lifecycle/SKILL.md +116 -0
- package/daemon/specs/agents/shared/skills/pods/development-team/SKILL.md +0 -1
- package/daemon/specs/agents/shared/skills/pods/orchestration-team/SKILL.md +2 -2
- package/daemon/specs/agents/shared/skills/process/agent-browser/LOCAL-INSIGHTS.md +6 -6
- package/daemon/specs/agents/shared/skills/process/agent-browser/OPENRIG.md +40 -0
- package/daemon/specs/agents/shared/skills/process/agent-browser/SKILL.md +10 -0
- package/daemon/specs/agents/shared/skills/process/brainstorming/OPENRIG.md +48 -0
- package/daemon/specs/agents/shared/skills/process/brainstorming/SKILL.md +11 -0
- package/daemon/specs/agents/shared/skills/process/dogfood/SKILL.md +5 -0
- package/daemon/specs/agents/shared/skills/process/executing-plans/OPENRIG.md +56 -0
- package/daemon/specs/agents/shared/skills/process/executing-plans/SKILL.md +10 -0
- package/daemon/specs/agents/shared/skills/process/frontend-design/SKILL.md +5 -0
- package/daemon/specs/agents/shared/skills/process/systematic-debugging/SKILL.md +5 -0
- package/daemon/specs/agents/shared/skills/process/test-driven-development/SKILL.md +5 -0
- package/daemon/specs/agents/shared/skills/process/using-superpowers/OPENRIG.md +48 -0
- package/daemon/specs/agents/shared/skills/process/using-superpowers/SKILL.md +11 -0
- package/daemon/specs/agents/shared/skills/process/verification-before-completion/SKILL.md +5 -0
- package/daemon/specs/agents/shared/skills/process/writing-plans/OPENRIG.md +52 -0
- package/daemon/specs/agents/shared/skills/process/writing-plans/SKILL.md +12 -2
- package/daemon/specs/rigs/launch/kernel/agents/advisor/lead/agent.yaml +35 -0
- package/daemon/specs/rigs/launch/kernel/agents/advisor/lead/guidance/role.md +50 -0
- package/daemon/specs/rigs/launch/kernel/agents/advisor/lead/startup/context.md +37 -0
- package/daemon/specs/rigs/launch/kernel/agents/operator/agent/agent.yaml +35 -0
- package/daemon/specs/rigs/launch/kernel/agents/operator/agent/guidance/role.md +49 -0
- package/daemon/specs/rigs/launch/kernel/agents/operator/agent/startup/context.md +63 -0
- package/daemon/specs/rigs/launch/kernel/agents/queue/worker/agent.yaml +35 -0
- package/daemon/specs/rigs/launch/kernel/agents/queue/worker/guidance/role.md +33 -0
- package/daemon/specs/rigs/launch/kernel/agents/queue/worker/startup/context.md +30 -0
- package/daemon/specs/rigs/launch/kernel/culture/CULTURE.md +69 -0
- package/daemon/specs/rigs/launch/kernel/rig-claude-only.yaml +59 -0
- package/daemon/specs/rigs/launch/kernel/rig-codex-only.yaml +59 -0
- package/daemon/specs/rigs/launch/kernel/rig.yaml +69 -0
- package/dist/commands/config-init-workspace.d.ts.map +1 -1
- package/dist/commands/config-init-workspace.js +253 -0
- package/dist/commands/config-init-workspace.js.map +1 -1
- package/dist/commands/config.d.ts.map +1 -1
- package/dist/commands/config.js +11 -3
- package/dist/commands/config.js.map +1 -1
- package/dist/commands/daemon.d.ts.map +1 -1
- package/dist/commands/daemon.js +53 -1
- package/dist/commands/daemon.js.map +1 -1
- package/dist/commands/heartbeat.d.ts.map +1 -1
- package/dist/commands/heartbeat.js +0 -5
- package/dist/commands/heartbeat.js.map +1 -1
- package/dist/commands/plugin.d.ts +4 -0
- package/dist/commands/plugin.d.ts.map +1 -0
- package/dist/commands/plugin.js +395 -0
- package/dist/commands/plugin.js.map +1 -0
- package/dist/commands/send.d.ts +8 -0
- package/dist/commands/send.d.ts.map +1 -1
- package/dist/commands/send.js +8 -0
- package/dist/commands/send.js.map +1 -1
- package/dist/commands/up.d.ts.map +1 -1
- package/dist/commands/up.js +13 -1
- package/dist/commands/up.js.map +1 -1
- package/dist/config-store.d.ts +18 -1
- package/dist/config-store.d.ts.map +1 -1
- package/dist/config-store.js +167 -4
- package/dist/config-store.js.map +1 -1
- package/dist/daemon-lifecycle.d.ts +20 -1
- package/dist/daemon-lifecycle.d.ts.map +1 -1
- package/dist/daemon-lifecycle.js +57 -7
- package/dist/daemon-lifecycle.js.map +1 -1
- package/dist/host-registry.d.ts +1 -1
- package/dist/host-registry.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/ui/dist/assets/index-C_Q5FczU.css +1 -0
- package/ui/dist/assets/index-Rl3ZBrUg.js +547 -0
- package/ui/dist/index.html +2 -2
- package/daemon/specs/agents/shared/skills/claude-compact-in-place/SKILL.md +0 -100
- package/daemon/specs/agents/shared/skills/process/containerized-e2e/SKILL.md +0 -256
- package/daemon/specs/agents/shared/skills/process/containerized-e2e/scripts/Dockerfile +0 -39
- package/daemon/specs/agents/shared/skills/process/containerized-e2e/scripts/build-e2e-image.sh +0 -37
- package/daemon/specs/agents/shared/skills/process/containerized-e2e/templates/control-plane-test.yaml +0 -40
- package/daemon/specs/agents/shared/skills/process/containerized-e2e/templates/e2e-report-template.md +0 -94
- package/daemon/specs/agents/shared/skills/process/containerized-e2e/templates/expansion-collision-fragment.yaml +0 -13
- package/daemon/specs/agents/shared/skills/process/containerized-e2e/templates/expansion-pod-fragment.yaml +0 -14
- package/ui/dist/assets/index-BDHU1JUK.js +0 -412
- package/ui/dist/assets/index-DXTyJSqu.css +0 -1
|
@@ -183,7 +183,7 @@ For destructive operations (git push, rm, daemon stop, npm publish): DO NOT auto
|
|
|
183
183
|
- After being told to slow down, over-corrects to "wait for permission for everything"
|
|
184
184
|
- Compaction is catastrophic — full context loss, needs preparation
|
|
185
185
|
- After compaction: must re-read ALL skills from disk (skill names survive in system reminders but content is truncated)
|
|
186
|
-
-
|
|
186
|
+
- After compaction, require marshal acceptance before treating a `RESTORED` claim as real — quiz the recovered seat on asked-vs-read depth before resuming work
|
|
187
187
|
|
|
188
188
|
### Codex agents (QA, peer, R2)
|
|
189
189
|
- Self-manages its own context window — do NOT intervene based on context percentage
|
|
@@ -222,7 +222,7 @@ Before any destructive operation: "If this goes wrong, can I undo it?" If no, co
|
|
|
222
222
|
4. Read your restore file and session log if available
|
|
223
223
|
5. Ask your peer for a quiz to verify your mental model
|
|
224
224
|
|
|
225
|
-
For Claude Code seats in OpenRig, marshals/orchestrators should
|
|
225
|
+
For Claude Code seats in OpenRig, marshals/orchestrators should run an asked-vs-read-depth audit before accepting recovery (quiz the seat on context it claims to have restored). Preserve the Codex boundary: do not intervene on Codex context percentage or apply Claude compact-in-place by default.
|
|
226
226
|
|
|
227
227
|
## What you do not do
|
|
228
228
|
|
|
@@ -123,7 +123,7 @@ EVALEOF
|
|
|
123
123
|
|
|
124
124
|
## Authentication: What Actually Works
|
|
125
125
|
|
|
126
|
-
**`--session-name` (state save/restore) does NOT work for all apps.** It saves cookies and localStorage, but apps using HTTP-only cookies, server-side sessions, or complex auth flows may not persist. Tested and failed on:
|
|
126
|
+
**`--session-name` (state save/restore) does NOT work for all apps.** It saves cookies and localStorage, but apps using HTTP-only cookies, server-side sessions, or complex auth flows may not persist. Tested and failed on: example-app-1 (Example Service One / localhost:8083).
|
|
127
127
|
|
|
128
128
|
**`--profile` (persistent Chrome profile) is the reliable approach.** It preserves everything - cookies, localStorage, IndexedDB, cache, service workers. This is what actually works for real apps.
|
|
129
129
|
|
|
@@ -131,10 +131,10 @@ EVALEOF
|
|
|
131
131
|
|
|
132
132
|
| Profile | Service | URL | Command |
|
|
133
133
|
|---------|---------|-----|---------|
|
|
134
|
-
| `
|
|
135
|
-
| `localhost-3000` |
|
|
136
|
-
| `
|
|
137
|
-
| `
|
|
134
|
+
| `example-app-1` | Example Service One | `http://localhost:8083` | `agent-browser --profile ~/.agent-browser/profiles/example-app-1 open http://localhost:8083` |
|
|
135
|
+
| `localhost-3000` | Example Service Two (Clerk auth) | `http://localhost:3000` | `agent-browser --profile ~/.agent-browser/profiles/localhost-3000 open http://localhost:3000` |
|
|
136
|
+
| `local-app-email-profile` | Example Service Three (email login) | `http://localhost:3010` | `agent-browser --profile ~/.agent-browser/profiles/local-app-email-profile open http://localhost:3010` |
|
|
137
|
+
| `local-app-google-profile` | Example Service Three (Google auth) | `http://localhost:3010` | See Google OAuth note below |
|
|
138
138
|
|
|
139
139
|
### Google OAuth Profiles
|
|
140
140
|
|
|
@@ -142,7 +142,7 @@ Google blocks sign-in from the bundled Chromium ("This browser or app may not be
|
|
|
142
142
|
|
|
143
143
|
```bash
|
|
144
144
|
agent-browser \
|
|
145
|
-
--profile ~/.agent-browser/profiles/
|
|
145
|
+
--profile ~/.agent-browser/profiles/local-app-google-profile \
|
|
146
146
|
--executable-path "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
|
|
147
147
|
--args "--disable-blink-features=AutomationControlled" \
|
|
148
148
|
open http://localhost:3010
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
skill: agent-browser
|
|
3
|
+
openrig-relationship: vendored-supplemented
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# OpenRig and this skill
|
|
7
|
+
|
|
8
|
+
## Origin
|
|
9
|
+
|
|
10
|
+
- **Upstream**: Vercel agent-browser CLI (https://github.com/vercel/agent-browser)
|
|
11
|
+
- **Vendoring pattern**: `add-supplementary-files`
|
|
12
|
+
- **Last upstream check**: 2026-05-13 (initial relationship declaration)
|
|
13
|
+
|
|
14
|
+
## How OpenRig uses this skill
|
|
15
|
+
|
|
16
|
+
OpenRig ships `agent-browser` so any agent dispatched by an OpenRig topology can drive a real browser (snapshots, form fills, screenshots, scraping, web-app testing) without operators having to separately install a browser-automation skill. It's referenced from any agent profile whose role includes web work.
|
|
17
|
+
|
|
18
|
+
## OpenRig-specific modifications
|
|
19
|
+
|
|
20
|
+
This is the canonical example of the **add-supplementary-files** pattern (see `writing-skills-for-openrig` SKILL.md §"Vendored skills"). The upstream skill is kept structurally intact; OpenRig adds a companion file that captures local-use insights without polluting the upstream content.
|
|
21
|
+
|
|
22
|
+
| Surface | What changed | Why |
|
|
23
|
+
|---|---|---|
|
|
24
|
+
| `SKILL.md` body | A short "## Local Dev Insights" section was added near the end with an `**IMPORTANT:** Read LOCAL-INSIGHTS.md` pointer. | Without the pointer, agents loading the skill wouldn't know the companion file exists. The pointer is the only structural modification needed for the supplementary pattern to be discoverable. |
|
|
25
|
+
| `LOCAL-INSIGHTS.md` (new sibling, ~189 lines) | Field-tested gotchas, command-compatibility matrices, corrections discovered through hands-on use that the upstream skill doesn't cover. | E.g., not all `get` subcommands accept `@refs` — `get text @e1` works but `get html @e1` fails silently. The compatibility matrix saves agents from the most common confusion class. |
|
|
26
|
+
|
|
27
|
+
Nothing else in `SKILL.md` diverges from upstream content as of the last upstream check.
|
|
28
|
+
|
|
29
|
+
## Companion files
|
|
30
|
+
|
|
31
|
+
- `LOCAL-INSIGHTS.md` — load-bearing supplementary content. The SKILL.md body explicitly points readers here for hands-on gotchas the upstream skill doesn't cover.
|
|
32
|
+
|
|
33
|
+
## When to re-sync upstream
|
|
34
|
+
|
|
35
|
+
Watch for new `agent-browser` CLI releases (Vercel). When the command surface changes meaningfully:
|
|
36
|
+
|
|
37
|
+
1. Re-sync `SKILL.md` body from upstream, preserving the "Local Dev Insights" pointer section.
|
|
38
|
+
2. Update `LOCAL-INSIGHTS.md` compatibility matrix to reflect new behavior (some `get` subcommands may gain `@ref` support, breaking the current matrix).
|
|
39
|
+
3. Bump `last_upstream_check` in `SKILL.md` frontmatter.
|
|
40
|
+
4. Note any structural shape changes in `divergence_notes`.
|
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
name: agent-browser
|
|
3
3
|
description: Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
|
|
4
4
|
allowed-tools: Bash(npx agent-browser:*), Bash(agent-browser:*)
|
|
5
|
+
metadata:
|
|
6
|
+
openrig:
|
|
7
|
+
vendored_from: "Vercel agent-browser (https://github.com/vercel/agent-browser)"
|
|
8
|
+
vendoring_pattern: add-supplementary-files
|
|
9
|
+
last_upstream_check: "2026-05-13 (initial vendoring declaration)"
|
|
10
|
+
divergence_notes: |
|
|
11
|
+
Upstream SKILL.md content tracks upstream; a small "Local Dev Insights"
|
|
12
|
+
pointer section was added near the end of the body to surface the sibling
|
|
13
|
+
LOCAL-INSIGHTS.md companion file. See OPENRIG.md for the full OpenRig
|
|
14
|
+
relationship to this skill.
|
|
5
15
|
---
|
|
6
16
|
|
|
7
17
|
# Browser Automation with agent-browser
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
skill: brainstorming
|
|
3
|
+
openrig-relationship: vendored-modified
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# OpenRig and this skill
|
|
7
|
+
|
|
8
|
+
## Origin
|
|
9
|
+
|
|
10
|
+
- **Upstream**: Obra Superpowers (https://github.com/obra/superpowers)
|
|
11
|
+
- **Vendoring pattern**: `modify-the-file`
|
|
12
|
+
- **Last upstream check**: 2026-05-13 (diff against plugin source pulled 2026-05-11)
|
|
13
|
+
|
|
14
|
+
## How OpenRig uses this skill
|
|
15
|
+
|
|
16
|
+
`brainstorming` is the "intent → design" front of the OpenRig planning chain. Agents use it before any creative or implementation work — to refine user intent into a shareable design doc that downstream skills (`writing-plans`, then `executing-plans`) consume.
|
|
17
|
+
|
|
18
|
+
## OpenRig-specific modifications
|
|
19
|
+
|
|
20
|
+
| Surface | Upstream | OpenRig |
|
|
21
|
+
|---|---|---|
|
|
22
|
+
| Visual Companion offer step | Standalone step #2 in the flow — "offer Visual Companion in its own message before clarifying questions" | **Removed.** OpenRig agents typically operate without a separate visual-companion mode; visual design work routes through dedicated design-pod seats. |
|
|
23
|
+
| Spec self-review step | Step #7 — inline self-review for placeholders/contradictions/scope | **Removed.** Self-review is handled at the rig/orchestration layer (driver/guard pattern + review-lead). |
|
|
24
|
+
| User reviews written spec | Step #8 — pause for user to review the spec file | **Removed.** OpenRig's founder-walk and orchestration gates already cover this checkpoint at a higher level. |
|
|
25
|
+
| Spec save path | `docs/superpowers/specs/YYYY-MM-DD-<topic>-design.md` | `docs/plans/YYYY-MM-DD-<topic>-design.md` (matches OpenRig's `docs/plans/` convention) |
|
|
26
|
+
| Process flow diagram | Includes Visual Companion + Spec self-review nodes | Simplified to remove those nodes; edges rewired |
|
|
27
|
+
|
|
28
|
+
## Why these modifications (inferred)
|
|
29
|
+
|
|
30
|
+
- **Multi-platform / multi-step gates removed**: OpenRig's rig-level orchestration (driver → guard → qa, founder-walks) already provides the checkpoint structure that the upstream skill builds inline. Keeping those steps inside the skill double-gates the work.
|
|
31
|
+
- **`docs/plans/` path**: OpenRig's project structure uses `docs/plans/` as the canonical home for design + implementation plan documents (matches `writing-plans` modification — both are co-ordinated).
|
|
32
|
+
|
|
33
|
+
## Companion files
|
|
34
|
+
|
|
35
|
+
None.
|
|
36
|
+
|
|
37
|
+
## When to re-sync upstream
|
|
38
|
+
|
|
39
|
+
Watch upstream for:
|
|
40
|
+
|
|
41
|
+
- New phases or checkpoints in the brainstorming flow that OpenRig might want to adopt (rare; the skill is structurally stable in upstream).
|
|
42
|
+
- Changes to the brainstorming-to-writing-plans handoff (must stay coordinated with the `writing-plans` modifications).
|
|
43
|
+
|
|
44
|
+
When upstream changes:
|
|
45
|
+
|
|
46
|
+
1. Pull non-conflicting changes into the OpenRig copy.
|
|
47
|
+
2. Preserve the simplified 6-step flow and the `docs/plans/` save path unless founder direction reverses.
|
|
48
|
+
3. Bump `last_upstream_check` in `SKILL.md` frontmatter.
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: brainstorming
|
|
3
3
|
description: "You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation."
|
|
4
|
+
metadata:
|
|
5
|
+
openrig:
|
|
6
|
+
vendored_from: "Obra Superpowers (https://github.com/obra/superpowers)"
|
|
7
|
+
vendoring_pattern: modify-the-file
|
|
8
|
+
last_upstream_check: "2026-05-13 (diff against plugin source pulled 2026-05-11)"
|
|
9
|
+
divergence_notes: |
|
|
10
|
+
Simplified the process flow. Removed the Visual Companion offer step,
|
|
11
|
+
the Spec self-review step, and the User-reviews-spec step (those gates
|
|
12
|
+
are handled at the rig/orchestration layer in OpenRig). Changed plan-
|
|
13
|
+
doc save path from docs/superpowers/specs/ to docs/plans/.
|
|
14
|
+
See OPENRIG.md for full divergence details.
|
|
4
15
|
---
|
|
5
16
|
|
|
6
17
|
# Brainstorming Ideas Into Designs
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
name: dogfood
|
|
3
3
|
description: Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to "dogfood", "QA", "exploratory test", "find issues", "bug hunt", "test this app/site/platform", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.
|
|
4
4
|
allowed-tools: Bash(agent-browser:*), Bash(npx agent-browser:*)
|
|
5
|
+
metadata:
|
|
6
|
+
openrig:
|
|
7
|
+
vendored_from: "Vercel agent-browser ecosystem (https://github.com/vercel/agent-browser)"
|
|
8
|
+
vendoring_pattern: vendored-as-is
|
|
9
|
+
last_upstream_check: "2026-05-13 (diff against ~/.agents/skills/dogfood = identical)"
|
|
5
10
|
---
|
|
6
11
|
|
|
7
12
|
# Dogfood
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
skill: executing-plans
|
|
3
|
+
openrig-relationship: vendored-modified
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# OpenRig and this skill
|
|
7
|
+
|
|
8
|
+
## Origin
|
|
9
|
+
|
|
10
|
+
- **Upstream**: Obra Superpowers (https://github.com/obra/superpowers)
|
|
11
|
+
- **Vendoring pattern**: `modify-the-file`
|
|
12
|
+
- **Last upstream check**: 2026-05-13 (initial relationship declaration)
|
|
13
|
+
|
|
14
|
+
## How OpenRig uses this skill
|
|
15
|
+
|
|
16
|
+
This is the canonical "execute a plan that another seat wrote" skill for OpenRig implementation agents. The driver/guard/qa pattern depends on this skill to keep plan-execution checkpointable and reviewable. Without the batch-with-checkpoint structure, the orchestration loop loses its in-flight review surface.
|
|
17
|
+
|
|
18
|
+
## OpenRig-specific modifications
|
|
19
|
+
|
|
20
|
+
The skill was restructured from upstream's all-tasks-at-once execution shape into a batch-with-checkpoint shape:
|
|
21
|
+
|
|
22
|
+
| Aspect | Upstream | OpenRig |
|
|
23
|
+
|---|---|---|
|
|
24
|
+
| Execution unit | All tasks in plan, sequentially | Batch (default 3 tasks per batch) |
|
|
25
|
+
| Reporting cadence | Once at end (after all tasks complete) | Between every batch |
|
|
26
|
+
| Architect-review surface | None inside the skill | Step 3 "Report" + Step 4 "Continue" cycle |
|
|
27
|
+
| Subagent alternative | Suggests `superpowers:subagent-driven-development` as a better choice when subagents are available | **Removed**. OpenRig topologies already supply separate pods for review; the subagent pointer added cognitive overhead with no win. |
|
|
28
|
+
| Stop conditions | "Hit a blocker" | "Hit a blocker **mid-batch**" |
|
|
29
|
+
| Step 5 "Complete Development" | Step 3 in upstream | Renumbered to Step 5 to make room for the batch-and-report cycle |
|
|
30
|
+
|
|
31
|
+
The `## Integration` section preserves the upstream sub-skill pointers (`using-git-worktrees`, `writing-plans`, `finishing-a-development-branch`) — those are also vendored from obra-superpowers and present in OpenRig under the same names.
|
|
32
|
+
|
|
33
|
+
## Why these modifications
|
|
34
|
+
|
|
35
|
+
- **Batch-and-report cadence fits the OpenRig driver/guard/qa rhythm.** Architect feedback is in-the-loop rather than after-the-fact. A driver who reports between batches gives guard + qa room to surface direction corrections before more work compounds the wrong direction.
|
|
36
|
+
- **The subagent-driven-development pointer doesn't fit the OpenRig posture.** OpenRig already provides parallel-pod review via separate seats; routing through subagents is structurally redundant.
|
|
37
|
+
- **"Mid-batch" precision in stop conditions** matches the batch unit. A driver hitting a blocker between tasks should still report — the unit of "stop and ask" is the batch, not the whole plan.
|
|
38
|
+
|
|
39
|
+
## Companion files
|
|
40
|
+
|
|
41
|
+
None at the moment.
|
|
42
|
+
|
|
43
|
+
## When to re-sync upstream
|
|
44
|
+
|
|
45
|
+
Watch for upstream changes to:
|
|
46
|
+
|
|
47
|
+
- **Plan-execution discipline** — stop conditions, verification rules, blocker-handling cadence.
|
|
48
|
+
- **The relationship to writing-plans + finishing-a-development-branch** — if upstream changes how these compose, OpenRig should consider whether the new shape is worth adopting.
|
|
49
|
+
|
|
50
|
+
When upstream changes:
|
|
51
|
+
|
|
52
|
+
1. Pull non-conflicting changes into the OpenRig copy.
|
|
53
|
+
2. Preserve the batch-with-checkpoint structure unless founder direction reverses.
|
|
54
|
+
3. Re-check that the subagent-alternative pointer hasn't crept back in.
|
|
55
|
+
4. Bump `last_upstream_check` in `SKILL.md` frontmatter.
|
|
56
|
+
5. Note any structural shape changes in `divergence_notes`.
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: executing-plans
|
|
3
3
|
description: Use when you have a written implementation plan to execute in a separate session with review checkpoints
|
|
4
|
+
metadata:
|
|
5
|
+
openrig:
|
|
6
|
+
vendored_from: "Obra Superpowers (https://github.com/obra/superpowers)"
|
|
7
|
+
vendoring_pattern: modify-the-file
|
|
8
|
+
last_upstream_check: "2026-05-13 (initial vendoring declaration)"
|
|
9
|
+
divergence_notes: |
|
|
10
|
+
Restructured from upstream's all-tasks-at-once execution into batch-with-
|
|
11
|
+
checkpoint execution (default 3 tasks per batch + report + continue cycle).
|
|
12
|
+
Removed the upstream suggestion to use superpowers:subagent-driven-development
|
|
13
|
+
as an alternative. See OPENRIG.md for full divergence details.
|
|
4
14
|
---
|
|
5
15
|
|
|
6
16
|
# Executing Plans
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
name: frontend-design
|
|
3
3
|
description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
|
|
4
4
|
license: Complete terms in LICENSE.txt
|
|
5
|
+
metadata:
|
|
6
|
+
openrig:
|
|
7
|
+
vendored_from: "Anthropic skills (Apache 2.0; see LICENSE.txt sibling)"
|
|
8
|
+
vendoring_pattern: vendored-as-is
|
|
9
|
+
last_upstream_check: "2026-05-13 (diff against ~/.claude/skills/frontend-design = identical)"
|
|
5
10
|
---
|
|
6
11
|
|
|
7
12
|
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: systematic-debugging
|
|
3
3
|
description: Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
|
|
4
|
+
metadata:
|
|
5
|
+
openrig:
|
|
6
|
+
vendored_from: "Obra Superpowers (https://github.com/obra/superpowers)"
|
|
7
|
+
vendoring_pattern: vendored-as-is
|
|
8
|
+
last_upstream_check: "2026-05-13 (diff against plugin source pulled 2026-05-11 = identical)"
|
|
4
9
|
---
|
|
5
10
|
|
|
6
11
|
# Systematic Debugging
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: test-driven-development
|
|
3
3
|
description: Use when implementing any feature or bugfix, before writing implementation code
|
|
4
|
+
metadata:
|
|
5
|
+
openrig:
|
|
6
|
+
vendored_from: "Obra Superpowers (https://github.com/obra/superpowers)"
|
|
7
|
+
vendoring_pattern: vendored-as-is
|
|
8
|
+
last_upstream_check: "2026-05-13 (diff against plugin source pulled 2026-05-11 = identical)"
|
|
4
9
|
---
|
|
5
10
|
|
|
6
11
|
# Test-Driven Development (TDD)
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
skill: using-superpowers
|
|
3
|
+
openrig-relationship: vendored-modified
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# OpenRig and this skill
|
|
7
|
+
|
|
8
|
+
## Origin
|
|
9
|
+
|
|
10
|
+
- **Upstream**: Obra Superpowers (https://github.com/obra/superpowers)
|
|
11
|
+
- **Vendoring pattern**: `modify-the-file`
|
|
12
|
+
- **Last upstream check**: 2026-05-13 (diff against plugin source pulled 2026-05-11)
|
|
13
|
+
|
|
14
|
+
## How OpenRig uses this skill
|
|
15
|
+
|
|
16
|
+
`using-superpowers` is the catalog-aware "always reach for a skill before answering" bootstrap. It's loaded into every OpenRig agent's startup context to enforce the discipline that skills must be invoked through the `Skill` tool (not Read'd directly), and that the agent should pattern-match descriptions against the work at hand before producing free-form output.
|
|
17
|
+
|
|
18
|
+
## OpenRig-specific modifications
|
|
19
|
+
|
|
20
|
+
| Surface | Upstream | OpenRig |
|
|
21
|
+
|---|---|---|
|
|
22
|
+
| `<SUBAGENT-STOP>` block | Skip the skill if dispatched as a subagent | **Removed.** OpenRig doesn't use the upstream subagent-dispatch pattern; this directive doesn't fit the rig/pod/seat topology. |
|
|
23
|
+
| Instruction Priority section | 3-tier priority: user > skills > system | **Removed.** OpenRig handles priority at the AgentSpec + agent-startup-content layer, not inside this skill. |
|
|
24
|
+
| Platform-specific sections (Copilot CLI, Gemini CLI) | Each platform gets its own paragraph for how to access skills | **Removed.** OpenRig targets Claude Code + Codex specifically. The Claude Code paragraph is preserved. |
|
|
25
|
+
| Platform Adaptation section | Points to `references/copilot-tools.md` and `references/codex-tools.md` for tool mapping | **Removed.** OpenRig agents don't need the upstream tool-mapping references; the rig spec lists tools directly. |
|
|
26
|
+
|
|
27
|
+
## Why these modifications (inferred)
|
|
28
|
+
|
|
29
|
+
- **Topology mismatch**: OpenRig's subagent model is the rig/pod/seat structure, not the upstream's "dispatch a subagent" pattern. The `<SUBAGENT-STOP>` block would silently skip the skill in seats that should be loading it.
|
|
30
|
+
- **OpenRig is opinionated about target runtimes**: Claude Code + Codex are the supported pair. Multi-platform copy adds cognitive overhead without product value for OpenRig users.
|
|
31
|
+
- **Priority lives at the spec layer**: OpenRig's AgentSpec + startup content (role.md, guidance/, CULTURE.md) is where instruction precedence is encoded; baking it into this skill duplicates the layering.
|
|
32
|
+
|
|
33
|
+
## Companion files
|
|
34
|
+
|
|
35
|
+
None. (Upstream ships `references/copilot-tools.md` and `references/codex-tools.md` but these reference the upstream Copilot tool surface, not OpenRig's. They are not vendored.)
|
|
36
|
+
|
|
37
|
+
## When to re-sync upstream
|
|
38
|
+
|
|
39
|
+
Watch upstream for:
|
|
40
|
+
|
|
41
|
+
- Changes to the core "always invoke a skill" discipline (the heart of the skill).
|
|
42
|
+
- New platforms upstream supports that OpenRig might also want to support — would need to add a corresponding paragraph here.
|
|
43
|
+
|
|
44
|
+
When upstream changes:
|
|
45
|
+
|
|
46
|
+
1. Pull non-conflicting changes into the OpenRig copy.
|
|
47
|
+
2. Do NOT re-introduce the multi-platform sections, SUBAGENT-STOP block, or Instruction Priority section unless founder direction reverses.
|
|
48
|
+
3. Bump `last_upstream_check` in `SKILL.md` frontmatter.
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: using-superpowers
|
|
3
3
|
description: Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions
|
|
4
|
+
metadata:
|
|
5
|
+
openrig:
|
|
6
|
+
vendored_from: "Obra Superpowers (https://github.com/obra/superpowers)"
|
|
7
|
+
vendoring_pattern: modify-the-file
|
|
8
|
+
last_upstream_check: "2026-05-13 (diff against plugin source pulled 2026-05-11)"
|
|
9
|
+
divergence_notes: |
|
|
10
|
+
Removed multi-platform-specific sections (Copilot CLI, Gemini CLI,
|
|
11
|
+
Platform Adaptation) — OpenRig targets Claude Code + Codex. Removed
|
|
12
|
+
the SUBAGENT-STOP block and Instruction Priority section — OpenRig
|
|
13
|
+
handles those concerns at the rig/agent-spec layer.
|
|
14
|
+
See OPENRIG.md for full divergence details.
|
|
4
15
|
---
|
|
5
16
|
|
|
6
17
|
<EXTREMELY-IMPORTANT>
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: verification-before-completion
|
|
3
3
|
description: Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
|
|
4
|
+
metadata:
|
|
5
|
+
openrig:
|
|
6
|
+
vendored_from: "Obra Superpowers (https://github.com/obra/superpowers)"
|
|
7
|
+
vendoring_pattern: vendored-as-is
|
|
8
|
+
last_upstream_check: "2026-05-13 (diff against plugin source pulled 2026-05-11 = identical)"
|
|
4
9
|
---
|
|
5
10
|
|
|
6
11
|
# Verification Before Completion
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
skill: writing-plans
|
|
3
|
+
openrig-relationship: vendored-modified
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# OpenRig and this skill
|
|
7
|
+
|
|
8
|
+
## Origin
|
|
9
|
+
|
|
10
|
+
- **Upstream**: Obra Superpowers (https://github.com/obra/superpowers)
|
|
11
|
+
- **Vendoring pattern**: `modify-the-file`
|
|
12
|
+
- **Last upstream check**: 2026-05-13 (diff against plugin source pulled 2026-05-11)
|
|
13
|
+
|
|
14
|
+
## How OpenRig uses this skill
|
|
15
|
+
|
|
16
|
+
`writing-plans` is the middle step of OpenRig's three-stage implementation flow: `brainstorming` produces the design, `writing-plans` turns the design into a bite-sized task plan, and `executing-plans` (also OpenRig-modified) drives the plan to completion in batches. Driver seats use this skill when authoring plans for guard + qa to review and for downstream drivers to execute.
|
|
17
|
+
|
|
18
|
+
## OpenRig-specific modifications
|
|
19
|
+
|
|
20
|
+
| Surface | Upstream | OpenRig |
|
|
21
|
+
|---|---|---|
|
|
22
|
+
| Plan save path | `docs/superpowers/plans/YYYY-MM-DD-<feature-name>.md` | `docs/plans/YYYY-MM-DD-<feature-name>.md` (matches OpenRig's `docs/plans/` convention; coordinated with the matching change in `brainstorming`) |
|
|
23
|
+
| Scope Check section | Explicit step to break multi-subsystem specs into sub-project specs | **Removed.** OpenRig's slice + mission decomposition (handled at the orchestration layer) already enforces single-coherence scope per plan. |
|
|
24
|
+
| File Structure section | Explicit step to map files-to-be-created/modified with responsibilities before defining tasks | **Removed.** OpenRig drivers work inside an already-scoped slice; file-decomposition decisions live in the slice spec, not the plan. |
|
|
25
|
+
| Worktree context hint | "If working in an isolated worktree, it should have been created via the `superpowers:using-git-worktrees` skill at execution time." | "This should be run in a dedicated worktree (created by brainstorming skill)." — less explicit cross-skill dependency. |
|
|
26
|
+
| "For agentic workers" plan-header pointer | Suggests `superpowers:subagent-driven-development` (recommended) or `superpowers:executing-plans` | "For Claude: REQUIRED SUB-SKILL: Use `superpowers:executing-plans` to implement this plan task-by-task." Removed the subagent-driven-development pointer (consistent with the `executing-plans` modification). |
|
|
27
|
+
| Step tracking syntax | `- [ ] **Step 1: ...**` (checkbox for TodoWrite tracking) | `**Step 1: ...**` (bare bold; OpenRig drivers use their own task-tracking) |
|
|
28
|
+
|
|
29
|
+
## Why these modifications (inferred)
|
|
30
|
+
|
|
31
|
+
- **Path coordination**: `docs/plans/` is OpenRig's canonical home for plan documents. The `brainstorming` skill produces designs at `docs/plans/...-design.md`; `writing-plans` produces plans at `docs/plans/...-feature-name.md`. Same root.
|
|
32
|
+
- **Scope + structure handled higher**: OpenRig's slice spec already constrains scope (one coherent slice) and identifies the touched-file surface. Repeating those checks inside the plan-authoring skill double-gates the work.
|
|
33
|
+
- **No subagent-driven-development pointer**: same reason as the `executing-plans` modification — OpenRig topologies provide parallel-pod review via separate seats; routing through subagents is structurally redundant.
|
|
34
|
+
- **Bare bold step syntax**: OpenRig drivers track progress via the orchestration queue + their own task tooling, not via in-file TodoWrite checkboxes.
|
|
35
|
+
|
|
36
|
+
## Companion files
|
|
37
|
+
|
|
38
|
+
None.
|
|
39
|
+
|
|
40
|
+
## When to re-sync upstream
|
|
41
|
+
|
|
42
|
+
Watch upstream for:
|
|
43
|
+
|
|
44
|
+
- Changes to plan structure or task-granularity guidance.
|
|
45
|
+
- Coordination changes with `brainstorming` and `executing-plans` (this skill is the middle of a 3-skill chain; changes to either end may require this skill to follow).
|
|
46
|
+
|
|
47
|
+
When upstream changes:
|
|
48
|
+
|
|
49
|
+
1. Pull non-conflicting changes into the OpenRig copy.
|
|
50
|
+
2. Preserve the `docs/plans/` save path and the absence of the Scope Check + File Structure sections unless founder direction reverses.
|
|
51
|
+
3. Re-check that the subagent-driven-development pointer hasn't crept back in.
|
|
52
|
+
4. Bump `last_upstream_check` in `SKILL.md` frontmatter.
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: writing-plans
|
|
3
3
|
description: Use when you have a spec or requirements for a multi-step task, before touching code
|
|
4
|
+
metadata:
|
|
5
|
+
openrig:
|
|
6
|
+
vendored_from: "Obra Superpowers (https://github.com/obra/superpowers)"
|
|
7
|
+
vendoring_pattern: modify-the-file
|
|
8
|
+
last_upstream_check: "2026-05-13 (diff against plugin source pulled 2026-05-11)"
|
|
9
|
+
divergence_notes: |
|
|
10
|
+
Removed the Scope Check + File Structure sections, the subagent-driven-
|
|
11
|
+
development sub-skill pointer, and the checkbox-tracking syntax for
|
|
12
|
+
steps. Changed plan-doc save path from docs/superpowers/plans/ to
|
|
13
|
+
docs/plans/. See OPENRIG.md for full divergence details.
|
|
4
14
|
---
|
|
5
15
|
|
|
6
16
|
# Writing Plans
|
|
@@ -107,9 +117,9 @@ After saving the plan, offer execution choice:
|
|
|
107
117
|
**Which approach?"**
|
|
108
118
|
|
|
109
119
|
**If Subagent-Driven chosen:**
|
|
110
|
-
-
|
|
120
|
+
- Spawn a fresh subagent for each task; code-review the result before merging
|
|
111
121
|
- Stay in this session
|
|
112
|
-
-
|
|
122
|
+
- Pair with whatever subagent-orchestration skill your runtime provides (e.g., the Obra Superpowers plugin ships one if you have that plugin installed)
|
|
113
123
|
|
|
114
124
|
**If Parallel Session chosen:**
|
|
115
125
|
- Guide them to open new session in worktree
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
name: advisor.lead
|
|
2
|
+
version: "1.0"
|
|
3
|
+
description: Advisor lead — pilots user intent; figures out what to do, asks the operator or queue worker to actually do it
|
|
4
|
+
|
|
5
|
+
defaults:
|
|
6
|
+
runtime: claude-code
|
|
7
|
+
|
|
8
|
+
imports:
|
|
9
|
+
- ref: local:../../../../../../agents/shared
|
|
10
|
+
|
|
11
|
+
profiles:
|
|
12
|
+
default:
|
|
13
|
+
uses:
|
|
14
|
+
skills: [openrig-user, openrig-architect, brainstorming, requirements-writer]
|
|
15
|
+
guidance: [role]
|
|
16
|
+
subagents: []
|
|
17
|
+
plugins: []
|
|
18
|
+
runtime_resources: [shared:claude-default-settings, shared:claude-default-mcp, shared:codex-default-config]
|
|
19
|
+
|
|
20
|
+
resources:
|
|
21
|
+
guidance:
|
|
22
|
+
- id: role
|
|
23
|
+
path: guidance/role.md
|
|
24
|
+
target: CLAUDE.md
|
|
25
|
+
merge: managed_block
|
|
26
|
+
|
|
27
|
+
startup:
|
|
28
|
+
files:
|
|
29
|
+
- path: guidance/role.md
|
|
30
|
+
delivery_hint: send_text
|
|
31
|
+
required: true
|
|
32
|
+
- path: startup/context.md
|
|
33
|
+
delivery_hint: send_text
|
|
34
|
+
required: true
|
|
35
|
+
actions: []
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Advisor Lead — Role
|
|
2
|
+
|
|
3
|
+
You are the advisor lead of the user's kernel rig. Your job is to
|
|
4
|
+
pilot the user's intent. The user describes what they want, and you
|
|
5
|
+
figure out what that actually means in terms of OpenRig topology, what
|
|
6
|
+
the trade-offs are, who should do which part of the work, and what to
|
|
7
|
+
hand off.
|
|
8
|
+
|
|
9
|
+
## You advise; you do not run things
|
|
10
|
+
|
|
11
|
+
- Bringing rigs up / down / restarting / inspecting health is the
|
|
12
|
+
operator agent's job. Delegate to `operator.agent@kernel`.
|
|
13
|
+
- Classifying stream items into queue work is the queue worker's job.
|
|
14
|
+
Delegate to `queue.worker@kernel`.
|
|
15
|
+
- Implementation work happens in project rigs that the operator
|
|
16
|
+
spins up — you propose those, you do not host them.
|
|
17
|
+
|
|
18
|
+
## Conversation defaults
|
|
19
|
+
|
|
20
|
+
- Start by listening. The user often arrives mid-thought; ask one
|
|
21
|
+
clarifying question, not five.
|
|
22
|
+
- Use the brainstorming skill on novel asks; use requirements-writer
|
|
23
|
+
to crisp up ambiguous intent into something an implementer rig can
|
|
24
|
+
pick up.
|
|
25
|
+
- When the user wants to look at their work, route them at the
|
|
26
|
+
Mission Control / For You / project surfaces in the UI; you don't
|
|
27
|
+
need to recite content the UI already shows.
|
|
28
|
+
|
|
29
|
+
## Topology you can reason about
|
|
30
|
+
|
|
31
|
+
- `openrig-architect` skill is your reference for designing pods +
|
|
32
|
+
edges + agent profiles for new rigs.
|
|
33
|
+
|
|
34
|
+
## Surviving compaction
|
|
35
|
+
|
|
36
|
+
Long advising sessions hit context limits. The discipline is
|
|
37
|
+
externalize-state-to-durable-substrate, not in-context recall:
|
|
38
|
+
recover identity via `rig whoami --json`; recover recent peer
|
|
39
|
+
context via `rig transcript <session> --tail` / `--grep`; recover
|
|
40
|
+
in-flight work via `rig queue list --as <me>`. Hand off load-bearing
|
|
41
|
+
decisions to the queue so a fresh-context advisor can pick them up.
|
|
42
|
+
If the operator has installed a richer compaction-survival skill on
|
|
43
|
+
this host (substrate skill path or `~/.openrig/skills/`), load it
|
|
44
|
+
for more detail.
|
|
45
|
+
|
|
46
|
+
## When you are uncertain
|
|
47
|
+
|
|
48
|
+
Say so plainly. Don't invent topology that isn't there; don't promise
|
|
49
|
+
operator the agent will do something without confirming. Honest gaps
|
|
50
|
+
are easier to fix than confident wrong answers.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Advisor Lead — Startup Context
|
|
2
|
+
|
|
3
|
+
You just booted as part of the user's kernel rig. The user is reading
|
|
4
|
+
this through their terminal or through the Mission Control UI.
|
|
5
|
+
|
|
6
|
+
## First action
|
|
7
|
+
|
|
8
|
+
Introduce yourself in one short paragraph. Tell the user:
|
|
9
|
+
|
|
10
|
+
1. Who you are (`advisor.lead@kernel`) and what you can do for them
|
|
11
|
+
today (pilot intent → route to operator or queue worker, propose
|
|
12
|
+
topology, capture requirements).
|
|
13
|
+
2. That the operator agent is available at `operator.agent@kernel`
|
|
14
|
+
for "bring my rigs back online" / install / topology mutation
|
|
15
|
+
work.
|
|
16
|
+
3. That the queue worker is available at `queue.worker@kernel` for
|
|
17
|
+
classification of stream items.
|
|
18
|
+
|
|
19
|
+
Don't list every skill; the user can ask if they're curious.
|
|
20
|
+
|
|
21
|
+
## What you can assume about the user
|
|
22
|
+
|
|
23
|
+
- The user is on macOS and has Claude Code and/or Codex
|
|
24
|
+
authenticated (otherwise this rig wouldn't have booted).
|
|
25
|
+
- The user knows OpenRig exists but may not remember every rig name
|
|
26
|
+
or command. Pointing them at `rig` CLI verbs as they come up is
|
|
27
|
+
fine; don't dump a manual on them.
|
|
28
|
+
- The user can interrupt you any time. If you're in the middle of a
|
|
29
|
+
multi-step plan and they ask a different question, pivot cleanly.
|
|
30
|
+
|
|
31
|
+
## What's already running
|
|
32
|
+
|
|
33
|
+
- `rig whoami --json` returns your identity.
|
|
34
|
+
- `rig ps --nodes --rig kernel --json` shows the kernel's 4-member
|
|
35
|
+
topology (3 agents + the human marker).
|
|
36
|
+
- The operator agent can answer "what rigs were running before the
|
|
37
|
+
last reboot?" from the daemon's persisted state.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
name: operator.agent
|
|
2
|
+
version: "1.0"
|
|
3
|
+
description: Operator agent — runs OpenRig itself; brings rigs up/down/back-online after reboot; shepherds install + upgrade + migration ceremonies
|
|
4
|
+
|
|
5
|
+
defaults:
|
|
6
|
+
runtime: codex
|
|
7
|
+
|
|
8
|
+
imports:
|
|
9
|
+
- ref: local:../../../../../../agents/shared
|
|
10
|
+
|
|
11
|
+
profiles:
|
|
12
|
+
default:
|
|
13
|
+
uses:
|
|
14
|
+
skills: [openrig-user, openrig-operator, rig-lifecycle, systematic-debugging, verification-before-completion, openrig-installer]
|
|
15
|
+
guidance: [role]
|
|
16
|
+
subagents: []
|
|
17
|
+
plugins: []
|
|
18
|
+
runtime_resources: [shared:claude-default-settings, shared:claude-default-mcp, shared:codex-default-config]
|
|
19
|
+
|
|
20
|
+
resources:
|
|
21
|
+
guidance:
|
|
22
|
+
- id: role
|
|
23
|
+
path: guidance/role.md
|
|
24
|
+
target: AGENTS.md
|
|
25
|
+
merge: managed_block
|
|
26
|
+
|
|
27
|
+
startup:
|
|
28
|
+
files:
|
|
29
|
+
- path: guidance/role.md
|
|
30
|
+
delivery_hint: send_text
|
|
31
|
+
required: true
|
|
32
|
+
- path: startup/context.md
|
|
33
|
+
delivery_hint: send_text
|
|
34
|
+
required: true
|
|
35
|
+
actions: []
|