@kbediako/codex-orchestrator 0.1.37 → 0.2.0
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/.agents/plugins/marketplace.json +20 -0
- package/README.md +73 -291
- package/bin/codex-orchestrator.js +161 -0
- package/codex.orchestrator.json +149 -13
- package/dist/bin/codex-orchestrator.js +795 -1154
- package/dist/orchestrator/src/cli/adapters/CommandPlanner.js +22 -4
- package/dist/orchestrator/src/cli/adapters/CommandReviewer.js +3 -3
- package/dist/orchestrator/src/cli/adapters/CommandTester.js +2 -2
- package/dist/orchestrator/src/cli/adapters/cloudFailureDiagnostics.js +183 -11
- package/dist/orchestrator/src/cli/coStatusAttachCliShell.js +402 -0
- package/dist/orchestrator/src/cli/coStatusCliShell.js +429 -0
- package/dist/orchestrator/src/cli/coStatusOperatorAutopilotCliShell.js +120 -0
- package/dist/orchestrator/src/cli/codexCliShell.js +72 -0
- package/dist/orchestrator/src/cli/codexDefaultsSetup.js +49 -11
- package/dist/orchestrator/src/cli/config/delegationConfig.js +317 -5
- package/dist/orchestrator/src/cli/config/repoConfigPolicy.js +2 -3
- package/dist/orchestrator/src/cli/config/userConfig.js +28 -13
- package/dist/orchestrator/src/cli/control/authenticatedControlRouteGate.js +69 -0
- package/dist/orchestrator/src/cli/control/authenticatedRouteComposition.js +267 -0
- package/dist/orchestrator/src/cli/control/authenticatedRouteController.js +5 -0
- package/dist/orchestrator/src/cli/control/authenticatedRouteDispatcher.js +41 -0
- package/dist/orchestrator/src/cli/control/compatibilityIssuePresenter.js +1035 -0
- package/dist/orchestrator/src/cli/control/confirmationApproveController.js +62 -0
- package/dist/orchestrator/src/cli/control/confirmationCreateController.js +69 -0
- package/dist/orchestrator/src/cli/control/confirmationIssueConsumeController.js +43 -0
- package/dist/orchestrator/src/cli/control/confirmationListController.js +22 -0
- package/dist/orchestrator/src/cli/control/confirmationValidateController.js +58 -0
- package/dist/orchestrator/src/cli/control/confirmations.js +25 -3
- package/dist/orchestrator/src/cli/control/controlActionCancelConfirmation.js +65 -0
- package/dist/orchestrator/src/cli/control/controlActionController.js +77 -0
- package/dist/orchestrator/src/cli/control/controlActionControllerSequencing.js +161 -0
- package/dist/orchestrator/src/cli/control/controlActionExecution.js +142 -0
- package/dist/orchestrator/src/cli/control/controlActionFinalization.js +43 -0
- package/dist/orchestrator/src/cli/control/controlActionOutcome.js +60 -0
- package/dist/orchestrator/src/cli/control/controlActionPreflight.js +476 -0
- package/dist/orchestrator/src/cli/control/controlAuthenticatedRouteHandoff.js +57 -0
- package/dist/orchestrator/src/cli/control/controlBootstrapAssembly.js +39 -0
- package/dist/orchestrator/src/cli/control/controlBootstrapMetadataPersistence.js +16 -0
- package/dist/orchestrator/src/cli/control/controlEventTransport.js +49 -0
- package/dist/orchestrator/src/cli/control/controlExpiryLifecycle.js +102 -0
- package/dist/orchestrator/src/cli/control/controlHostOwnership.js +480 -0
- package/dist/orchestrator/src/cli/control/controlHostSupervision.js +608 -0
- package/dist/orchestrator/src/cli/control/controlOversightFacade.js +8 -0
- package/dist/orchestrator/src/cli/control/controlOversightReadContract.js +1 -0
- package/dist/orchestrator/src/cli/control/controlOversightReadService.js +16 -0
- package/dist/orchestrator/src/cli/control/controlOversightUpdateContract.js +1 -0
- package/dist/orchestrator/src/cli/control/controlPersistenceFiles.js +6 -0
- package/dist/orchestrator/src/cli/control/controlQuestionChildResolution.js +18 -0
- package/dist/orchestrator/src/cli/control/controlRequestContext.js +42 -0
- package/dist/orchestrator/src/cli/control/controlRequestController.js +9 -0
- package/dist/orchestrator/src/cli/control/controlRequestPredispatch.js +17 -0
- package/dist/orchestrator/src/cli/control/controlRequestRouteDispatch.js +44 -0
- package/dist/orchestrator/src/cli/control/controlRuntime.js +992 -0
- package/dist/orchestrator/src/cli/control/controlServer.js +23 -1456
- package/dist/orchestrator/src/cli/control/controlServerAuditAndErrorHelpers.js +115 -0
- package/dist/orchestrator/src/cli/control/controlServerAuthenticatedRouteBranch.js +29 -0
- package/dist/orchestrator/src/cli/control/controlServerBootstrapLifecycle.js +30 -0
- package/dist/orchestrator/src/cli/control/controlServerBootstrapStartSequence.js +21 -0
- package/dist/orchestrator/src/cli/control/controlServerOwnedRuntimeLifecycle.js +67 -0
- package/dist/orchestrator/src/cli/control/controlServerPublicLifecycle.js +756 -0
- package/dist/orchestrator/src/cli/control/controlServerPublicRouteHelpers.js +86 -0
- package/dist/orchestrator/src/cli/control/controlServerReadyInstanceLifecycle.js +25 -0
- package/dist/orchestrator/src/cli/control/controlServerReadyInstanceStartup.js +18 -0
- package/dist/orchestrator/src/cli/control/controlServerRequestBodyHelpers.js +37 -0
- package/dist/orchestrator/src/cli/control/controlServerRequestShell.js +40 -0
- package/dist/orchestrator/src/cli/control/controlServerRequestShellBinding.js +17 -0
- package/dist/orchestrator/src/cli/control/controlServerSeedLoading.js +27 -0
- package/dist/orchestrator/src/cli/control/controlServerSeededRuntimeAssembly.js +186 -0
- package/dist/orchestrator/src/cli/control/controlServerStartupInputPreparation.js +31 -0
- package/dist/orchestrator/src/cli/control/controlServerStartupSequence.js +49 -0
- package/dist/orchestrator/src/cli/control/controlState.js +233 -2
- package/dist/orchestrator/src/cli/control/controlStatusDashboard.js +1899 -0
- package/dist/orchestrator/src/cli/control/controlTelegramBridgeBootstrapLifecycle.js +22 -0
- package/dist/orchestrator/src/cli/control/controlTelegramBridgeLifecycle.js +67 -0
- package/dist/orchestrator/src/cli/control/controlTelegramBridgeOversightFacadeFactory.js +8 -0
- package/dist/orchestrator/src/cli/control/controlTelegramCommandController.js +49 -0
- package/dist/orchestrator/src/cli/control/controlTelegramDispatchRead.js +40 -0
- package/dist/orchestrator/src/cli/control/controlTelegramPollingController.js +89 -0
- package/dist/orchestrator/src/cli/control/controlTelegramProjectionNotificationController.js +29 -0
- package/dist/orchestrator/src/cli/control/controlTelegramPushState.js +63 -0
- package/dist/orchestrator/src/cli/control/controlTelegramQuestionRead.js +13 -0
- package/dist/orchestrator/src/cli/control/controlTelegramReadController.js +216 -0
- package/dist/orchestrator/src/cli/control/controlTelegramUpdateHandler.js +63 -0
- package/dist/orchestrator/src/cli/control/controlWatcher.js +73 -5
- package/dist/orchestrator/src/cli/control/delegationRegisterController.js +35 -0
- package/dist/orchestrator/src/cli/control/dynamicToolBridgePolicy.js +139 -0
- package/dist/orchestrator/src/cli/control/eventsSseController.js +12 -0
- package/dist/orchestrator/src/cli/control/linearBudgetState.js +1789 -0
- package/dist/orchestrator/src/cli/control/linearDispatchSource.js +1137 -0
- package/dist/orchestrator/src/cli/control/linearGraphqlClient.js +150 -0
- package/dist/orchestrator/src/cli/control/linearRateLimit.js +102 -0
- package/dist/orchestrator/src/cli/control/linearWebhookController.js +499 -0
- package/dist/orchestrator/src/cli/control/liveLinearAdvisoryRuntime.js +70 -0
- package/dist/orchestrator/src/cli/control/observabilityApiController.js +173 -0
- package/dist/orchestrator/src/cli/control/observabilityReadModel.js +500 -0
- package/dist/orchestrator/src/cli/control/observabilitySurface.js +284 -0
- package/dist/orchestrator/src/cli/control/observabilityUpdateNotifier.js +22 -0
- package/dist/orchestrator/src/cli/control/operatorDashboardPresenter.js +252 -0
- package/dist/orchestrator/src/cli/control/providerAgentCapacity.js +70 -0
- package/dist/orchestrator/src/cli/control/providerControlHostFreshnessGauge.js +1068 -0
- package/dist/orchestrator/src/cli/control/providerIntakeState.js +473 -0
- package/dist/orchestrator/src/cli/control/providerIssueHandoff.js +6811 -0
- package/dist/orchestrator/src/cli/control/providerIssueObservability.js +1348 -0
- package/dist/orchestrator/src/cli/control/providerIssueRetryQueue.js +84 -0
- package/dist/orchestrator/src/cli/control/providerLinearRuntimeProof.js +588 -0
- package/dist/orchestrator/src/cli/control/providerLinearScreenshotProof.js +473 -0
- package/dist/orchestrator/src/cli/control/providerLinearWorkerTruth.js +383 -0
- package/dist/orchestrator/src/cli/control/providerLinearWorkflowAudit.js +254 -0
- package/dist/orchestrator/src/cli/control/providerLinearWorkflowFacade.js +5573 -0
- package/dist/orchestrator/src/cli/control/providerLinearWorkflowStates.js +115 -0
- package/dist/orchestrator/src/cli/control/providerMergeCloseout.js +1868 -0
- package/dist/orchestrator/src/cli/control/providerOperatorAutopilot.js +1580 -0
- package/dist/orchestrator/src/cli/control/providerOperatorAutopilotLifecycle.js +154 -0
- package/dist/orchestrator/src/cli/control/providerOperatorAutopilotLocalRolloutExecution.js +1006 -0
- package/dist/orchestrator/src/cli/control/providerPollingHealth.js +435 -0
- package/dist/orchestrator/src/cli/control/providerTerminalCleanup.js +516 -0
- package/dist/orchestrator/src/cli/control/providerWorkerHosts.js +191 -0
- package/dist/orchestrator/src/cli/control/providerWorkflowConfigStore.js +515 -0
- package/dist/orchestrator/src/cli/control/questionChildResolutionAdapter.js +361 -0
- package/dist/orchestrator/src/cli/control/questionQueueController.js +181 -0
- package/dist/orchestrator/src/cli/control/questionReadRetryDeduplication.js +9 -0
- package/dist/orchestrator/src/cli/control/questionReadSequence.js +10 -0
- package/dist/orchestrator/src/cli/control/securityViolationController.js +27 -0
- package/dist/orchestrator/src/cli/control/selectedRunProjection.js +1838 -0
- package/dist/orchestrator/src/cli/control/telegramOversightApiClient.js +48 -0
- package/dist/orchestrator/src/cli/control/telegramOversightBridge.js +180 -0
- package/dist/orchestrator/src/cli/control/telegramOversightBridgeProjectionDeliveryQueue.js +25 -0
- package/dist/orchestrator/src/cli/control/telegramOversightBridgeRuntimeLifecycle.js +45 -0
- package/dist/orchestrator/src/cli/control/telegramOversightBridgeStateStore.js +77 -0
- package/dist/orchestrator/src/cli/control/telegramOversightControlActionApiClient.js +45 -0
- package/dist/orchestrator/src/cli/control/trackerDispatchPilot.js +439 -0
- package/dist/orchestrator/src/cli/control/uiDataController.js +34 -0
- package/dist/orchestrator/src/cli/control/uiSessionController.js +100 -0
- package/dist/orchestrator/src/cli/controlHostCliShell.js +860 -0
- package/dist/orchestrator/src/cli/controlHostFreshnessGaugeCliShell.js +129 -0
- package/dist/orchestrator/src/cli/controlHostSupervisionCliShell.js +2127 -0
- package/dist/orchestrator/src/cli/delegationCliShell.js +62 -0
- package/dist/orchestrator/src/cli/delegationServer.js +567 -678
- package/dist/orchestrator/src/cli/delegationServerCliShell.js +52 -0
- package/dist/orchestrator/src/cli/delegationServerQuestionFlowShell.js +228 -0
- package/dist/orchestrator/src/cli/delegationServerToolDispatchShell.js +411 -0
- package/dist/orchestrator/src/cli/delegationServerTransport.js +274 -0
- package/dist/orchestrator/src/cli/delegationSetup.js +51 -171
- package/dist/orchestrator/src/cli/devtoolsCliShell.js +34 -0
- package/dist/orchestrator/src/cli/doctor.js +542 -122
- package/dist/orchestrator/src/cli/doctorCliRequestShell.js +72 -0
- package/dist/orchestrator/src/cli/doctorCliShell.js +138 -0
- package/dist/orchestrator/src/cli/doctorUsage.js +136 -16
- package/dist/orchestrator/src/cli/exec/experience.js +16 -2
- package/dist/orchestrator/src/cli/exec/summary.js +3 -0
- package/dist/orchestrator/src/cli/execCliShell.js +51 -0
- package/dist/orchestrator/src/cli/flowCliRequestShell.js +44 -0
- package/dist/orchestrator/src/cli/flowCliShell.js +239 -0
- package/dist/orchestrator/src/cli/frontendTestCliRequestShell.js +80 -0
- package/dist/orchestrator/src/cli/frontendTestCliShell.js +41 -0
- package/dist/orchestrator/src/cli/init.js +1 -0
- package/dist/orchestrator/src/cli/initCliShell.js +50 -0
- package/dist/orchestrator/src/cli/linearCliShell.js +1200 -0
- package/dist/orchestrator/src/cli/mcpEnableCliShell.js +132 -0
- package/dist/orchestrator/src/cli/metrics/metricsAggregator.js +3 -2
- package/dist/orchestrator/src/cli/metrics/metricsRecorder.js +56 -0
- package/dist/orchestrator/src/cli/orchestrator.js +66 -1376
- package/dist/orchestrator/src/cli/planCliShell.js +19 -0
- package/dist/orchestrator/src/cli/prCliShell.js +41 -0
- package/dist/orchestrator/src/cli/providerLinearChildLanePhaseContract.js +204 -0
- package/dist/orchestrator/src/cli/providerLinearChildLaneRunner.js +1772 -0
- package/dist/orchestrator/src/cli/providerLinearChildLaneShell.js +2420 -0
- package/dist/orchestrator/src/cli/providerLinearChildStreamShell.js +385 -0
- package/dist/orchestrator/src/cli/providerLinearWorkerRunner.js +5738 -0
- package/dist/orchestrator/src/cli/resumeCliShell.js +14 -0
- package/dist/orchestrator/src/cli/reviewCliLaunchShell.js +72 -0
- package/dist/orchestrator/src/cli/rlm/alignment.js +3 -3
- package/dist/orchestrator/src/cli/rlm/context.js +94 -7
- package/dist/orchestrator/src/cli/rlm/rlmCodexRuntimeShell.js +546 -0
- package/dist/orchestrator/src/cli/rlm/symbolic.js +4 -2
- package/dist/orchestrator/src/cli/rlmCliRequestShell.js +42 -0
- package/dist/orchestrator/src/cli/rlmCompletionCliShell.js +46 -0
- package/dist/orchestrator/src/cli/rlmLaunchCliShell.js +51 -0
- package/dist/orchestrator/src/cli/rlmRunner.js +83 -523
- package/dist/orchestrator/src/cli/run/blockMemory.js +500 -0
- package/dist/orchestrator/src/cli/run/manifest.js +410 -73
- package/dist/orchestrator/src/cli/run/manifestPersister.js +45 -14
- package/dist/orchestrator/src/cli/run/runMemoryController.js +216 -0
- package/dist/orchestrator/src/cli/run/source0.js +690 -0
- package/dist/orchestrator/src/cli/run/workspacePath.js +101 -0
- package/dist/orchestrator/src/cli/runtime/mode.js +2 -1
- package/dist/orchestrator/src/cli/runtime/provider.js +39 -2
- package/dist/orchestrator/src/cli/selfCheckCliShell.js +12 -0
- package/dist/orchestrator/src/cli/services/commandRunner.js +668 -18
- package/dist/orchestrator/src/cli/services/execRuntime.js +66 -1
- package/dist/orchestrator/src/cli/services/orchestratorAutoScoutEvidenceRecorder.js +71 -0
- package/dist/orchestrator/src/cli/services/orchestratorCloudBranchResolution.js +8 -0
- package/dist/orchestrator/src/cli/services/orchestratorCloudEnvironmentResolution.js +22 -0
- package/dist/orchestrator/src/cli/services/orchestratorCloudExecutionLifecycleShell.js +39 -0
- package/dist/orchestrator/src/cli/services/orchestratorCloudPromptBuilder.js +37 -0
- package/dist/orchestrator/src/cli/services/orchestratorCloudRouteFallbackContract.js +45 -0
- package/dist/orchestrator/src/cli/services/orchestratorCloudRouteShell.js +36 -0
- package/dist/orchestrator/src/cli/services/orchestratorCloudTargetExecutor.js +277 -0
- package/dist/orchestrator/src/cli/services/orchestratorControlPlaneLifecycle.js +98 -0
- package/dist/orchestrator/src/cli/services/orchestratorControlPlaneLifecycleShell.js +54 -0
- package/dist/orchestrator/src/cli/services/orchestratorExecutionLifecycle.js +112 -0
- package/dist/orchestrator/src/cli/services/orchestratorExecutionModePolicy.js +27 -0
- package/dist/orchestrator/src/cli/services/orchestratorExecutionRouteAdapterShell.js +59 -0
- package/dist/orchestrator/src/cli/services/orchestratorExecutionRouteDecisionShell.js +57 -0
- package/dist/orchestrator/src/cli/services/orchestratorExecutionRouteState.js +21 -0
- package/dist/orchestrator/src/cli/services/orchestratorExecutionRouter.js +2 -0
- package/dist/orchestrator/src/cli/services/orchestratorLocalPipelineExecutor.js +149 -0
- package/dist/orchestrator/src/cli/services/orchestratorLocalRouteShell.js +63 -0
- package/dist/orchestrator/src/cli/services/orchestratorPlanShell.js +54 -0
- package/dist/orchestrator/src/cli/services/orchestratorPlanTargetTracker.js +16 -0
- package/dist/orchestrator/src/cli/services/orchestratorResumePreparationShell.js +84 -0
- package/dist/orchestrator/src/cli/services/orchestratorResumeTokenValidation.js +15 -0
- package/dist/orchestrator/src/cli/services/orchestratorRunLifecycleCompletion.js +31 -0
- package/dist/orchestrator/src/cli/services/orchestratorRunLifecycleExecutionRegistration.js +37 -0
- package/dist/orchestrator/src/cli/services/orchestratorRunLifecycleOrchestrationShell.js +83 -0
- package/dist/orchestrator/src/cli/services/orchestratorRunLifecycleTaskManagerShell.js +37 -0
- package/dist/orchestrator/src/cli/services/orchestratorRuntimeManifestMutation.js +20 -0
- package/dist/orchestrator/src/cli/services/orchestratorStartPreparationShell.js +56 -0
- package/dist/orchestrator/src/cli/services/orchestratorStatusShell.js +70 -0
- package/dist/orchestrator/src/cli/services/pipelineResolver.js +7 -3
- package/dist/orchestrator/src/cli/services/plannerMemory.js +119 -0
- package/dist/orchestrator/src/cli/services/runPreparation.js +7 -3
- package/dist/orchestrator/src/cli/services/runSummaryWriter.js +9 -0
- package/dist/orchestrator/src/cli/setupBootstrapShell.js +114 -0
- package/dist/orchestrator/src/cli/setupCliShell.js +51 -0
- package/dist/orchestrator/src/cli/skillsCliShell.js +56 -0
- package/dist/orchestrator/src/cli/startCliRequestShell.js +53 -0
- package/dist/orchestrator/src/cli/startCliShell.js +68 -0
- package/dist/orchestrator/src/cli/statusCliShell.js +22 -0
- package/dist/orchestrator/src/cli/utils/authProvenanceFingerprint.js +27 -0
- package/dist/orchestrator/src/cli/utils/cloudPreflight.js +83 -1
- package/dist/orchestrator/src/cli/utils/delegationConfigParser.js +250 -0
- package/dist/orchestrator/src/cli/utils/delegationMcpHealth.js +1382 -0
- package/dist/orchestrator/src/cli/utils/devtools.js +2 -54
- package/dist/orchestrator/src/cli/utils/mcpServerEntry.js +53 -0
- package/dist/orchestrator/src/cli/utils/packageProgramResolver.js +151 -0
- package/dist/orchestrator/src/cli/utils/providerOverrideEnv.js +71 -0
- package/dist/orchestrator/src/cli/utils/trailingJsonObject.js +59 -0
- package/dist/orchestrator/src/learning/crystalizer.js +2 -2
- package/dist/orchestrator/src/persistence/ExperienceStore.js +233 -49
- package/dist/orchestrator/src/persistence/TaskStateStore.js +6 -6
- package/dist/orchestrator/src/persistence/lockFile.js +70 -4
- package/dist/orchestrator/src/persistence/sanitizeIdentifier.js +39 -0
- package/dist/orchestrator/src/sync/createCloudSyncWorker.js +3 -2
- package/dist/orchestrator/src/utils/atomicWrite.js +17 -2
- package/dist/packages/orchestrator/src/exec/unified-exec.js +99 -6
- package/dist/packages/orchestrator/src/instructions/promptPacks.js +150 -19
- package/dist/packages/sdk-node/src/orchestrator.js +137 -13
- package/dist/packages/shared/config/designConfig.js +8 -1
- package/dist/packages/shared/streams/stdio.js +1 -1
- package/dist/scripts/design/pipeline/permit.js +15 -0
- package/dist/scripts/lib/docs-catalog.js +365 -0
- package/dist/scripts/lib/docs-helpers.js +87 -5
- package/dist/scripts/lib/pr-watch-merge.js +1088 -80
- package/dist/scripts/lib/provider-run-contract.js +26 -0
- package/dist/scripts/lib/review-command-intent-classification.js +532 -0
- package/dist/scripts/lib/review-command-probe-classification.js +385 -0
- package/dist/scripts/lib/review-execution-boundary-preflight.js +279 -0
- package/dist/scripts/lib/review-execution-runtime.js +753 -0
- package/dist/scripts/lib/review-execution-state.js +1144 -0
- package/dist/scripts/lib/review-execution-telemetry.js +215 -0
- package/dist/scripts/lib/review-inspection-target-parsing.js +78 -0
- package/dist/scripts/lib/review-launch-attempt.js +601 -0
- package/dist/scripts/lib/review-meta-surface-boundary-analysis.js +300 -0
- package/dist/scripts/lib/review-meta-surface-normalization.js +746 -0
- package/dist/scripts/lib/review-non-interactive-handoff.js +61 -0
- package/dist/scripts/lib/review-prompt-context.js +376 -0
- package/dist/scripts/lib/review-scope-advisory.js +286 -0
- package/dist/scripts/lib/review-scope-paths.js +123 -0
- package/dist/scripts/lib/review-shell-command-parser.js +389 -0
- package/dist/scripts/lib/review-shell-env-interpreter.js +340 -0
- package/dist/scripts/lib/run-manifests.js +192 -36
- package/dist/scripts/lib/spark-policy-classifier.js +593 -0
- package/dist/scripts/run-review.js +507 -1777
- package/docs/public/downstream-setup.md +106 -0
- package/docs/public/provider-onboarding.md +173 -0
- package/package.json +30 -11
- package/plugins/codex-orchestrator/.codex-plugin/plugin.json +30 -0
- package/plugins/codex-orchestrator/.mcp.json +13 -0
- package/plugins/codex-orchestrator/launcher.mjs +359 -0
- package/schemas/manifest.json +395 -0
- package/skills/chrome-devtools/SKILL.md +1 -1
- package/skills/codex-orchestrator/SKILL.md +83 -0
- package/skills/collab-subagents-first/SKILL.md +2 -1
- package/skills/delegation-usage/DELEGATION_GUIDE.md +24 -11
- package/skills/delegation-usage/SKILL.md +20 -13
- package/skills/land/SKILL.md +77 -0
- package/skills/linear/SKILL.md +255 -0
- package/skills/release/SKILL.md +47 -3
- package/skills/standalone-review/SKILL.md +6 -1
- package/templates/README.md +4 -2
- package/templates/codex/.codex/agents/awaiter-high.toml +2 -2
- package/templates/codex/.codex/agents/explorer-fast.toml +1 -0
- package/templates/codex/.codex/agents/worker-complex.toml +1 -1
- package/templates/codex/.codex/config.toml +3 -4
- package/templates/codex/.codex/providers/README.md +13 -0
- package/templates/codex/.codex/providers/control.example.json +18 -0
- package/templates/codex/.codex/providers/provider.env.example +15 -0
- package/templates/codex/AGENTS.md +12 -7
- package/templates/codex/mcp-client.json +5 -1
- package/docs/README.md +0 -307
- package/docs/assets/setup.gif +0 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# Downstream Setup
|
|
2
|
+
|
|
3
|
+
This guide is the downstream-safe setup path shipped in the npm package.
|
|
4
|
+
|
|
5
|
+
## Contract
|
|
6
|
+
|
|
7
|
+
- Once per machine: install Codex CLI, authenticate, install bundled skills, and register delegation or DevTools wiring.
|
|
8
|
+
- Once per repo: seed the CO templates, review the generated config, and start using task-scoped runs.
|
|
9
|
+
- CO currently targets Codex CLI `0.123.0`; newer candidates stay evidence-gated in the version policy.
|
|
10
|
+
- CO-196 posture lineage remains unchanged: npm is the supported baseline because it is the simplest supported CLI install path, and marketplace packaging is an additive registration path for newer Codex releases that expose `codex plugin marketplace add` and `codex plugin marketplace remove`.
|
|
11
|
+
|
|
12
|
+
## Once per machine
|
|
13
|
+
|
|
14
|
+
1. Install CO:
|
|
15
|
+
```bash
|
|
16
|
+
npm i -g @kbediako/codex-orchestrator
|
|
17
|
+
```
|
|
18
|
+
2. Authenticate Codex:
|
|
19
|
+
```bash
|
|
20
|
+
codex login
|
|
21
|
+
# If browser auth is unavailable:
|
|
22
|
+
codex login --device-auth
|
|
23
|
+
```
|
|
24
|
+
3. Install bundled skills and register delegation or DevTools wiring:
|
|
25
|
+
```bash
|
|
26
|
+
codex-orchestrator setup --yes
|
|
27
|
+
```
|
|
28
|
+
4. Check readiness:
|
|
29
|
+
```bash
|
|
30
|
+
codex-orchestrator doctor --format json
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Codex plugin marketplace install
|
|
34
|
+
|
|
35
|
+
Use this when you want Codex to discover and enable CO from the plugin browser, while keeping npm available as the baseline CLI install path.
|
|
36
|
+
|
|
37
|
+
1. Add the packaged marketplace root:
|
|
38
|
+
```bash
|
|
39
|
+
codex plugin marketplace add "$(npm root -g)/@kbediako/codex-orchestrator"
|
|
40
|
+
```
|
|
41
|
+
2. Open `/plugins` inside Codex.
|
|
42
|
+
3. Install `Codex Orchestrator`.
|
|
43
|
+
4. Restart Codex if the plugin does not appear immediately.
|
|
44
|
+
|
|
45
|
+
The shipped marketplace files are:
|
|
46
|
+
|
|
47
|
+
- `.agents/plugins/marketplace.json`
|
|
48
|
+
- `plugins/codex-orchestrator/.codex-plugin/plugin.json`
|
|
49
|
+
- `plugins/codex-orchestrator/.mcp.json`
|
|
50
|
+
- `plugins/codex-orchestrator/launcher.mjs`
|
|
51
|
+
|
|
52
|
+
- Launcher behaviour: The plugin entry points at `plugins/codex-orchestrator`, and its launcher reads the `codex-orchestrator` marketplace entry in `${CODEX_HOME:-~/.codex}/config.toml` to locate the recorded source checkout before it execs the packaged CO CLI there via `node`. Local-directory sources run from the recorded source path. Git-backed sources run from Codex's installed checkout under `${CODEX_HOME:-~/.codex}/.tmp/marketplaces/codex-orchestrator`, so the MCP registration path stays independent of a second `codex-orchestrator` path entry after install.
|
|
53
|
+
- Local-directory add: Run `codex plugin marketplace add <repository-root>` against the repository root that contains those files instead of the npm install directory.
|
|
54
|
+
- Git-backed add: Pass a Git identifier or URL such as `owner/repo[@ref]`, an HTTPS Git URL, or an SSH Git URL rather than a local path.
|
|
55
|
+
- When to re-run add: Re-run `codex plugin marketplace add ...` if you move or replace a local-directory source, or if you remove Codex's installed marketplace checkout and want to restore the Git-backed install. `codex plugin marketplace add --help` currently documents local directories plus Git-backed sources such as `owner/repo[@ref]`, HTTPS Git URLs, and SSH Git URLs.
|
|
56
|
+
|
|
57
|
+
## Rollback and removal
|
|
58
|
+
|
|
59
|
+
- Uninstall the plugin from the Codex plugin browser when you want to remove it completely.
|
|
60
|
+
- Set the plugin entry in `${CODEX_HOME:-~/.codex}/config.toml` to `enabled = false` when you want to keep it installed but turn it off.
|
|
61
|
+
- Remove the marketplace registration if you no longer want Codex to read the shipped marketplace source:
|
|
62
|
+
```bash
|
|
63
|
+
codex plugin marketplace remove codex-orchestrator
|
|
64
|
+
```
|
|
65
|
+
- Remove the npm install when you no longer want the standalone CLI or when you no longer need it as the marketplace source:
|
|
66
|
+
```bash
|
|
67
|
+
npm uninstall -g @kbediako/codex-orchestrator
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Once per repo
|
|
71
|
+
|
|
72
|
+
1. Seed the repo:
|
|
73
|
+
```bash
|
|
74
|
+
codex-orchestrator init codex --cwd /path/to/repo
|
|
75
|
+
```
|
|
76
|
+
2. Review the generated files:
|
|
77
|
+
- `AGENTS.md`
|
|
78
|
+
- `.codex/config.toml`
|
|
79
|
+
- `.codex/providers/README.md`
|
|
80
|
+
- `.codex/providers/provider.env.example`
|
|
81
|
+
- `.codex/providers/control.example.json`
|
|
82
|
+
- `codex.orchestrator.json`
|
|
83
|
+
3. Start with a task-scoped flow:
|
|
84
|
+
```bash
|
|
85
|
+
codex-orchestrator flow --task <task-id>
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Version-Specific Notes
|
|
89
|
+
|
|
90
|
+
- `codex exec` now accepts both a prompt argument and piped stdin; piped stdin is appended as a `<stdin>` block.
|
|
91
|
+
- `codex login --device-auth` is available for environments where browser sign-in is not practical.
|
|
92
|
+
- CO keeps review-wrapper prompt transport explicit and artifact-backed; do not assume every `codex review` code path matches `codex exec`.
|
|
93
|
+
|
|
94
|
+
## First-run checks
|
|
95
|
+
|
|
96
|
+
Use these before asking a reviewer to trust a new repo:
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
codex-orchestrator doctor --format json
|
|
100
|
+
codex-orchestrator flow --task <task-id>
|
|
101
|
+
NOTES="Goal: ... | Summary: ... | Risks: ..." codex-orchestrator review --task <task-id>
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## Provider onboarding
|
|
105
|
+
|
|
106
|
+
For Linear and Telegram setup, continue with [provider-onboarding.md](provider-onboarding.md).
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
# Provider Onboarding
|
|
2
|
+
|
|
3
|
+
This guide is the downstream-safe provider contract for Linear and Telegram.
|
|
4
|
+
|
|
5
|
+
## Contract
|
|
6
|
+
|
|
7
|
+
- Once per machine: install CO, authenticate Codex, and confirm `codex-orchestrator doctor --format json` works.
|
|
8
|
+
- Once per repo: seed `.codex/providers/` with `codex-orchestrator init codex`.
|
|
9
|
+
- Runtime env carries secrets and provider bindings.
|
|
10
|
+
- Control policy carries `dispatch_pilot` and `transport_mutating_controls`.
|
|
11
|
+
- Linear and Telegram should both have a machine-checkable readiness signal before live smoke.
|
|
12
|
+
|
|
13
|
+
## Generated scaffolding
|
|
14
|
+
|
|
15
|
+
`codex-orchestrator init codex` seeds:
|
|
16
|
+
|
|
17
|
+
- `.codex/providers/README.md`
|
|
18
|
+
- `.codex/providers/provider.env.example`
|
|
19
|
+
- `.codex/providers/control.example.json`
|
|
20
|
+
|
|
21
|
+
Use those files as the starting point for your repo-specific provider setup.
|
|
22
|
+
|
|
23
|
+
## Environment variables
|
|
24
|
+
|
|
25
|
+
Recommended Linear env:
|
|
26
|
+
|
|
27
|
+
- `CO_LINEAR_API_TOKEN`
|
|
28
|
+
- `CO_LINEAR_WORKSPACE_ID`
|
|
29
|
+
- `CO_LINEAR_TEAM_ID`
|
|
30
|
+
- `CO_LINEAR_PROJECT_ID`
|
|
31
|
+
- `CO_LINEAR_WEBHOOK_SECRET`
|
|
32
|
+
|
|
33
|
+
Supported Linear token fallbacks:
|
|
34
|
+
|
|
35
|
+
- `CO_LINEAR_API_KEY`
|
|
36
|
+
- `LINEAR_API_KEY`
|
|
37
|
+
|
|
38
|
+
Telegram env:
|
|
39
|
+
|
|
40
|
+
- `CO_TELEGRAM_POLLING_ENABLED`
|
|
41
|
+
- `CO_TELEGRAM_BOT_TOKEN`
|
|
42
|
+
- `CO_TELEGRAM_ALLOWED_CHAT_IDS`
|
|
43
|
+
- `CO_TELEGRAM_ENABLE_MUTATIONS`
|
|
44
|
+
- `CO_TELEGRAM_POLL_INTERVAL_MS`
|
|
45
|
+
- `CO_TELEGRAM_PUSH_ENABLED`
|
|
46
|
+
- `CO_TELEGRAM_PUSH_INTERVAL_MS`
|
|
47
|
+
|
|
48
|
+
## Control policy
|
|
49
|
+
|
|
50
|
+
Keep the provider policy explicit.
|
|
51
|
+
|
|
52
|
+
`dispatch_pilot` should declare a Linear source and stay advisory-first:
|
|
53
|
+
|
|
54
|
+
```json
|
|
55
|
+
{
|
|
56
|
+
"feature_toggles": {
|
|
57
|
+
"dispatch_pilot": {
|
|
58
|
+
"enabled": true,
|
|
59
|
+
"source": {
|
|
60
|
+
"provider": "linear",
|
|
61
|
+
"live": true,
|
|
62
|
+
"workspace_id": "workspace-id",
|
|
63
|
+
"team_id": "team-id",
|
|
64
|
+
"project_id": "project-id"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Telegram mutation policy should be explicit too:
|
|
72
|
+
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"feature_toggles": {
|
|
76
|
+
"transport_mutating_controls": {
|
|
77
|
+
"enabled": true,
|
|
78
|
+
"allowed_transports": ["telegram"]
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Nested `coordinator.dispatch_pilot` and `coordinator.transport_mutating_controls` remain valid compatibility paths.
|
|
85
|
+
|
|
86
|
+
## Readiness
|
|
87
|
+
|
|
88
|
+
`codex-orchestrator doctor --format json` is the machine-checkable readiness surface.
|
|
89
|
+
|
|
90
|
+
Expect it to tell you:
|
|
91
|
+
|
|
92
|
+
- whether delegation and DevTools wiring are present
|
|
93
|
+
- whether Linear credentials and binding env are populated
|
|
94
|
+
- whether `CO_LINEAR_WEBHOOK_SECRET` is present
|
|
95
|
+
- whether Telegram polling, token, and allowlist env are populated
|
|
96
|
+
- whether repo scaffolding under `.codex/providers/` exists
|
|
97
|
+
|
|
98
|
+
## Smoke flow
|
|
99
|
+
|
|
100
|
+
Use this minimal smoke flow:
|
|
101
|
+
|
|
102
|
+
1. Check readiness:
|
|
103
|
+
```bash
|
|
104
|
+
codex-orchestrator doctor --format json
|
|
105
|
+
```
|
|
106
|
+
2. Start the host in a dedicated terminal and keep it running:
|
|
107
|
+
```bash
|
|
108
|
+
codex-orchestrator control-host --format json
|
|
109
|
+
```
|
|
110
|
+
This prints a startup readiness payload and then keeps the host alive.
|
|
111
|
+
3. In another terminal, inspect the current status snapshot:
|
|
112
|
+
```bash
|
|
113
|
+
codex-orchestrator co-status --format json
|
|
114
|
+
```
|
|
115
|
+
4. Telegram read-only smoke:
|
|
116
|
+
- send `/help` from an allowlisted chat
|
|
117
|
+
- confirm the bot replies
|
|
118
|
+
5. Linear advisory smoke:
|
|
119
|
+
- confirm the status snapshot reaches `dispatch_pilot.status=ready`
|
|
120
|
+
- confirm the selected tracked issue resolves from the configured workspace, team, or project binding
|
|
121
|
+
|
|
122
|
+
## Help surfaces
|
|
123
|
+
|
|
124
|
+
Use these commands when onboarding an operator:
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
codex-orchestrator doctor --help
|
|
128
|
+
codex-orchestrator control-host --help
|
|
129
|
+
codex-orchestrator co-status --help
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
`control-host --format json` is a persistent host startup handshake, not a one-shot status dump.
|
|
133
|
+
|
|
134
|
+
## macOS launchd supervision
|
|
135
|
+
|
|
136
|
+
On macOS, use the shipped supervision surface instead of a copied local shell wrapper:
|
|
137
|
+
|
|
138
|
+
1. Make sure the `codex-orchestrator` currently on `PATH` is current enough to expose `control-host supervise`:
|
|
139
|
+
- source-checkout operator: from the checkout root, run `npm link` so the active `codex-orchestrator` bin points at this checkout's `bin/codex-orchestrator.js`
|
|
140
|
+
- packaged/global install operator: upgrade the active package (for example `npm install -g @kbediako/codex-orchestrator@latest`) before attempting the migration
|
|
141
|
+
- verify the active CLI with:
|
|
142
|
+
```bash
|
|
143
|
+
codex-orchestrator control-host supervise status --format json
|
|
144
|
+
```
|
|
145
|
+
If the current machine is still on the legacy shim rollout, the JSON status now reports that rollout mode and that migration is still required.
|
|
146
|
+
2. Install the LaunchAgent-backed supervisor from the repo root:
|
|
147
|
+
```bash
|
|
148
|
+
codex-orchestrator control-host supervise install --format json
|
|
149
|
+
```
|
|
150
|
+
This rewrites the existing `com.kbediako.co.control-host` LaunchAgent in place, replacing the legacy shim rollout when present, and records the active package's `bin/codex-orchestrator.js` bootstrap as the managed entrypoint.
|
|
151
|
+
3. Inspect the current launchd, rollout mode, config, and restart-reason state:
|
|
152
|
+
```bash
|
|
153
|
+
codex-orchestrator control-host supervise status --format json
|
|
154
|
+
```
|
|
155
|
+
4. Restart the supervised host after config or env changes:
|
|
156
|
+
```bash
|
|
157
|
+
codex-orchestrator control-host supervise restart --format json
|
|
158
|
+
```
|
|
159
|
+
The restart payload records the previously tracked supervised child pid (`previous_child_pid`), the newly observed supervised child pid when available (`child_pid`), and `cleanup.result`. If launchd leaves the old supervised tree alive, the payload fails closed unless CO can force-clean that exact stale control-host process group first; any forced cleanup also records the orphaned process-group and descendant pids in `cleanup`.
|
|
160
|
+
5. Remove the generated LaunchAgent, config, state, and logs:
|
|
161
|
+
```bash
|
|
162
|
+
codex-orchestrator control-host supervise uninstall --format json
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
`control-host supervise status --format json` is the machine-checkable operator surface for whether the LaunchAgent is still on the legacy shim rollout or the managed packaged rollout, whether migration is still required, whether launchd is loaded, which supervised control-host child pid is currently recorded, and what last restart reason or health state the supervisor recorded.
|
|
166
|
+
|
|
167
|
+
When a replacement host encounters an already-running owner during a restart race, inspect:
|
|
168
|
+
|
|
169
|
+
```bash
|
|
170
|
+
codex-orchestrator co-status --format json
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
The `polling.control_host_owner` payload carries the duplicate/stale owner diagnostic path plus owner pid/token metadata. Treat that owner diagnostic as control-host evidence, not as a provider-worker list: detached `provider-linear-worker` issue processes run independently in their own issue workspaces and are not the restart cleanup target.
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kbediako/codex-orchestrator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/Kbediako/CO"
|
|
7
|
+
"url": "git+https://github.com/Kbediako/CO.git"
|
|
8
8
|
},
|
|
9
9
|
"homepage": "https://github.com/Kbediako/CO#readme",
|
|
10
10
|
"bugs": {
|
|
@@ -12,10 +12,13 @@
|
|
|
12
12
|
},
|
|
13
13
|
"type": "module",
|
|
14
14
|
"bin": {
|
|
15
|
-
"codex-orchestrator": "
|
|
16
|
-
"codex-orch": "
|
|
15
|
+
"codex-orchestrator": "bin/codex-orchestrator.js",
|
|
16
|
+
"codex-orch": "bin/codex-orchestrator.js"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
|
+
".agents/plugins/marketplace.json",
|
|
20
|
+
"plugins/**",
|
|
21
|
+
"bin/codex-orchestrator.js",
|
|
19
22
|
"dist/bin/**",
|
|
20
23
|
"dist/orchestrator/**",
|
|
21
24
|
"dist/packages/**",
|
|
@@ -27,7 +30,8 @@
|
|
|
27
30
|
"templates/**",
|
|
28
31
|
"skills/**",
|
|
29
32
|
"codex.orchestrator.json",
|
|
30
|
-
"docs/
|
|
33
|
+
"docs/public/downstream-setup.md",
|
|
34
|
+
"docs/public/provider-onboarding.md",
|
|
31
35
|
"README.md",
|
|
32
36
|
"LICENSE"
|
|
33
37
|
],
|
|
@@ -49,8 +53,12 @@
|
|
|
49
53
|
"docs:archive-implementation": "node scripts/implementation-docs-archive.mjs",
|
|
50
54
|
"docs:archive-tasks": "node scripts/tasks-archive.mjs",
|
|
51
55
|
"docs:freshness": "node scripts/docs-freshness.mjs --check",
|
|
56
|
+
"docs:freshness:maintain": "node scripts/docs-freshness-maintain.mjs --check",
|
|
57
|
+
"done-closeout:check": "node scripts/done-closeout-provenance-check.mjs --check",
|
|
58
|
+
"repo:stewardship": "node scripts/repo-stewardship-audit.mjs --check",
|
|
52
59
|
"docs:sync": "node --loader ts-node/esm scripts/docs-hygiene.ts --sync",
|
|
53
60
|
"ci:cloud-canary": "node scripts/cloud-canary-ci.mjs",
|
|
61
|
+
"canary:js-repl-usage": "node scripts/js-repl-usage-matrix.mjs",
|
|
54
62
|
"canary:runtime": "node scripts/runtime-mode-canary.mjs",
|
|
55
63
|
"prelint": "node scripts/build-patterns-if-needed.mjs",
|
|
56
64
|
"lint": "eslint orchestrator/src orchestrator/tests packages/orchestrator/src packages/orchestrator/tests packages/shared adapters evaluation/harness evaluation/tests --ext .ts,.tsx",
|
|
@@ -58,11 +66,14 @@
|
|
|
58
66
|
"pack:smoke": "node scripts/pack-smoke.mjs",
|
|
59
67
|
"prepack": "npm run clean:dist && npm run build && npm run pack:audit",
|
|
60
68
|
"setup:design-tools": "node --loader ts-node/esm scripts/setup-design-tools.ts",
|
|
61
|
-
"test": "npm run test:
|
|
62
|
-
"test:
|
|
63
|
-
"test:
|
|
64
|
-
"test:
|
|
65
|
-
"
|
|
69
|
+
"test": "npm run test:core --",
|
|
70
|
+
"test:core": "vitest run --config vitest.config.core.ts",
|
|
71
|
+
"test:all": "node scripts/run-test-all.mjs",
|
|
72
|
+
"test:orchestrator": "npm run test:core --",
|
|
73
|
+
"test:adapters": "vitest run --passWithNoTests --config vitest.config.adapters.ts",
|
|
74
|
+
"test:evaluation": "vitest run --passWithNoTests --config vitest.config.evaluation.ts",
|
|
75
|
+
"eval:test": "npm run test:evaluation --",
|
|
76
|
+
"eval:provider-adoption": "node scripts/provider-linear-adoption-eval.mjs",
|
|
66
77
|
"test:watch": "vitest",
|
|
67
78
|
"review": "node --loader ts-node/esm scripts/run-review.ts",
|
|
68
79
|
"pr:watch-merge": "node scripts/pr-monitor-merge.mjs",
|
|
@@ -126,5 +137,13 @@
|
|
|
126
137
|
"ink": "^4.4.1",
|
|
127
138
|
"js-yaml": "^4.1.0",
|
|
128
139
|
"react": "^18.3.1"
|
|
129
|
-
}
|
|
140
|
+
},
|
|
141
|
+
"description": "Codex-driven orchestration CLI with auditable manifests, downstream repo bootstrapping, and delegation MCP workflows.",
|
|
142
|
+
"main": "dist/orchestrator/src/cli/orchestrator.js",
|
|
143
|
+
"directories": {
|
|
144
|
+
"doc": "docs",
|
|
145
|
+
"test": "tests"
|
|
146
|
+
},
|
|
147
|
+
"keywords": [],
|
|
148
|
+
"author": ""
|
|
130
149
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "codex-orchestrator",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Codex Orchestrator plugin metadata for the packaged CO runtime.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Kbediako",
|
|
7
|
+
"url": "https://github.com/Kbediako"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/Kbediako/CO#readme",
|
|
10
|
+
"repository": "https://github.com/Kbediako/CO",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"codex",
|
|
14
|
+
"mcp",
|
|
15
|
+
"orchestrator"
|
|
16
|
+
],
|
|
17
|
+
"mcpServers": "./.mcp.json",
|
|
18
|
+
"interface": {
|
|
19
|
+
"displayName": "Codex Orchestrator",
|
|
20
|
+
"shortDescription": "Register CO's MCP orchestration server in Codex.",
|
|
21
|
+
"longDescription": "Connect Codex to Codex Orchestrator's MCP server for auditable task flows, manifests, and delegation workflows.",
|
|
22
|
+
"developerName": "Kbediako",
|
|
23
|
+
"category": "Productivity",
|
|
24
|
+
"capabilities": [
|
|
25
|
+
"MCP",
|
|
26
|
+
"Automation"
|
|
27
|
+
],
|
|
28
|
+
"screenshots": []
|
|
29
|
+
}
|
|
30
|
+
}
|