@openrig/cli 0.2.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 +11 -3
- package/daemon/dist/adapters/claude-code-adapter.d.ts.map +1 -1
- package/daemon/dist/adapters/claude-code-adapter.js +58 -60
- 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/builtins/workflow-specs/basic-loop.yaml +76 -0
- package/daemon/dist/builtins/workflow-specs/conveyor.yaml +80 -0
- package/daemon/dist/db/migrations/026_inbox_entries.d.ts +1 -1
- package/daemon/dist/db/migrations/026_inbox_entries.js +1 -1
- package/daemon/dist/db/migrations/029_classifier_leases.d.ts +1 -1
- package/daemon/dist/db/migrations/029_classifier_leases.js +1 -1
- package/daemon/dist/db/migrations/037_mission_control_actions.d.ts +51 -0
- package/daemon/dist/db/migrations/037_mission_control_actions.d.ts.map +1 -0
- package/daemon/dist/db/migrations/037_mission_control_actions.js +74 -0
- package/daemon/dist/db/migrations/037_mission_control_actions.js.map +1 -0
- package/daemon/dist/db/migrations/038_workspace_primitive.d.ts +16 -0
- package/daemon/dist/db/migrations/038_workspace_primitive.d.ts.map +1 -0
- package/daemon/dist/db/migrations/038_workspace_primitive.js +20 -0
- package/daemon/dist/db/migrations/038_workspace_primitive.js.map +1 -0
- package/daemon/dist/db/migrations/039_queue_target_repo.d.ts +16 -0
- package/daemon/dist/db/migrations/039_queue_target_repo.d.ts.map +1 -0
- package/daemon/dist/db/migrations/039_queue_target_repo.js +21 -0
- package/daemon/dist/db/migrations/039_queue_target_repo.js.map +1 -0
- 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/active-lens-store.d.ts +23 -0
- package/daemon/dist/domain/active-lens-store.d.ts.map +1 -0
- package/daemon/dist/domain/active-lens-store.js +87 -0
- package/daemon/dist/domain/active-lens-store.js.map +1 -0
- package/daemon/dist/domain/agent-images/agent-image-library-service.d.ts +68 -0
- package/daemon/dist/domain/agent-images/agent-image-library-service.d.ts.map +1 -0
- package/daemon/dist/domain/agent-images/agent-image-library-service.js +339 -0
- package/daemon/dist/domain/agent-images/agent-image-library-service.js.map +1 -0
- package/daemon/dist/domain/agent-images/agent-image-types.d.ts +113 -0
- package/daemon/dist/domain/agent-images/agent-image-types.d.ts.map +1 -0
- package/daemon/dist/domain/agent-images/agent-image-types.js +24 -0
- package/daemon/dist/domain/agent-images/agent-image-types.js.map +1 -0
- package/daemon/dist/domain/agent-images/evidence-guard.d.ts +26 -0
- package/daemon/dist/domain/agent-images/evidence-guard.d.ts.map +1 -0
- package/daemon/dist/domain/agent-images/evidence-guard.js +185 -0
- package/daemon/dist/domain/agent-images/evidence-guard.js.map +1 -0
- package/daemon/dist/domain/agent-images/manifest-parser.d.ts +3 -0
- package/daemon/dist/domain/agent-images/manifest-parser.d.ts.map +1 -0
- package/daemon/dist/domain/agent-images/manifest-parser.js +114 -0
- package/daemon/dist/domain/agent-images/manifest-parser.js.map +1 -0
- package/daemon/dist/domain/agent-images/resume-token-discovery.d.ts +28 -0
- package/daemon/dist/domain/agent-images/resume-token-discovery.d.ts.map +1 -0
- package/daemon/dist/domain/agent-images/resume-token-discovery.js +83 -0
- package/daemon/dist/domain/agent-images/resume-token-discovery.js.map +1 -0
- package/daemon/dist/domain/agent-images/snapshot-capturer.d.ts +36 -0
- package/daemon/dist/domain/agent-images/snapshot-capturer.d.ts.map +1 -0
- package/daemon/dist/domain/agent-images/snapshot-capturer.js +58 -0
- package/daemon/dist/domain/agent-images/snapshot-capturer.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/agent-starter-resolver.d.ts +10 -16
- package/daemon/dist/domain/agent-starter-resolver.d.ts.map +1 -1
- package/daemon/dist/domain/agent-starter-resolver.js +11 -13
- package/daemon/dist/domain/agent-starter-resolver.js.map +1 -1
- package/daemon/dist/domain/classifier-lease-manager.d.ts +1 -1
- package/daemon/dist/domain/classifier-lease-manager.js +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/conflict-detector.d.ts.map +1 -1
- package/daemon/dist/domain/conflict-detector.js +6 -3
- package/daemon/dist/domain/conflict-detector.js.map +1 -1
- package/daemon/dist/domain/context-monitor.d.ts +20 -5
- package/daemon/dist/domain/context-monitor.d.ts.map +1 -1
- package/daemon/dist/domain/context-monitor.js +63 -13
- package/daemon/dist/domain/context-monitor.js.map +1 -1
- package/daemon/dist/domain/context-packs/bundle-assembler.d.ts +49 -0
- package/daemon/dist/domain/context-packs/bundle-assembler.d.ts.map +1 -0
- package/daemon/dist/domain/context-packs/bundle-assembler.js +81 -0
- package/daemon/dist/domain/context-packs/bundle-assembler.js.map +1 -0
- package/daemon/dist/domain/context-packs/context-pack-library-service.d.ts +41 -0
- package/daemon/dist/domain/context-packs/context-pack-library-service.d.ts.map +1 -0
- package/daemon/dist/domain/context-packs/context-pack-library-service.js +148 -0
- package/daemon/dist/domain/context-packs/context-pack-library-service.js.map +1 -0
- package/daemon/dist/domain/context-packs/context-pack-types.d.ts +64 -0
- package/daemon/dist/domain/context-packs/context-pack-types.d.ts.map +1 -0
- package/daemon/dist/domain/context-packs/context-pack-types.js +22 -0
- package/daemon/dist/domain/context-packs/context-pack-types.js.map +1 -0
- package/daemon/dist/domain/context-packs/manifest-parser.d.ts +3 -0
- package/daemon/dist/domain/context-packs/manifest-parser.d.ts.map +1 -0
- package/daemon/dist/domain/context-packs/manifest-parser.js +74 -0
- package/daemon/dist/domain/context-packs/manifest-parser.js.map +1 -0
- package/daemon/dist/domain/context-usage-store.d.ts +14 -1
- package/daemon/dist/domain/context-usage-store.d.ts.map +1 -1
- package/daemon/dist/domain/context-usage-store.js +156 -1
- package/daemon/dist/domain/context-usage-store.js.map +1 -1
- package/daemon/dist/domain/files/file-write-service.d.ts +61 -0
- package/daemon/dist/domain/files/file-write-service.d.ts.map +1 -0
- package/daemon/dist/domain/files/file-write-service.js +180 -0
- package/daemon/dist/domain/files/file-write-service.js.map +1 -0
- package/daemon/dist/domain/files/path-safety.d.ts +47 -0
- package/daemon/dist/domain/files/path-safety.d.ts.map +1 -0
- package/daemon/dist/domain/files/path-safety.js +176 -0
- package/daemon/dist/domain/files/path-safety.js.map +1 -0
- package/daemon/dist/domain/graph-projection.d.ts +14 -1
- package/daemon/dist/domain/graph-projection.d.ts.map +1 -1
- package/daemon/dist/domain/graph-projection.js +8 -0
- package/daemon/dist/domain/graph-projection.js.map +1 -1
- package/daemon/dist/domain/install-engine.d.ts.map +1 -1
- package/daemon/dist/domain/install-engine.js +22 -6
- package/daemon/dist/domain/install-engine.js.map +1 -1
- package/daemon/dist/domain/install-verifier.d.ts.map +1 -1
- package/daemon/dist/domain/install-verifier.js +10 -5
- package/daemon/dist/domain/install-verifier.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/managed-blocks.d.ts.map +1 -1
- package/daemon/dist/domain/managed-blocks.js +22 -3
- package/daemon/dist/domain/managed-blocks.js.map +1 -1
- package/daemon/dist/domain/mission-control/audit-browse.d.ts +26 -0
- package/daemon/dist/domain/mission-control/audit-browse.d.ts.map +1 -0
- package/daemon/dist/domain/mission-control/audit-browse.js +101 -0
- package/daemon/dist/domain/mission-control/audit-browse.js.map +1 -0
- package/daemon/dist/domain/mission-control/mission-control-action-log.d.ts +51 -0
- package/daemon/dist/domain/mission-control/mission-control-action-log.d.ts.map +1 -0
- package/daemon/dist/domain/mission-control/mission-control-action-log.js +124 -0
- package/daemon/dist/domain/mission-control/mission-control-action-log.js.map +1 -0
- package/daemon/dist/domain/mission-control/mission-control-fleet-cli-capability.d.ts +131 -0
- package/daemon/dist/domain/mission-control/mission-control-fleet-cli-capability.d.ts.map +1 -0
- package/daemon/dist/domain/mission-control/mission-control-fleet-cli-capability.js +232 -0
- package/daemon/dist/domain/mission-control/mission-control-fleet-cli-capability.js.map +1 -0
- package/daemon/dist/domain/mission-control/mission-control-read-layer.d.ts +90 -0
- package/daemon/dist/domain/mission-control/mission-control-read-layer.d.ts.map +1 -0
- package/daemon/dist/domain/mission-control/mission-control-read-layer.js +279 -0
- package/daemon/dist/domain/mission-control/mission-control-read-layer.js.map +1 -0
- package/daemon/dist/domain/mission-control/mission-control-write-contract.d.ts +69 -0
- package/daemon/dist/domain/mission-control/mission-control-write-contract.d.ts.map +1 -0
- package/daemon/dist/domain/mission-control/mission-control-write-contract.js +302 -0
- package/daemon/dist/domain/mission-control/mission-control-write-contract.js.map +1 -0
- package/daemon/dist/domain/mission-control/notification-adapter-ntfy.d.ts +18 -0
- package/daemon/dist/domain/mission-control/notification-adapter-ntfy.d.ts.map +1 -0
- package/daemon/dist/domain/mission-control/notification-adapter-ntfy.js +48 -0
- package/daemon/dist/domain/mission-control/notification-adapter-ntfy.js.map +1 -0
- package/daemon/dist/domain/mission-control/notification-adapter-types.d.ts +25 -0
- package/daemon/dist/domain/mission-control/notification-adapter-types.d.ts.map +1 -0
- package/daemon/dist/domain/mission-control/notification-adapter-types.js +7 -0
- package/daemon/dist/domain/mission-control/notification-adapter-types.js.map +1 -0
- package/daemon/dist/domain/mission-control/notification-adapter-webhook.d.ts +27 -0
- package/daemon/dist/domain/mission-control/notification-adapter-webhook.d.ts.map +1 -0
- package/daemon/dist/domain/mission-control/notification-adapter-webhook.js +47 -0
- package/daemon/dist/domain/mission-control/notification-adapter-webhook.js.map +1 -0
- package/daemon/dist/domain/mission-control/notification-dispatcher.d.ts +53 -0
- package/daemon/dist/domain/mission-control/notification-dispatcher.d.ts.map +1 -0
- package/daemon/dist/domain/mission-control/notification-dispatcher.js +181 -0
- package/daemon/dist/domain/mission-control/notification-dispatcher.js.map +1 -0
- package/daemon/dist/domain/node-inventory.d.ts.map +1 -1
- package/daemon/dist/domain/node-inventory.js +24 -0
- package/daemon/dist/domain/node-inventory.js.map +1 -1
- package/daemon/dist/domain/node-launcher.d.ts.map +1 -1
- package/daemon/dist/domain/node-launcher.js +7 -5
- package/daemon/dist/domain/node-launcher.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/preview/preview-rate-limiter.d.ts +20 -0
- package/daemon/dist/domain/preview/preview-rate-limiter.d.ts.map +1 -0
- package/daemon/dist/domain/preview/preview-rate-limiter.js +46 -0
- package/daemon/dist/domain/preview/preview-rate-limiter.js.map +1 -0
- package/daemon/dist/domain/profile-resolver.d.ts +8 -3
- package/daemon/dist/domain/profile-resolver.d.ts.map +1 -1
- package/daemon/dist/domain/profile-resolver.js +69 -15
- package/daemon/dist/domain/profile-resolver.js.map +1 -1
- package/daemon/dist/domain/progress/progress-indexer.d.ts +73 -0
- package/daemon/dist/domain/progress/progress-indexer.d.ts.map +1 -0
- package/daemon/dist/domain/progress/progress-indexer.js +210 -0
- package/daemon/dist/domain/progress/progress-indexer.js.map +1 -0
- package/daemon/dist/domain/project-classifier.d.ts +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 +30 -5
- package/daemon/dist/domain/queue-repository.d.ts.map +1 -1
- package/daemon/dist/domain/queue-repository.js +94 -27
- package/daemon/dist/domain/queue-repository.js.map +1 -1
- package/daemon/dist/domain/rehydrate-eligibility.d.ts +16 -0
- package/daemon/dist/domain/rehydrate-eligibility.d.ts.map +1 -0
- package/daemon/dist/domain/rehydrate-eligibility.js +43 -0
- package/daemon/dist/domain/rehydrate-eligibility.js.map +1 -0
- package/daemon/dist/domain/restore-check-service.d.ts.map +1 -1
- package/daemon/dist/domain/restore-check-service.js +19 -6
- package/daemon/dist/domain/restore-check-service.js.map +1 -1
- package/daemon/dist/domain/restore-orchestrator.d.ts.map +1 -1
- package/daemon/dist/domain/restore-orchestrator.js +4 -2
- package/daemon/dist/domain/restore-orchestrator.js.map +1 -1
- package/daemon/dist/domain/rig-repository.d.ts +14 -0
- package/daemon/dist/domain/rig-repository.d.ts.map +1 -1
- package/daemon/dist/domain/rig-repository.js +41 -0
- package/daemon/dist/domain/rig-repository.js.map +1 -1
- package/daemon/dist/domain/rig-teardown.d.ts.map +1 -1
- package/daemon/dist/domain/rig-teardown.js +5 -0
- package/daemon/dist/domain/rig-teardown.js.map +1 -1
- package/daemon/dist/domain/rigspec-codec.d.ts.map +1 -1
- package/daemon/dist/domain/rigspec-codec.js +15 -0
- package/daemon/dist/domain/rigspec-codec.js.map +1 -1
- package/daemon/dist/domain/rigspec-instantiator.d.ts +29 -0
- package/daemon/dist/domain/rigspec-instantiator.d.ts.map +1 -1
- package/daemon/dist/domain/rigspec-instantiator.js +136 -4
- package/daemon/dist/domain/rigspec-instantiator.js.map +1 -1
- package/daemon/dist/domain/rigspec-schema.d.ts.map +1 -1
- package/daemon/dist/domain/rigspec-schema.js +157 -4
- package/daemon/dist/domain/rigspec-schema.js.map +1 -1
- package/daemon/dist/domain/runtime-adapter.d.ts +11 -0
- package/daemon/dist/domain/runtime-adapter.d.ts.map +1 -1
- package/daemon/dist/domain/runtime-adapter.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-discovery.d.ts +51 -0
- package/daemon/dist/domain/skill-discovery.d.ts.map +1 -0
- package/daemon/dist/domain/skill-discovery.js +144 -0
- package/daemon/dist/domain/skill-discovery.js.map +1 -0
- 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-detail-projector.d.ts +182 -0
- package/daemon/dist/domain/slices/slice-detail-projector.d.ts.map +1 -0
- package/daemon/dist/domain/slices/slice-detail-projector.js +508 -0
- package/daemon/dist/domain/slices/slice-detail-projector.js.map +1 -0
- package/daemon/dist/domain/slices/slice-indexer.d.ts +137 -0
- package/daemon/dist/domain/slices/slice-indexer.d.ts.map +1 -0
- package/daemon/dist/domain/slices/slice-indexer.js +585 -0
- package/daemon/dist/domain/slices/slice-indexer.js.map +1 -0
- package/daemon/dist/domain/spec-library-service.d.ts +23 -2
- package/daemon/dist/domain/spec-library-service.d.ts.map +1 -1
- package/daemon/dist/domain/spec-library-service.js +31 -1
- package/daemon/dist/domain/spec-library-service.js.map +1 -1
- package/daemon/dist/domain/spec-library-workflow-scanner.d.ts +124 -0
- package/daemon/dist/domain/spec-library-workflow-scanner.d.ts.map +1 -0
- package/daemon/dist/domain/spec-library-workflow-scanner.js +325 -0
- package/daemon/dist/domain/spec-library-workflow-scanner.js.map +1 -0
- 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/startup-validation.d.ts.map +1 -1
- package/daemon/dist/domain/startup-validation.js +57 -11
- package/daemon/dist/domain/startup-validation.js.map +1 -1
- package/daemon/dist/domain/steering/health-summary.d.ts +39 -0
- package/daemon/dist/domain/steering/health-summary.d.ts.map +1 -0
- package/daemon/dist/domain/steering/health-summary.js +100 -0
- package/daemon/dist/domain/steering/health-summary.js.map +1 -0
- package/daemon/dist/domain/steering/steering-composer.d.ts +102 -0
- package/daemon/dist/domain/steering/steering-composer.d.ts.map +1 -0
- package/daemon/dist/domain/steering/steering-composer.js +263 -0
- package/daemon/dist/domain/steering/steering-composer.js.map +1 -0
- package/daemon/dist/domain/transcript-capture.d.ts.map +1 -1
- package/daemon/dist/domain/transcript-capture.js +7 -4
- package/daemon/dist/domain/transcript-capture.js.map +1 -1
- package/daemon/dist/domain/transcript-rotation.d.ts +29 -0
- package/daemon/dist/domain/transcript-rotation.d.ts.map +1 -0
- package/daemon/dist/domain/transcript-rotation.js +109 -0
- package/daemon/dist/domain/transcript-rotation.js.map +1 -0
- package/daemon/dist/domain/transcript-store.d.ts.map +1 -1
- package/daemon/dist/domain/transcript-store.js +7 -1
- package/daemon/dist/domain/transcript-store.js.map +1 -1
- package/daemon/dist/domain/types.d.ts +128 -9
- package/daemon/dist/domain/types.d.ts.map +1 -1
- package/daemon/dist/domain/types.js +8 -1
- package/daemon/dist/domain/types.js.map +1 -1
- package/daemon/dist/domain/user-settings/settings-store.d.ts +66 -0
- package/daemon/dist/domain/user-settings/settings-store.d.ts.map +1 -0
- package/daemon/dist/domain/user-settings/settings-store.js +546 -0
- package/daemon/dist/domain/user-settings/settings-store.js.map +1 -0
- package/daemon/dist/domain/view-event-bridge.d.ts.map +1 -1
- package/daemon/dist/domain/view-event-bridge.js +2 -3
- package/daemon/dist/domain/view-event-bridge.js.map +1 -1
- package/daemon/dist/domain/whoami-service.d.ts +29 -0
- package/daemon/dist/domain/whoami-service.d.ts.map +1 -1
- package/daemon/dist/domain/whoami-service.js +68 -0
- package/daemon/dist/domain/whoami-service.js.map +1 -1
- package/daemon/dist/domain/workflow/slice-workflow-binding.d.ts +21 -0
- package/daemon/dist/domain/workflow/slice-workflow-binding.d.ts.map +1 -0
- package/daemon/dist/domain/workflow/slice-workflow-binding.js +103 -0
- package/daemon/dist/domain/workflow/slice-workflow-binding.js.map +1 -0
- package/daemon/dist/domain/workflow/slice-workflow-projection.d.ts +81 -0
- package/daemon/dist/domain/workflow/slice-workflow-projection.d.ts.map +1 -0
- package/daemon/dist/domain/workflow/slice-workflow-projection.js +127 -0
- package/daemon/dist/domain/workflow/slice-workflow-projection.js.map +1 -0
- package/daemon/dist/domain/workflow/starter-spec-loader.d.ts +51 -0
- package/daemon/dist/domain/workflow/starter-spec-loader.d.ts.map +1 -0
- package/daemon/dist/domain/workflow/starter-spec-loader.js +140 -0
- package/daemon/dist/domain/workflow/starter-spec-loader.js.map +1 -0
- package/daemon/dist/domain/workflow-projector.js +11 -3
- package/daemon/dist/domain/workflow-projector.js.map +1 -1
- package/daemon/dist/domain/workflow-spec-cache.d.ts +34 -0
- package/daemon/dist/domain/workflow-spec-cache.d.ts.map +1 -1
- package/daemon/dist/domain/workflow-spec-cache.js +121 -15
- package/daemon/dist/domain/workflow-spec-cache.js.map +1 -1
- package/daemon/dist/domain/workspace/default-workspace-scaffold.d.ts +6 -0
- package/daemon/dist/domain/workspace/default-workspace-scaffold.d.ts.map +1 -0
- package/daemon/dist/domain/workspace/default-workspace-scaffold.js +252 -0
- package/daemon/dist/domain/workspace/default-workspace-scaffold.js.map +1 -0
- package/daemon/dist/domain/workspace/frontmatter-validator.d.ts +40 -0
- package/daemon/dist/domain/workspace/frontmatter-validator.d.ts.map +1 -0
- package/daemon/dist/domain/workspace/frontmatter-validator.js +185 -0
- package/daemon/dist/domain/workspace/frontmatter-validator.js.map +1 -0
- 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/domain/workspace/workspace-resolver.d.ts +25 -0
- package/daemon/dist/domain/workspace/workspace-resolver.d.ts.map +1 -0
- package/daemon/dist/domain/workspace/workspace-resolver.js +86 -0
- package/daemon/dist/domain/workspace/workspace-resolver.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 +56 -12
- 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 +91 -0
- package/daemon/dist/middleware/auth-bearer-token.d.ts.map +1 -0
- package/daemon/dist/middleware/auth-bearer-token.js +236 -0
- package/daemon/dist/middleware/auth-bearer-token.js.map +1 -0
- package/daemon/dist/openrig-compat.d.ts +1 -1
- package/daemon/dist/openrig-compat.d.ts.map +1 -1
- package/daemon/dist/openrig-compat.js +6 -4
- package/daemon/dist/openrig-compat.js.map +1 -1
- package/daemon/dist/routes/agent-images.d.ts +8 -0
- package/daemon/dist/routes/agent-images.d.ts.map +1 -0
- package/daemon/dist/routes/agent-images.js +253 -0
- package/daemon/dist/routes/agent-images.js.map +1 -0
- package/daemon/dist/routes/config.d.ts +3 -0
- package/daemon/dist/routes/config.d.ts.map +1 -0
- package/daemon/dist/routes/config.js +109 -0
- package/daemon/dist/routes/config.js.map +1 -0
- package/daemon/dist/routes/context-packs.d.ts +3 -0
- package/daemon/dist/routes/context-packs.d.ts.map +1 -0
- package/daemon/dist/routes/context-packs.js +129 -0
- package/daemon/dist/routes/context-packs.js.map +1 -0
- package/daemon/dist/routes/files.d.ts +17 -0
- package/daemon/dist/routes/files.d.ts.map +1 -0
- package/daemon/dist/routes/files.js +262 -0
- package/daemon/dist/routes/files.js.map +1 -0
- package/daemon/dist/routes/health-summary.d.ts +9 -0
- package/daemon/dist/routes/health-summary.d.ts.map +1 -0
- package/daemon/dist/routes/health-summary.js +33 -0
- package/daemon/dist/routes/health-summary.js.map +1 -0
- 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 +37 -0
- package/daemon/dist/routes/mission-control.d.ts.map +1 -0
- package/daemon/dist/routes/mission-control.js +306 -0
- package/daemon/dist/routes/mission-control.js.map +1 -0
- 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/progress.d.ts +7 -0
- package/daemon/dist/routes/progress.d.ts.map +1 -0
- package/daemon/dist/routes/progress.js +33 -0
- package/daemon/dist/routes/progress.js.map +1 -0
- package/daemon/dist/routes/queue.d.ts.map +1 -1
- package/daemon/dist/routes/queue.js +52 -1
- package/daemon/dist/routes/queue.js.map +1 -1
- 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/rigs.d.ts +3 -0
- package/daemon/dist/routes/rigs.d.ts.map +1 -1
- package/daemon/dist/routes/rigs.js +73 -7
- package/daemon/dist/routes/rigs.js.map +1 -1
- package/daemon/dist/routes/rigspec.js +6 -3
- package/daemon/dist/routes/rigspec.js.map +1 -1
- package/daemon/dist/routes/sessions.d.ts.map +1 -1
- package/daemon/dist/routes/sessions.js +119 -0
- package/daemon/dist/routes/sessions.js.map +1 -1
- 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 +9 -0
- package/daemon/dist/routes/slices.d.ts.map +1 -0
- package/daemon/dist/routes/slices.js +207 -0
- package/daemon/dist/routes/slices.js.map +1 -0
- package/daemon/dist/routes/spec-library.d.ts.map +1 -1
- package/daemon/dist/routes/spec-library.js +87 -5
- package/daemon/dist/routes/spec-library.js.map +1 -1
- package/daemon/dist/routes/steering.d.ts +7 -0
- package/daemon/dist/routes/steering.d.ts.map +1 -0
- package/daemon/dist/routes/steering.js +27 -0
- package/daemon/dist/routes/steering.js.map +1 -0
- package/daemon/dist/routes/up.d.ts.map +1 -1
- package/daemon/dist/routes/up.js +21 -3
- package/daemon/dist/routes/up.js.map +1 -1
- package/daemon/dist/routes/whoami.d.ts.map +1 -1
- package/daemon/dist/routes/whoami.js +6 -1
- package/daemon/dist/routes/whoami.js.map +1 -1
- package/daemon/dist/routes/workflow.d.ts.map +1 -1
- package/daemon/dist/routes/workflow.js +43 -0
- package/daemon/dist/routes/workflow.js.map +1 -1
- package/daemon/dist/routes/workspace.d.ts +3 -0
- package/daemon/dist/routes/workspace.d.ts.map +1 -0
- package/daemon/dist/routes/workspace.js +53 -0
- package/daemon/dist/routes/workspace.js.map +1 -0
- package/daemon/dist/server.d.ts +82 -0
- package/daemon/dist/server.d.ts.map +1 -1
- package/daemon/dist/server.js +82 -1
- package/daemon/dist/server.js.map +1 -1
- package/daemon/dist/startup.d.ts +9 -0
- package/daemon/dist/startup.d.ts.map +1 -1
- package/daemon/dist/startup.js +577 -5
- package/daemon/dist/startup.js.map +1 -1
- package/daemon/docs/reference/agent-spec.md +7 -7
- package/daemon/docs/reference/agent-startup-guide.md +2 -2
- package/daemon/docs/reference/project-workspace.md +102 -0
- package/daemon/specs/agents/apps/vault-specialist/agent.yaml +1 -2
- package/daemon/specs/agents/apps/vault-specialist/guidance/role.md +0 -1
- package/daemon/specs/agents/conveyor/builder/agent.yaml +34 -0
- package/daemon/specs/agents/conveyor/builder/guidance/role.md +31 -0
- package/daemon/specs/agents/conveyor/builder/startup/context.md +9 -0
- package/daemon/specs/agents/conveyor/lead/agent.yaml +34 -0
- package/daemon/specs/agents/conveyor/lead/guidance/role.md +34 -0
- package/daemon/specs/agents/conveyor/lead/startup/context.md +15 -0
- package/daemon/specs/agents/conveyor/planner/agent.yaml +34 -0
- package/daemon/specs/agents/conveyor/planner/guidance/role.md +29 -0
- package/daemon/specs/agents/conveyor/planner/startup/context.md +12 -0
- package/daemon/specs/agents/conveyor/reviewer/agent.yaml +34 -0
- package/daemon/specs/agents/conveyor/reviewer/guidance/role.md +29 -0
- package/daemon/specs/agents/conveyor/reviewer/startup/context.md +10 -0
- package/daemon/specs/agents/design/product-designer/agent.yaml +0 -1
- package/daemon/specs/agents/development/implementer/agent.yaml +1 -2
- package/daemon/specs/agents/development/implementer/guidance/role.md +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 +1 -2
- package/daemon/specs/agents/orchestration/orchestrator/guidance/role.md +2 -3
- 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 -8
- 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 +30 -0
- package/daemon/specs/agents/shared/skills/core/openrig-user-settings/SKILL.md +153 -0
- 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/conveyor/CULTURE.md +34 -0
- package/daemon/specs/rigs/launch/conveyor/README.md +33 -0
- package/daemon/specs/rigs/launch/conveyor/rig.yaml +72 -0
- 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/daemon/specs/rigs/preview/product-team/CULTURE.md +2 -2
- package/daemon/specs/rigs/preview/product-team/rig.yaml +3 -4
- package/dist/commands/agent-image.d.ts +4 -0
- package/dist/commands/agent-image.d.ts.map +1 -0
- package/dist/commands/agent-image.js +352 -0
- package/dist/commands/agent-image.js.map +1 -0
- package/dist/commands/config-init-workspace.d.ts +35 -0
- package/dist/commands/config-init-workspace.d.ts.map +1 -0
- package/dist/commands/config-init-workspace.js +553 -0
- package/dist/commands/config-init-workspace.js.map +1 -0
- package/dist/commands/config.d.ts.map +1 -1
- package/dist/commands/config.js +86 -18
- package/dist/commands/config.js.map +1 -1
- package/dist/commands/context-pack.d.ts +4 -0
- package/dist/commands/context-pack.d.ts.map +1 -0
- package/dist/commands/context-pack.js +357 -0
- package/dist/commands/context-pack.js.map +1 -0
- package/dist/commands/daemon.d.ts.map +1 -1
- package/dist/commands/daemon.js +61 -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/import.d.ts.map +1 -1
- package/dist/commands/import.js +7 -2
- package/dist/commands/import.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/ps.d.ts.map +1 -1
- package/dist/commands/ps.js +173 -14
- package/dist/commands/ps.js.map +1 -1
- package/dist/commands/queue.d.ts.map +1 -1
- package/dist/commands/queue.js +9 -0
- package/dist/commands/queue.js.map +1 -1
- package/dist/commands/send.d.ts +15 -0
- package/dist/commands/send.d.ts.map +1 -1
- package/dist/commands/send.js +32 -1
- package/dist/commands/send.js.map +1 -1
- package/dist/commands/specs.d.ts +4 -2
- package/dist/commands/specs.d.ts.map +1 -1
- package/dist/commands/specs.js +12 -8
- package/dist/commands/specs.js.map +1 -1
- package/dist/commands/up.d.ts.map +1 -1
- package/dist/commands/up.js +30 -4
- package/dist/commands/up.js.map +1 -1
- package/dist/commands/whoami.d.ts.map +1 -1
- package/dist/commands/whoami.js +9 -4
- package/dist/commands/whoami.js.map +1 -1
- package/dist/commands/workflow.d.ts.map +1 -1
- package/dist/commands/workflow.js +37 -0
- package/dist/commands/workflow.js.map +1 -1
- package/dist/commands/workspace.d.ts +6 -0
- package/dist/commands/workspace.d.ts.map +1 -0
- package/dist/commands/workspace.js +83 -0
- package/dist/commands/workspace.js.map +1 -0
- package/dist/config-store.d.ts +90 -1
- package/dist/config-store.d.ts.map +1 -1
- package/dist/config-store.js +477 -42
- package/dist/config-store.js.map +1 -1
- package/dist/daemon-lifecycle.d.ts +42 -1
- package/dist/daemon-lifecycle.d.ts.map +1 -1
- package/dist/daemon-lifecycle.js +98 -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 +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/openrig-compat.d.ts +1 -1
- package/dist/openrig-compat.d.ts.map +1 -1
- package/dist/openrig-compat.js +6 -4
- package/dist/openrig-compat.js.map +1 -1
- package/dist/restore-packet/claude-transcript-parser.js +1 -1
- package/dist/restore-packet/claude-transcript-parser.js.map +1 -1
- package/dist/restore-packet/codex-jsonl-parser.js +1 -1
- package/dist/restore-packet/codex-jsonl-parser.js.map +1 -1
- package/package.json +2 -2
- package/ui/dist/assets/index-C_Q5FczU.css +1 -0
- package/ui/dist/assets/index-Rl3ZBrUg.js +547 -0
- package/ui/dist/graphics/operator-climber-monochrome.png +0 -0
- package/ui/dist/index.html +3 -2
- package/daemon/specs/agents/shared/skills/claude-compact-in-place/SKILL.md +0 -100
- package/daemon/specs/agents/shared/skills/mental-model-ha/SKILL.md +0 -956
- 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-B09doO8H.js +0 -139
- package/ui/dist/assets/index-Dec25siz.css +0 -1
- package/ui/dist/assets/index-GNYaWmBj.js +0 -225
|
@@ -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,34 @@
|
|
|
1
|
+
# Conveyor Culture
|
|
2
|
+
|
|
3
|
+
Conveyor is the small public starter for learning OpenRig workflow motion.
|
|
4
|
+
It is intentionally ordinary: one intake lead, one planner, one builder, and
|
|
5
|
+
one reviewer moving queued work through a clear handoff path.
|
|
6
|
+
|
|
7
|
+
## Responsibilities
|
|
8
|
+
|
|
9
|
+
- Keep every handoff explicit in the queue.
|
|
10
|
+
- Treat queue depth as the backpressure signal.
|
|
11
|
+
- Prefer small packets that can move from intake to review without extra
|
|
12
|
+
coordination ceremony.
|
|
13
|
+
- Use review feedback to improve the next build packet instead of hiding
|
|
14
|
+
defects in chat.
|
|
15
|
+
- Close terminal work with honest closure evidence.
|
|
16
|
+
|
|
17
|
+
## Principles
|
|
18
|
+
|
|
19
|
+
- The workflow is a teaching rig, not a private release factory.
|
|
20
|
+
- Runtime primitives stay generic: queue, workflow, watchdog, project, proof,
|
|
21
|
+
and topology surfaces should all make sense without special background.
|
|
22
|
+
- A user should be able to run multiple conveyor packets at once and understand
|
|
23
|
+
why one station has a deeper queue than another.
|
|
24
|
+
- If a packet is blocked, the owner records the blocker and target instead of
|
|
25
|
+
silently waiting.
|
|
26
|
+
|
|
27
|
+
## Operating Notes
|
|
28
|
+
|
|
29
|
+
- The `conveyor` workflow is the default station pipeline.
|
|
30
|
+
- The `basic-loop` workflow is a slower walkthrough for watching one packet
|
|
31
|
+
move end to end.
|
|
32
|
+
- The review seat may route follow-up work back to the build seat by ordinary
|
|
33
|
+
queue handoff when rework is needed. The default workflow pass path moves
|
|
34
|
+
review to close.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Conveyor Starter
|
|
2
|
+
|
|
3
|
+
Conveyor is the OpenRig 0.3.0 starter rig for learning queue handoffs and
|
|
4
|
+
workflow instances.
|
|
5
|
+
|
|
6
|
+
## Run
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
rig up conveyor
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Workflows
|
|
13
|
+
|
|
14
|
+
- `conveyor`: station pipeline. Multiple packets can be active at once.
|
|
15
|
+
- `basic-loop`: single-work-item walkthrough for watching one packet move
|
|
16
|
+
through the same seats.
|
|
17
|
+
|
|
18
|
+
## Sample Objective
|
|
19
|
+
|
|
20
|
+
Use this as a first packet:
|
|
21
|
+
|
|
22
|
+
```text
|
|
23
|
+
Draft a tiny release-readiness checklist for a command-line tool. Keep it to
|
|
24
|
+
five checks and include one verification command.
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Expected motion:
|
|
28
|
+
|
|
29
|
+
1. `intake-lead@conveyor` clarifies the packet and hands it to planning.
|
|
30
|
+
2. `plan-planner@conveyor` turns it into a small plan.
|
|
31
|
+
3. `build-builder@conveyor` drafts the checklist.
|
|
32
|
+
4. `review-reviewer@conveyor` checks the result.
|
|
33
|
+
5. `intake-lead@conveyor` closes the packet with evidence.
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
version: "0.2"
|
|
2
|
+
name: conveyor
|
|
3
|
+
summary: >
|
|
4
|
+
Launch-grade starter for OpenRig 0.3.0: a compact station pipeline with
|
|
5
|
+
intake, planning, build, and review seats. Use it to watch queued work move
|
|
6
|
+
through handoffs without inheriting any internal release coupling.
|
|
7
|
+
|
|
8
|
+
culture_file: CULTURE.md
|
|
9
|
+
|
|
10
|
+
pods:
|
|
11
|
+
- id: intake
|
|
12
|
+
label: Intake
|
|
13
|
+
members:
|
|
14
|
+
- id: lead
|
|
15
|
+
agent_ref: "local:../../../agents/conveyor/lead"
|
|
16
|
+
runtime: claude-code
|
|
17
|
+
profile: default
|
|
18
|
+
cwd: "."
|
|
19
|
+
edges: []
|
|
20
|
+
|
|
21
|
+
- id: plan
|
|
22
|
+
label: Planning
|
|
23
|
+
members:
|
|
24
|
+
- id: planner
|
|
25
|
+
agent_ref: "local:../../../agents/conveyor/planner"
|
|
26
|
+
runtime: codex
|
|
27
|
+
profile: default
|
|
28
|
+
cwd: "."
|
|
29
|
+
edges: []
|
|
30
|
+
|
|
31
|
+
- id: build
|
|
32
|
+
label: Build
|
|
33
|
+
members:
|
|
34
|
+
- id: builder
|
|
35
|
+
agent_ref: "local:../../../agents/conveyor/builder"
|
|
36
|
+
runtime: claude-code
|
|
37
|
+
profile: default
|
|
38
|
+
cwd: "."
|
|
39
|
+
edges: []
|
|
40
|
+
|
|
41
|
+
- id: review
|
|
42
|
+
label: Review
|
|
43
|
+
members:
|
|
44
|
+
- id: reviewer
|
|
45
|
+
agent_ref: "local:../../../agents/conveyor/reviewer"
|
|
46
|
+
runtime: codex
|
|
47
|
+
profile: default
|
|
48
|
+
cwd: "."
|
|
49
|
+
edges: []
|
|
50
|
+
|
|
51
|
+
edges:
|
|
52
|
+
- kind: delegates_to
|
|
53
|
+
from: intake.lead
|
|
54
|
+
to: plan.planner
|
|
55
|
+
- kind: delegates_to
|
|
56
|
+
from: plan.planner
|
|
57
|
+
to: build.builder
|
|
58
|
+
- kind: delegates_to
|
|
59
|
+
from: build.builder
|
|
60
|
+
to: review.reviewer
|
|
61
|
+
- kind: delegates_to
|
|
62
|
+
from: review.reviewer
|
|
63
|
+
to: build.builder
|
|
64
|
+
- kind: can_observe
|
|
65
|
+
from: review.reviewer
|
|
66
|
+
to: intake.lead
|
|
67
|
+
- kind: can_observe
|
|
68
|
+
from: intake.lead
|
|
69
|
+
to: build.builder
|
|
70
|
+
- kind: can_observe
|
|
71
|
+
from: intake.lead
|
|
72
|
+
to: review.reviewer
|
|
@@ -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: []
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Operator Agent — Role
|
|
2
|
+
|
|
3
|
+
You run OpenRig on behalf of the user. You are paired in the operator
|
|
4
|
+
pod with `operator.human@kernel`, who IS the user; you collaborate
|
|
5
|
+
with them and escalate to them when ops decisions need human approval.
|
|
6
|
+
|
|
7
|
+
## What you do
|
|
8
|
+
|
|
9
|
+
- Bring rigs up and down (`rig up <spec>`, `rig down <rigId>`).
|
|
10
|
+
- Restart work after a reboot. **The kernel is the only auto-start
|
|
11
|
+
rig**; other rigs require explicit operator-initiated restart.
|
|
12
|
+
When the user says "bring my rigs back online":
|
|
13
|
+
1. List rigs that were running pre-reboot using daemon persisted
|
|
14
|
+
state (`rig ps --json --all`) and any operator-saved roster.
|
|
15
|
+
2. Confirm with the user which subset to restart.
|
|
16
|
+
3. Restart each via `rig up <spec>` (or `rig restore <snapshot>`
|
|
17
|
+
if a snapshot exists).
|
|
18
|
+
4. Confirm healthy via `rig ps --nodes --rig <name>`.
|
|
19
|
+
- Inspect topology, transcript, attention queue state, mission
|
|
20
|
+
control views.
|
|
21
|
+
- Shepherd install / upgrade / migration ceremonies. The
|
|
22
|
+
`openrig-installer` skill is your reference for the V0.3.1
|
|
23
|
+
upgrade flow (which includes the substrate-kernel → daemon-managed
|
|
24
|
+
kernel migration as a one-time ceremony — see openrig-installer
|
|
25
|
+
for the canonical steps).
|
|
26
|
+
|
|
27
|
+
## What you do NOT do
|
|
28
|
+
|
|
29
|
+
- Feature work / code implementation. That belongs in project rigs
|
|
30
|
+
that you spin up on the user's behalf, not in the kernel.
|
|
31
|
+
- Decisions with significant blast radius (destroying state,
|
|
32
|
+
force-killing sessions with in-flight work) without human
|
|
33
|
+
approval. Escalate to `operator.human@kernel`.
|
|
34
|
+
|
|
35
|
+
## Failure modes to watch
|
|
36
|
+
|
|
37
|
+
- If a runtime authentication state changes mid-session
|
|
38
|
+
(`claude auth status` or `codex login status` becomes red), surface
|
|
39
|
+
this honestly to the user with the fact + reason + fix pattern;
|
|
40
|
+
don't fall back silently to a half-booted state.
|
|
41
|
+
- If a rig's prior snapshot is missing or corrupted, surface to the
|
|
42
|
+
user before attempting restoration; offer fresh-start as an
|
|
43
|
+
explicit alternative.
|
|
44
|
+
|
|
45
|
+
## When you are uncertain
|
|
46
|
+
|
|
47
|
+
Ask `operator.human@kernel` via `rig send` or via a qitem. The user
|
|
48
|
+
has context you don't (recent reboots, mid-flight migrations, plans
|
|
49
|
+
to scrap a particular rig).
|