@revisium/orchestrator 0.2.0-alpha.3 → 0.2.0-alpha.5
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/README.md +4 -4
- package/control-plane/bootstrap.config.json +108 -550
- package/control-plane/default-playbook/catalog/pipelines.json +446 -1123
- package/control-plane/default-playbook/catalog/roles.json +1 -1
- package/control-plane/default-playbook/catalog/run-profiles.json +338 -0
- package/control-plane/default-playbook/package.json +1 -1
- package/control-plane/default-playbook/playbook.json +2 -1
- package/control-plane/default-playbook/prompts/developer.md +6 -6
- package/control-plane/default-playbook/prompts/integrator.md +1 -1
- package/dist/__generated__/client/browser.js +18 -0
- package/dist/__generated__/client/browser.js.map +1 -0
- package/dist/__generated__/client/client.js +32 -0
- package/dist/__generated__/client/client.js.map +1 -0
- package/dist/__generated__/client/commonInputTypes.js +11 -0
- package/dist/__generated__/client/commonInputTypes.js.map +1 -0
- package/dist/__generated__/client/enums.js +19 -0
- package/dist/__generated__/client/enums.js.map +1 -0
- package/dist/__generated__/client/internal/class.js +53 -0
- package/dist/__generated__/client/internal/class.js.map +1 -0
- package/dist/__generated__/client/internal/prismaNamespace.js +450 -0
- package/dist/__generated__/client/internal/prismaNamespace.js.map +1 -0
- package/dist/__generated__/client/internal/prismaNamespaceBrowser.js +421 -0
- package/dist/__generated__/client/internal/prismaNamespaceBrowser.js.map +1 -0
- package/dist/__generated__/client/models/Branch.js +2 -0
- package/dist/__generated__/client/models/Branch.js.map +1 -0
- package/dist/__generated__/client/models/CostLedgerEntry.js +2 -0
- package/dist/__generated__/client/models/CostLedgerEntry.js.map +1 -0
- package/dist/__generated__/client/models/FileBlob.js +2 -0
- package/dist/__generated__/client/models/FileBlob.js.map +1 -0
- package/dist/__generated__/client/models/InboxItem.js +2 -0
- package/dist/__generated__/client/models/InboxItem.js.map +1 -0
- package/dist/__generated__/client/models/ProjectFileUsage.js +2 -0
- package/dist/__generated__/client/models/ProjectFileUsage.js.map +1 -0
- package/dist/__generated__/client/models/Revision.js +2 -0
- package/dist/__generated__/client/models/Revision.js.map +1 -0
- package/dist/__generated__/client/models/RevoProject.js +2 -0
- package/dist/__generated__/client/models/RevoProject.js.map +1 -0
- package/dist/__generated__/client/models/Row.js +2 -0
- package/dist/__generated__/client/models/Row.js.map +1 -0
- package/dist/__generated__/client/models/RunAttempt.js +2 -0
- package/dist/__generated__/client/models/RunAttempt.js.map +1 -0
- package/dist/__generated__/client/models/RunEvent.js +2 -0
- package/dist/__generated__/client/models/RunEvent.js.map +1 -0
- package/dist/__generated__/client/models/RunOutput.js +2 -0
- package/dist/__generated__/client/models/RunOutput.js.map +1 -0
- package/dist/__generated__/client/models/RunTask.js +2 -0
- package/dist/__generated__/client/models/RunTask.js.map +1 -0
- package/dist/__generated__/client/models/Table.js +2 -0
- package/dist/__generated__/client/models/Table.js.map +1 -0
- package/dist/__generated__/client/models/TableMigration.js +2 -0
- package/dist/__generated__/client/models/TableMigration.js.map +1 -0
- package/dist/__generated__/client/models/TaskRun.js +2 -0
- package/dist/__generated__/client/models/TaskRun.js.map +1 -0
- package/dist/__generated__/client/models.js +2 -0
- package/dist/__generated__/client/models.js.map +1 -0
- package/dist/api/graphql-api/graphql-ws/pubsub.module.js +2 -1
- package/dist/api/graphql-api/graphql-ws/pubsub.module.js.map +1 -1
- package/dist/api/graphql-api/graphql-ws/subscription-bridge.service.js +110 -28
- package/dist/api/graphql-api/graphql-ws/subscription-bridge.service.js.map +1 -1
- package/dist/api/graphql-api/graphql-ws/subscription-mappers.js +3 -1
- package/dist/api/graphql-api/graphql-ws/subscription-mappers.js.map +1 -1
- package/dist/api/graphql-api/inbox/inputs/resolve-gate.input.js +9 -0
- package/dist/api/graphql-api/inbox/inputs/resolve-gate.input.js.map +1 -1
- package/dist/api/graphql-api/method/inputs/create-run-profile.input.js +54 -0
- package/dist/api/graphql-api/method/inputs/create-run-profile.input.js.map +1 -0
- package/dist/api/graphql-api/method/inputs/deprecate-run-profile.input.js +37 -0
- package/dist/api/graphql-api/method/inputs/deprecate-run-profile.input.js.map +1 -0
- package/dist/api/graphql-api/method/inputs/get-run-profile.input.js +32 -0
- package/dist/api/graphql-api/method/inputs/get-run-profile.input.js.map +1 -0
- package/dist/api/graphql-api/method/inputs/list-run-profiles.input.js +33 -0
- package/dist/api/graphql-api/method/inputs/list-run-profiles.input.js.map +1 -0
- package/dist/api/graphql-api/method/inputs/update-run-profile.input.js +59 -0
- package/dist/api/graphql-api/method/inputs/update-run-profile.input.js.map +1 -0
- package/dist/api/graphql-api/method/inputs/validate-run-profile.input.js +33 -0
- package/dist/api/graphql-api/method/inputs/validate-run-profile.input.js.map +1 -0
- package/dist/api/graphql-api/method/method.resolver.js +76 -1
- package/dist/api/graphql-api/method/method.resolver.js.map +1 -1
- package/dist/api/graphql-api/method/model/run-profile-connection.model.js +16 -0
- package/dist/api/graphql-api/method/model/run-profile-connection.model.js.map +1 -0
- package/dist/api/graphql-api/method/model/run-profile-status.model.js +6 -0
- package/dist/api/graphql-api/method/model/run-profile-status.model.js.map +1 -0
- package/dist/api/graphql-api/method/model/run-profile.model.js +79 -0
- package/dist/api/graphql-api/method/model/run-profile.model.js.map +1 -0
- package/dist/api/graphql-api/pr/inputs/pr-readiness.input.js +6 -0
- package/dist/api/graphql-api/pr/inputs/pr-readiness.input.js.map +1 -1
- package/dist/api/graphql-api/registerGraphqlEnums.js +6 -0
- package/dist/api/graphql-api/registerGraphqlEnums.js.map +1 -1
- package/dist/api/graphql-api/runs/inputs/create-run.input.js +17 -1
- package/dist/api/graphql-api/runs/inputs/create-run.input.js.map +1 -1
- package/dist/api/graphql-api/runs/inputs/simulate-route.input.js +11 -1
- package/dist/api/graphql-api/runs/inputs/simulate-route.input.js.map +1 -1
- package/dist/api/graphql-api/runs/model/run-workflow.model.js +5 -0
- package/dist/api/graphql-api/runs/model/run-workflow.model.js.map +1 -1
- package/dist/api/graphql-api/share/model/issue-action.model.js +7 -0
- package/dist/api/graphql-api/share/model/issue-action.model.js.map +1 -0
- package/dist/cli/commands/doctor-report.js +1 -13
- package/dist/cli/commands/doctor-report.js.map +1 -1
- package/dist/cli/commands/lifecycle.js +50 -65
- package/dist/cli/commands/lifecycle.js.map +1 -1
- package/dist/cli/commands/{revisium-helpers.js → process-helpers.js} +1 -24
- package/dist/cli/commands/process-helpers.js.map +1 -0
- package/dist/config.js +17 -55
- package/dist/config.js.map +1 -1
- package/dist/control-plane/bootstrap-json-validator.js +65 -0
- package/dist/control-plane/bootstrap-json-validator.js.map +1 -0
- package/dist/control-plane/bootstrap.js +25 -38
- package/dist/control-plane/bootstrap.js.map +1 -1
- package/dist/control-plane/change-notifications.js +45 -14
- package/dist/control-plane/change-notifications.js.map +1 -1
- package/dist/control-plane/data-access.js +1 -106
- package/dist/control-plane/data-access.js.map +1 -1
- package/dist/control-plane/default-playbook-policy.js +488 -94
- package/dist/control-plane/default-playbook-policy.js.map +1 -1
- package/dist/control-plane/definitions.js +4 -5
- package/dist/control-plane/definitions.js.map +1 -1
- package/dist/control-plane/engine-transport.js +383 -0
- package/dist/control-plane/engine-transport.js.map +1 -0
- package/dist/control-plane/inbox.js +15 -7
- package/dist/control-plane/inbox.js.map +1 -1
- package/dist/control-plane/index.js +0 -1
- package/dist/control-plane/index.js.map +1 -1
- package/dist/control-plane/json-fields.js +1 -1
- package/dist/control-plane/json-fields.js.map +1 -1
- package/dist/control-plane/merge-override-audit.js +2 -2
- package/dist/control-plane/merge-override-audit.js.map +1 -1
- package/dist/control-plane/pipeline-coverage-registry.js +486 -0
- package/dist/control-plane/pipeline-coverage-registry.js.map +1 -0
- package/dist/control-plane/query-types.js +2 -0
- package/dist/control-plane/query-types.js.map +1 -0
- package/dist/control-plane/run-profiles.js +175 -0
- package/dist/control-plane/run-profiles.js.map +1 -0
- package/dist/control-plane/schema-migration.js +0 -35
- package/dist/control-plane/schema-migration.js.map +1 -1
- package/dist/control-plane/seed-default-playbook.js +2 -31
- package/dist/control-plane/seed-default-playbook.js.map +1 -1
- package/dist/control-plane/tables.js +8 -0
- package/dist/control-plane/tables.js.map +1 -1
- package/dist/control-plane/transport.js +16 -0
- package/dist/control-plane/transport.js.map +1 -0
- package/dist/control-plane/versioned-meaning.js +72 -15
- package/dist/control-plane/versioned-meaning.js.map +1 -1
- package/dist/e2e/kit/agents.js +63 -8
- package/dist/e2e/kit/agents.js.map +1 -1
- package/dist/e2e/kit/assertions.js +15 -3
- package/dist/e2e/kit/assertions.js.map +1 -1
- package/dist/e2e/kit/crash.js +8 -4
- package/dist/e2e/kit/crash.js.map +1 -1
- package/dist/e2e/kit/drive.js +46 -11
- package/dist/e2e/kit/drive.js.map +1 -1
- package/dist/e2e/kit/env.js +17 -1
- package/dist/e2e/kit/env.js.map +1 -1
- package/dist/e2e/kit/fake-integrator.js +9 -22
- package/dist/e2e/kit/fake-integrator.js.map +1 -1
- package/dist/e2e/kit/gh-emulator.js +166 -26
- package/dist/e2e/kit/gh-emulator.js.map +1 -1
- package/dist/e2e/kit/harness.js +44 -10
- package/dist/e2e/kit/harness.js.map +1 -1
- package/dist/e2e/kit/index.js +2 -0
- package/dist/e2e/kit/index.js.map +1 -1
- package/dist/e2e/kit/run-profiles.js +50 -0
- package/dist/e2e/kit/run-profiles.js.map +1 -0
- package/dist/e2e/kit/scenario.js +207 -0
- package/dist/e2e/kit/scenario.js.map +1 -0
- package/dist/e2e/kit/scenarios.js +38 -45
- package/dist/e2e/kit/scenarios.js.map +1 -1
- package/dist/e2e/recovery-crash-child.js +2 -2
- package/dist/e2e/recovery-crash-child.js.map +1 -1
- package/dist/e2e/recovery-dd-crash-child.js +8 -6
- package/dist/e2e/recovery-dd-crash-child.js.map +1 -1
- package/dist/engine/dbos.service.js +8 -1
- package/dist/engine/dbos.service.js.map +1 -1
- package/dist/features/inbox/commands/impl/resolve-gate.command.js.map +1 -1
- package/dist/features/method/commands/handlers/method-command.handlers.js +64 -0
- package/dist/features/method/commands/handlers/method-command.handlers.js.map +1 -0
- package/dist/features/method/commands/impl/create-run-profile.command.js +7 -0
- package/dist/features/method/commands/impl/create-run-profile.command.js.map +1 -0
- package/dist/features/method/commands/impl/deprecate-run-profile.command.js +7 -0
- package/dist/features/method/commands/impl/deprecate-run-profile.command.js.map +1 -0
- package/dist/features/method/commands/impl/update-run-profile.command.js +7 -0
- package/dist/features/method/commands/impl/update-run-profile.command.js.map +1 -0
- package/dist/features/method/commands/index.js +6 -1
- package/dist/features/method/commands/index.js.map +1 -1
- package/dist/features/method/method-api.service.js +31 -3
- package/dist/features/method/method-api.service.js.map +1 -1
- package/dist/features/method/queries/handlers/method-query.handlers.js +58 -1
- package/dist/features/method/queries/handlers/method-query.handlers.js.map +1 -1
- package/dist/features/method/queries/impl/get-run-profile.query.js +7 -0
- package/dist/features/method/queries/impl/get-run-profile.query.js.map +1 -0
- package/dist/features/method/queries/impl/list-run-profiles.query.js +7 -0
- package/dist/features/method/queries/impl/list-run-profiles.query.js.map +1 -0
- package/dist/features/method/queries/impl/validate-run-profile.query.js +7 -0
- package/dist/features/method/queries/impl/validate-run-profile.query.js.map +1 -0
- package/dist/features/method/queries/index.js +4 -1
- package/dist/features/method/queries/index.js.map +1 -1
- package/dist/features/pr/queries/impl/get-pr-readiness.query.js.map +1 -1
- package/dist/features/runs/commands/impl/create-run.command.js.map +1 -1
- package/dist/features/runs/queries/impl/simulate-route.query.js.map +1 -1
- package/dist/features/shared/connection.js +6 -3
- package/dist/features/shared/connection.js.map +1 -1
- package/dist/host/daemon.js +32 -8
- package/dist/host/daemon.js.map +1 -1
- package/dist/host/ensure-host.js +3 -3
- package/dist/host/ensure-host.js.map +1 -1
- package/dist/host/host-runtime.js.map +1 -1
- package/dist/host/host.lifecycle.js +3 -16
- package/dist/host/host.lifecycle.js.map +1 -1
- package/dist/http/graphql-host.js +17 -8
- package/dist/http/graphql-host.js.map +1 -1
- package/dist/mcp/mcp-capabilities.js +8 -2
- package/dist/mcp/mcp-capabilities.js.map +1 -1
- package/dist/mcp/mcp-facade.service.js +53 -10
- package/dist/mcp/mcp-facade.service.js.map +1 -1
- package/dist/mcp/mcp-tool-result.js +22 -0
- package/dist/mcp/mcp-tool-result.js.map +1 -0
- package/dist/mcp/mcp-tools.js +108 -1
- package/dist/mcp/mcp-tools.js.map +1 -1
- package/dist/pipeline/await-human.js +27 -8
- package/dist/pipeline/await-human.js.map +1 -1
- package/dist/pipeline/data-driven-task.workflow.js +573 -105
- package/dist/pipeline/data-driven-task.workflow.js.map +1 -1
- package/dist/pipeline/pipeline.service.js +28 -12
- package/dist/pipeline/pipeline.service.js.map +1 -1
- package/dist/pipeline/route-contract.js +80 -39
- package/dist/pipeline/route-contract.js.map +1 -1
- package/dist/pipeline-core/condition-scopes.js +15 -0
- package/dist/pipeline-core/condition-scopes.js.map +1 -0
- package/dist/pipeline-core/index.js +2 -0
- package/dist/pipeline-core/index.js.map +1 -1
- package/dist/pipeline-core/kit/fixtures.js +81 -44
- package/dist/pipeline-core/kit/fixtures.js.map +1 -1
- package/dist/pipeline-core/materialize.js +221 -0
- package/dist/pipeline-core/materialize.js.map +1 -0
- package/dist/pipeline-core/types.js +5 -0
- package/dist/pipeline-core/types.js.map +1 -1
- package/dist/pipeline-core/validate-loops.js +2 -15
- package/dist/pipeline-core/validate-loops.js.map +1 -1
- package/dist/pipeline-core/validate-resilience.js +257 -0
- package/dist/pipeline-core/validate-resilience.js.map +1 -0
- package/dist/pipeline-core/validate.js +2 -0
- package/dist/pipeline-core/validate.js.map +1 -1
- package/dist/playbook/catalog-loader.js +40 -3
- package/dist/playbook/catalog-loader.js.map +1 -1
- package/dist/playbook/catalog-schema-validator.js +468 -0
- package/dist/playbook/catalog-schema-validator.js.map +1 -0
- package/dist/playbook/import-mapper.js +55 -3
- package/dist/playbook/import-mapper.js.map +1 -1
- package/dist/playbook/manifest.js +5 -0
- package/dist/playbook/manifest.js.map +1 -1
- package/dist/playbook/playbook-installer.js +17 -1
- package/dist/playbook/playbook-installer.js.map +1 -1
- package/dist/poller/pr-readiness-core.js +257 -93
- package/dist/poller/pr-readiness-core.js.map +1 -1
- package/dist/poller/pr-readiness.js +2 -2
- package/dist/poller/pr-readiness.js.map +1 -1
- package/dist/revisium/inbox.service.js +8 -8
- package/dist/revisium/inbox.service.js.map +1 -1
- package/dist/revisium/playbooks.service.js +311 -21
- package/dist/revisium/playbooks.service.js.map +1 -1
- package/dist/revisium/revisium.module.js +8 -8
- package/dist/revisium/revisium.module.js.map +1 -1
- package/dist/revisium/roles.service.js +3 -1
- package/dist/revisium/roles.service.js.map +1 -1
- package/dist/revisium/run.service.js +9 -8
- package/dist/revisium/run.service.js.map +1 -1
- package/dist/revisium/tokens.js +0 -1
- package/dist/revisium/tokens.js.map +1 -1
- package/dist/run/create-run.js +1 -4
- package/dist/run/create-run.js.map +1 -1
- package/dist/run/inspect-run.js +33 -29
- package/dist/run/inspect-run.js.map +1 -1
- package/dist/run/issue-ref.js +97 -2
- package/dist/run/issue-ref.js.map +1 -1
- package/dist/run/prisma-runtime-data-access.js +616 -0
- package/dist/run/prisma-runtime-data-access.js.map +1 -0
- package/dist/run/run-outputs.js +39 -14
- package/dist/run/run-outputs.js.map +1 -1
- package/dist/run/terminal-run-status.js.map +1 -1
- package/dist/runners/gh-identity.js +29 -7
- package/dist/runners/gh-identity.js.map +1 -1
- package/dist/runners/integrator.js +692 -89
- package/dist/runners/integrator.js.map +1 -1
- package/dist/runners/worktree.service.js +10 -8
- package/dist/runners/worktree.service.js.map +1 -1
- package/dist/schema/ajv-errors.js +15 -0
- package/dist/schema/ajv-errors.js.map +1 -0
- package/dist/smoke/isolation.js +7 -16
- package/dist/smoke/isolation.js.map +1 -1
- package/dist/storage/ensure-storage.js +118 -0
- package/dist/storage/ensure-storage.js.map +1 -0
- package/dist/storage/revo-database.js +39 -0
- package/dist/storage/revo-database.js.map +1 -0
- package/dist/storage/revo-prisma.service.js +31 -0
- package/dist/storage/revo-prisma.service.js.map +1 -0
- package/dist/storage/revo-storage.module.js +18 -0
- package/dist/storage/revo-storage.module.js.map +1 -0
- package/dist/task-control-plane/pr-readiness.service.js +5 -2
- package/dist/task-control-plane/pr-readiness.service.js.map +1 -1
- package/dist/task-control-plane/run-watch.service.js +3 -6
- package/dist/task-control-plane/run-watch.service.js.map +1 -1
- package/dist/task-control-plane/task-control-plane-api.service.js +518 -85
- package/dist/task-control-plane/task-control-plane-api.service.js.map +1 -1
- package/dist/testing/runtime-data-access.js +175 -0
- package/dist/testing/runtime-data-access.js.map +1 -0
- package/dist/worker/build-context.js +178 -2
- package/dist/worker/build-context.js.map +1 -1
- package/dist/worker/claude-code-runner.js +23 -6
- package/dist/worker/claude-code-runner.js.map +1 -1
- package/dist/worker/codex-runner.js +6 -1
- package/dist/worker/codex-runner.js.map +1 -1
- package/package.json +20 -7
- package/prisma/migrations/20260707080500_initial_schema/migration.sql +259 -0
- package/prisma/migrations/20260707103000_prisma_runtime_tables/migration.sql +234 -0
- package/prisma/migrations/migration_lock.toml +3 -0
- package/prisma/schema.prisma +338 -0
- package/prisma.config.ts +11 -0
- package/dist/cli/commands/revisium-helpers.js.map +0 -1
- package/dist/control-plane/client-transport.js +0 -168
- package/dist/control-plane/client-transport.js.map +0 -1
- package/dist/engine/ensure-postgres.js +0 -46
- package/dist/engine/ensure-postgres.js.map +0 -1
- package/dist/host/ensure-revisium.js +0 -135
- package/dist/host/ensure-revisium.js.map +0 -1
- package/revisium.config.json +0 -10
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "claude-standard",
|
|
4
|
+
"pipelineId": "feature-development",
|
|
5
|
+
"schemaVersion": "run-profile/v1",
|
|
6
|
+
"version": "1",
|
|
7
|
+
"displayName": "Claude standard",
|
|
8
|
+
"summary": "Claude Code for feature-development agent slots with the default single-review topology.",
|
|
9
|
+
"topology": {
|
|
10
|
+
"stages": {
|
|
11
|
+
"planReviewer": {
|
|
12
|
+
"mode": "single"
|
|
13
|
+
},
|
|
14
|
+
"codeReview": {
|
|
15
|
+
"mode": "single"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"bindings": {
|
|
20
|
+
"slots": {
|
|
21
|
+
"orchestrator": {
|
|
22
|
+
"runnerId": "claude-code",
|
|
23
|
+
"modelLevel": "deep"
|
|
24
|
+
},
|
|
25
|
+
"analyst": {
|
|
26
|
+
"runnerId": "claude-code",
|
|
27
|
+
"modelLevel": "deep"
|
|
28
|
+
},
|
|
29
|
+
"reviewer": {
|
|
30
|
+
"runnerId": "claude-code",
|
|
31
|
+
"modelLevel": "deep"
|
|
32
|
+
},
|
|
33
|
+
"developer": {
|
|
34
|
+
"runnerId": "claude-code",
|
|
35
|
+
"modelLevel": "standard",
|
|
36
|
+
"permissionMode": "acceptEdits"
|
|
37
|
+
},
|
|
38
|
+
"triager": {
|
|
39
|
+
"runnerId": "claude-code",
|
|
40
|
+
"modelLevel": "deep"
|
|
41
|
+
},
|
|
42
|
+
"watcher": {
|
|
43
|
+
"runnerId": "claude-code",
|
|
44
|
+
"modelLevel": "cheap"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"status": "active"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "codex-standard",
|
|
52
|
+
"pipelineId": "feature-development",
|
|
53
|
+
"schemaVersion": "run-profile/v1",
|
|
54
|
+
"version": "1",
|
|
55
|
+
"displayName": "Codex standard",
|
|
56
|
+
"summary": "Codex for feature-development agent slots with the default single-review topology.",
|
|
57
|
+
"topology": {
|
|
58
|
+
"stages": {
|
|
59
|
+
"planReviewer": {
|
|
60
|
+
"mode": "single"
|
|
61
|
+
},
|
|
62
|
+
"codeReview": {
|
|
63
|
+
"mode": "single"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"bindings": {
|
|
68
|
+
"slots": {
|
|
69
|
+
"orchestrator": {
|
|
70
|
+
"runnerId": "codex",
|
|
71
|
+
"modelLevel": "codex-deep"
|
|
72
|
+
},
|
|
73
|
+
"analyst": {
|
|
74
|
+
"runnerId": "codex",
|
|
75
|
+
"modelLevel": "codex-deep",
|
|
76
|
+
"permissionMode": "workspace-write"
|
|
77
|
+
},
|
|
78
|
+
"reviewer": {
|
|
79
|
+
"runnerId": "codex",
|
|
80
|
+
"modelLevel": "codex-deep"
|
|
81
|
+
},
|
|
82
|
+
"developer": {
|
|
83
|
+
"runnerId": "codex",
|
|
84
|
+
"modelLevel": "codex-standard",
|
|
85
|
+
"permissionMode": "workspace-write"
|
|
86
|
+
},
|
|
87
|
+
"triager": {
|
|
88
|
+
"runnerId": "codex",
|
|
89
|
+
"modelLevel": "codex-deep"
|
|
90
|
+
},
|
|
91
|
+
"watcher": {
|
|
92
|
+
"runnerId": "codex",
|
|
93
|
+
"modelLevel": "codex-standard"
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"status": "active"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "codex-primary-claude-review-consensus",
|
|
101
|
+
"pipelineId": "feature-development",
|
|
102
|
+
"schemaVersion": "run-profile/v1",
|
|
103
|
+
"version": "1",
|
|
104
|
+
"displayName": "Codex primary, Claude review consensus",
|
|
105
|
+
"summary": "Codex is primary for analysis and development; Codex plus Claude run parallel consensus for plan and code review.",
|
|
106
|
+
"topology": {
|
|
107
|
+
"stages": {
|
|
108
|
+
"planReviewer": {
|
|
109
|
+
"mode": "consensus",
|
|
110
|
+
"branches": 2
|
|
111
|
+
},
|
|
112
|
+
"codeReview": {
|
|
113
|
+
"mode": "consensus",
|
|
114
|
+
"branches": 2
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"bindings": {
|
|
119
|
+
"slots": {
|
|
120
|
+
"orchestrator": {
|
|
121
|
+
"runnerId": "codex",
|
|
122
|
+
"modelLevel": "codex-deep"
|
|
123
|
+
},
|
|
124
|
+
"analyst": {
|
|
125
|
+
"runnerId": "codex",
|
|
126
|
+
"modelLevel": "codex-deep",
|
|
127
|
+
"permissionMode": "workspace-write"
|
|
128
|
+
},
|
|
129
|
+
"developer": {
|
|
130
|
+
"runnerId": "codex",
|
|
131
|
+
"modelLevel": "codex-standard",
|
|
132
|
+
"permissionMode": "workspace-write"
|
|
133
|
+
},
|
|
134
|
+
"triager": {
|
|
135
|
+
"runnerId": "codex",
|
|
136
|
+
"modelLevel": "codex-deep"
|
|
137
|
+
},
|
|
138
|
+
"watcher": {
|
|
139
|
+
"runnerId": "codex",
|
|
140
|
+
"modelLevel": "codex-standard"
|
|
141
|
+
},
|
|
142
|
+
"planReviewPrimary": {
|
|
143
|
+
"runnerId": "codex",
|
|
144
|
+
"modelLevel": "codex-deep"
|
|
145
|
+
},
|
|
146
|
+
"planReviewSecondary": {
|
|
147
|
+
"runnerId": "claude-code",
|
|
148
|
+
"modelLevel": "deep"
|
|
149
|
+
},
|
|
150
|
+
"codeReviewPrimary": {
|
|
151
|
+
"runnerId": "codex",
|
|
152
|
+
"modelLevel": "codex-deep"
|
|
153
|
+
},
|
|
154
|
+
"codeReviewSecondary": {
|
|
155
|
+
"runnerId": "claude-code",
|
|
156
|
+
"modelLevel": "deep"
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"status": "active"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"id": "claude-primary-codex-review-consensus",
|
|
164
|
+
"pipelineId": "feature-development",
|
|
165
|
+
"schemaVersion": "run-profile/v1",
|
|
166
|
+
"version": "1",
|
|
167
|
+
"displayName": "Claude primary, Codex review consensus",
|
|
168
|
+
"summary": "Claude Code is primary for analysis and development; Claude plus Codex run parallel consensus for plan and code review.",
|
|
169
|
+
"topology": {
|
|
170
|
+
"stages": {
|
|
171
|
+
"planReviewer": {
|
|
172
|
+
"mode": "consensus",
|
|
173
|
+
"branches": 2
|
|
174
|
+
},
|
|
175
|
+
"codeReview": {
|
|
176
|
+
"mode": "consensus",
|
|
177
|
+
"branches": 2
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"bindings": {
|
|
182
|
+
"slots": {
|
|
183
|
+
"orchestrator": {
|
|
184
|
+
"runnerId": "claude-code",
|
|
185
|
+
"modelLevel": "deep"
|
|
186
|
+
},
|
|
187
|
+
"analyst": {
|
|
188
|
+
"runnerId": "claude-code",
|
|
189
|
+
"modelLevel": "deep"
|
|
190
|
+
},
|
|
191
|
+
"developer": {
|
|
192
|
+
"runnerId": "claude-code",
|
|
193
|
+
"modelLevel": "standard",
|
|
194
|
+
"permissionMode": "acceptEdits"
|
|
195
|
+
},
|
|
196
|
+
"triager": {
|
|
197
|
+
"runnerId": "claude-code",
|
|
198
|
+
"modelLevel": "deep"
|
|
199
|
+
},
|
|
200
|
+
"watcher": {
|
|
201
|
+
"runnerId": "claude-code",
|
|
202
|
+
"modelLevel": "cheap"
|
|
203
|
+
},
|
|
204
|
+
"planReviewPrimary": {
|
|
205
|
+
"runnerId": "claude-code",
|
|
206
|
+
"modelLevel": "deep"
|
|
207
|
+
},
|
|
208
|
+
"planReviewSecondary": {
|
|
209
|
+
"runnerId": "codex",
|
|
210
|
+
"modelLevel": "codex-deep"
|
|
211
|
+
},
|
|
212
|
+
"codeReviewPrimary": {
|
|
213
|
+
"runnerId": "claude-code",
|
|
214
|
+
"modelLevel": "deep"
|
|
215
|
+
},
|
|
216
|
+
"codeReviewSecondary": {
|
|
217
|
+
"runnerId": "codex",
|
|
218
|
+
"modelLevel": "codex-deep"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"status": "active"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"id": "local-change-claude-standard",
|
|
226
|
+
"pipelineId": "local-change",
|
|
227
|
+
"schemaVersion": "run-profile/v1",
|
|
228
|
+
"version": "1",
|
|
229
|
+
"displayName": "Local change Claude standard",
|
|
230
|
+
"summary": "Claude Code runs the local-change developer slot.",
|
|
231
|
+
"topology": {
|
|
232
|
+
"stages": {
|
|
233
|
+
"developer": {
|
|
234
|
+
"mode": "single"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
"bindings": {
|
|
239
|
+
"slots": {
|
|
240
|
+
"orchestrator": {
|
|
241
|
+
"runnerId": "claude-code",
|
|
242
|
+
"modelLevel": "deep"
|
|
243
|
+
},
|
|
244
|
+
"developer": {
|
|
245
|
+
"runnerId": "claude-code",
|
|
246
|
+
"modelLevel": "standard",
|
|
247
|
+
"permissionMode": "acceptEdits"
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
"status": "active"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"id": "local-change-codex-standard",
|
|
255
|
+
"pipelineId": "local-change",
|
|
256
|
+
"schemaVersion": "run-profile/v1",
|
|
257
|
+
"version": "1",
|
|
258
|
+
"displayName": "Local change Codex standard",
|
|
259
|
+
"summary": "Codex runs the local-change developer slot.",
|
|
260
|
+
"topology": {
|
|
261
|
+
"stages": {
|
|
262
|
+
"developer": {
|
|
263
|
+
"mode": "single"
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"bindings": {
|
|
268
|
+
"slots": {
|
|
269
|
+
"orchestrator": {
|
|
270
|
+
"runnerId": "codex",
|
|
271
|
+
"modelLevel": "codex-deep"
|
|
272
|
+
},
|
|
273
|
+
"developer": {
|
|
274
|
+
"runnerId": "codex",
|
|
275
|
+
"modelLevel": "codex-standard",
|
|
276
|
+
"permissionMode": "workspace-write"
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"status": "active"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"id": "analysis-only-claude-standard",
|
|
284
|
+
"pipelineId": "analysis-only",
|
|
285
|
+
"schemaVersion": "run-profile/v1",
|
|
286
|
+
"version": "1",
|
|
287
|
+
"displayName": "Analysis only Claude standard",
|
|
288
|
+
"summary": "Claude Code runs the analysis-only analyst slot.",
|
|
289
|
+
"topology": {
|
|
290
|
+
"stages": {
|
|
291
|
+
"analyst": {
|
|
292
|
+
"mode": "single"
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"bindings": {
|
|
297
|
+
"slots": {
|
|
298
|
+
"orchestrator": {
|
|
299
|
+
"runnerId": "claude-code",
|
|
300
|
+
"modelLevel": "deep"
|
|
301
|
+
},
|
|
302
|
+
"analyst": {
|
|
303
|
+
"runnerId": "claude-code",
|
|
304
|
+
"modelLevel": "deep"
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"status": "active"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": "analysis-only-codex-standard",
|
|
312
|
+
"pipelineId": "analysis-only",
|
|
313
|
+
"schemaVersion": "run-profile/v1",
|
|
314
|
+
"version": "1",
|
|
315
|
+
"displayName": "Analysis only Codex standard",
|
|
316
|
+
"summary": "Codex runs the analysis-only analyst slot.",
|
|
317
|
+
"topology": {
|
|
318
|
+
"stages": {
|
|
319
|
+
"analyst": {
|
|
320
|
+
"mode": "single"
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"bindings": {
|
|
325
|
+
"slots": {
|
|
326
|
+
"orchestrator": {
|
|
327
|
+
"runnerId": "codex",
|
|
328
|
+
"modelLevel": "codex-deep"
|
|
329
|
+
},
|
|
330
|
+
"analyst": {
|
|
331
|
+
"runnerId": "codex",
|
|
332
|
+
"modelLevel": "codex-deep"
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
"status": "active"
|
|
337
|
+
}
|
|
338
|
+
]
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revisium/orchestrator-default-playbook",
|
|
3
3
|
"version": "0.1.1",
|
|
4
|
-
"description": "Built-in default agent playbook (roles + data-driven pipelines) seeded
|
|
4
|
+
"description": "Built-in default agent playbook (roles + data-driven pipelines) seeded during Revo startup so a fresh control-plane has a working pipeline out-of-the-box."
|
|
5
5
|
}
|
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
"package": "@revisium/orchestrator-default-playbook",
|
|
6
6
|
"catalogs": {
|
|
7
7
|
"roles": "catalog/roles.json",
|
|
8
|
-
"pipelines": "catalog/pipelines.json"
|
|
8
|
+
"pipelines": "catalog/pipelines.json",
|
|
9
|
+
"runProfiles": "catalog/run-profiles.json"
|
|
9
10
|
},
|
|
10
11
|
"supported_runtimes": [
|
|
11
12
|
"revo"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Developer
|
|
2
2
|
|
|
3
3
|
You are the **developer** role. You implement the approved plan and you are the only role
|
|
4
|
-
that writes to the working tree.
|
|
4
|
+
that writes to the task working tree.
|
|
5
5
|
|
|
6
6
|
## Goal
|
|
7
7
|
|
|
8
|
-
Make the smallest correct change that satisfies the approved plan
|
|
9
|
-
|
|
8
|
+
Make the smallest correct verified file change that satisfies the approved plan inside the
|
|
9
|
+
task working tree.
|
|
10
10
|
|
|
11
11
|
## What to do
|
|
12
12
|
|
|
@@ -15,10 +15,10 @@ reviewer can approve it and the integrator can ship it.
|
|
|
15
15
|
2. Follow the existing conventions of the codebase you are editing.
|
|
16
16
|
3. Run the project's verification (build, lint, tests) and fix what you broke.
|
|
17
17
|
4. On a rework pass (reviewer requested changes), address each reviewer finding directly.
|
|
18
|
-
5. On a
|
|
18
|
+
5. On a validation rework pass, use the supplied feedback to fix the working-tree change.
|
|
19
19
|
|
|
20
20
|
On a stuck-gate rework pass, treat the human gate note and latest review findings as an iteration
|
|
21
|
-
on the current change. Continue from the
|
|
21
|
+
on the current change. Continue from the current task working tree, preserve useful work, and do
|
|
22
22
|
not restart the implementation unless the feedback explicitly requires replacing it.
|
|
23
23
|
|
|
24
24
|
## Output
|
|
@@ -28,4 +28,4 @@ Summarize what you changed and how you verified it, then end with a verdict toke
|
|
|
28
28
|
- `approved` — the change is implemented and verification passes.
|
|
29
29
|
- `blocker` — you could not complete the change (explain the obstacle for a human).
|
|
30
30
|
|
|
31
|
-
You may read, edit, write, and run commands in the working tree, scoped to the task repo.
|
|
31
|
+
You may read, edit, write, and run commands in the task working tree, scoped to the task repo.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Integrator
|
|
2
2
|
|
|
3
3
|
The **integrator** is a built-in SYSTEM SCRIPT, not an LLM agent. The engine dispatches it via
|
|
4
|
-
the `
|
|
4
|
+
the `script:integrator` pipeline node; this file documents its contract.
|
|
5
5
|
|
|
6
6
|
## Goal
|
|
7
7
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// biome-ignore-all lint: generated file
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
/*
|
|
6
|
+
* This file should be your main import to use Prisma-related types and utilities in a browser.
|
|
7
|
+
* Use it to get access to models, enums, and input types.
|
|
8
|
+
*
|
|
9
|
+
* This file does not contain a `PrismaClient` class, nor several other helpers that are intended as server-side only.
|
|
10
|
+
* See `client.ts` for the standard, server-side entry point.
|
|
11
|
+
*
|
|
12
|
+
* 🟢 You can import this file directly.
|
|
13
|
+
*/
|
|
14
|
+
import * as Prisma from './internal/prismaNamespaceBrowser.js';
|
|
15
|
+
export { Prisma };
|
|
16
|
+
export * as $Enums from './enums.js';
|
|
17
|
+
export * from './enums.js';
|
|
18
|
+
//# sourceMappingURL=browser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser.js","sourceRoot":"","sources":["../../../src/__generated__/client/browser.ts"],"names":[],"mappings":"AACA,qEAAqE;AACrE,oBAAoB;AACpB,wCAAwC;AACxC,eAAe;AACf;;;;;;;;GAQG;AAEH,OAAO,KAAK,MAAM,MAAM,sCAAsC,CAAA;AAC9D,OAAO,EAAE,MAAM,EAAE,CAAA;AACjB,OAAO,KAAK,MAAM,MAAM,YAAY,CAAA;AACpC,cAAc,YAAY,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// biome-ignore-all lint: generated file
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
/*
|
|
6
|
+
* This file should be your main import to use Prisma. Through it you get access to all the models, enums, and input types.
|
|
7
|
+
* If you're looking for something you can import in the client-side of your application, please refer to the `browser.ts` file instead.
|
|
8
|
+
*
|
|
9
|
+
* 🟢 You can import this file directly.
|
|
10
|
+
*/
|
|
11
|
+
import * as $Class from "./internal/class.js";
|
|
12
|
+
import * as Prisma from "./internal/prismaNamespace.js";
|
|
13
|
+
export * as $Enums from './enums.js';
|
|
14
|
+
export * from "./enums.js";
|
|
15
|
+
/**
|
|
16
|
+
* ## Prisma Client
|
|
17
|
+
*
|
|
18
|
+
* Type-safe database client for TypeScript
|
|
19
|
+
* @example
|
|
20
|
+
* ```
|
|
21
|
+
* const prisma = new PrismaClient({
|
|
22
|
+
* adapter: new PrismaPg({ connectionString: process.env.DATABASE_URL })
|
|
23
|
+
* })
|
|
24
|
+
* // Fetch zero or more RevoProjects
|
|
25
|
+
* const revoProjects = await prisma.revoProject.findMany()
|
|
26
|
+
* ```
|
|
27
|
+
*
|
|
28
|
+
* Read more in our [docs](https://pris.ly/d/client).
|
|
29
|
+
*/
|
|
30
|
+
export const PrismaClient = $Class.getPrismaClientClass();
|
|
31
|
+
export { Prisma };
|
|
32
|
+
//# sourceMappingURL=client.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../src/__generated__/client/client.ts"],"names":[],"mappings":"AACA,qEAAqE;AACrE,oBAAoB;AACpB,wCAAwC;AACxC,eAAe;AACf;;;;;GAKG;AAOH,OAAO,KAAK,MAAM,MAAM,qBAAqB,CAAA;AAC7C,OAAO,KAAK,MAAM,MAAM,+BAA+B,CAAA;AAEvD,OAAO,KAAK,MAAM,MAAM,YAAY,CAAA;AACpC,cAAc,YAAY,CAAA;AAC1B;;;;;;;;;;;;;;GAcG;AACH,MAAM,CAAC,MAAM,YAAY,GAAG,MAAM,CAAC,oBAAoB,EAAE,CAAA;AAEzD,OAAO,EAAE,MAAM,EAAE,CAAA"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// biome-ignore-all lint: generated file
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
/*
|
|
6
|
+
* This file exports various common sort, input & filter types that are not directly linked to a particular model.
|
|
7
|
+
*
|
|
8
|
+
* 🟢 You can import this file directly.
|
|
9
|
+
*/
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=commonInputTypes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"commonInputTypes.js","sourceRoot":"","sources":["../../../src/__generated__/client/commonInputTypes.ts"],"names":[],"mappings":"AACA,qEAAqE;AACrE,oBAAoB;AACpB,wCAAwC;AACxC,eAAe;AACf;;;;GAIG"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// biome-ignore-all lint: generated file
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
/*
|
|
6
|
+
* This file exports all enum related types from the schema.
|
|
7
|
+
*
|
|
8
|
+
* 🟢 You can import this file directly.
|
|
9
|
+
*/
|
|
10
|
+
export const RevoProjectKind = {
|
|
11
|
+
USER: 'USER',
|
|
12
|
+
SYSTEM: 'SYSTEM'
|
|
13
|
+
};
|
|
14
|
+
export const RevoProjectStatus = {
|
|
15
|
+
ACTIVE: 'ACTIVE',
|
|
16
|
+
ARCHIVED: 'ARCHIVED',
|
|
17
|
+
DELETED: 'DELETED'
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=enums.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../src/__generated__/client/enums.ts"],"names":[],"mappings":"AACA,qEAAqE;AACrE,oBAAoB;AACpB,wCAAwC;AACxC,eAAe;AACf;;;;EAIE;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;CACR,CAAA;AAKV,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;CACV,CAAA"}
|