takt 0.48.0 → 0.50.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/README.md +15 -0
- package/builtins/en/config.yaml +6 -0
- package/builtins/en/facets/instructions/ai-antipattern-review.md +5 -0
- package/builtins/en/facets/instructions/exec-loop-monitor.md +15 -0
- package/builtins/en/facets/instructions/exec-replan.md +5 -0
- package/builtins/en/facets/instructions/exec-review.md +10 -0
- package/builtins/en/facets/instructions/exec-worker.md +5 -0
- package/builtins/en/facets/instructions/findings-manager.md +6 -2
- package/builtins/en/facets/instructions/loop-monitor-fix-replan.md +21 -0
- package/builtins/en/facets/instructions/loop-monitor-replan.md +10 -0
- package/builtins/en/facets/instructions/plan-maintenance.md +10 -7
- package/builtins/en/facets/instructions/plan.md +17 -8
- package/builtins/en/facets/instructions/review-arch.md +5 -0
- package/builtins/en/facets/instructions/review-coding.md +15 -6
- package/builtins/en/facets/instructions/review-cqrs-es.md +9 -0
- package/builtins/en/facets/instructions/review-implementation-semantics.md +18 -0
- package/builtins/en/facets/instructions/review-merge-readiness.md +14 -0
- package/builtins/en/facets/instructions/supervise-maintenance.md +2 -2
- package/builtins/en/facets/instructions/supervise.md +8 -3
- package/builtins/en/facets/instructions/write-tests-first.md +23 -3
- package/builtins/en/facets/knowledge/architecture.md +25 -0
- package/builtins/en/facets/knowledge/cqrs-es.md +718 -235
- package/builtins/en/facets/knowledge/implementation-semantics.md +104 -0
- package/builtins/en/facets/knowledge/takt.md +26 -2
- package/builtins/en/facets/knowledge/unit-testing.md +14 -0
- package/builtins/en/facets/output-contracts/ai-antipattern-review.md +11 -1
- package/builtins/en/facets/output-contracts/architecture-review.md +6 -1
- package/builtins/en/facets/output-contracts/coding-review.md +11 -1
- package/builtins/en/facets/output-contracts/exec-review-result.md +13 -0
- package/builtins/en/facets/output-contracts/findings-manager.md +14 -0
- package/builtins/en/facets/output-contracts/implementation-semantics-review-finding-contract.md +28 -0
- package/builtins/en/facets/output-contracts/implementation-semantics-review.md +50 -0
- package/builtins/en/facets/output-contracts/{pure-review-finding-contract.md → merge-readiness-review-finding-contract.md} +14 -8
- package/builtins/en/facets/output-contracts/{pure-review.md → merge-readiness-review.md} +17 -11
- package/builtins/en/facets/output-contracts/supervisor-validation.md +6 -2
- package/builtins/en/facets/output-contracts/test-report.md +25 -0
- package/builtins/en/facets/personas/exec-assistant.md +3 -0
- package/builtins/en/facets/personas/exec-worker.md +3 -0
- package/builtins/en/facets/personas/implementation-semantics-reviewer.md +27 -0
- package/builtins/en/facets/personas/merge-readiness-reviewer.md +28 -0
- package/builtins/en/facets/personas/supervisor.md +1 -1
- package/builtins/en/facets/policies/ai-antipattern.md +18 -0
- package/builtins/en/facets/policies/existing-system-respect.md +13 -0
- package/builtins/en/facets/policies/review.md +17 -0
- package/builtins/en/facets/policies/testing.md +14 -0
- package/builtins/en/workflow-categories.yaml +13 -1
- package/builtins/en/workflows/audit-architecture-backend.yaml +1 -0
- package/builtins/en/workflows/audit-architecture-dual.yaml +1 -0
- package/builtins/en/workflows/audit-architecture-frontend.yaml +1 -0
- package/builtins/en/workflows/audit-architecture.yaml +1 -0
- package/builtins/en/workflows/audit-e2e.yaml +1 -0
- package/builtins/en/workflows/audit-security.yaml +1 -0
- package/builtins/en/workflows/audit-unit.yaml +1 -0
- package/builtins/en/workflows/backend-cqrs-for-local-llm.yaml +288 -0
- package/builtins/en/workflows/backend-cqrs-mini.yaml +1 -0
- package/builtins/en/workflows/backend-cqrs.yaml +28 -84
- package/builtins/en/workflows/backend-for-local-llm.yaml +284 -0
- package/builtins/en/workflows/backend-maintenance.yaml +32 -89
- package/builtins/en/workflows/backend-mini.yaml +1 -0
- package/builtins/en/workflows/backend.yaml +25 -83
- package/builtins/en/workflows/{takt-default-with-fc.yaml → cli.yaml} +16 -4
- package/builtins/en/workflows/deep-research.yaml +1 -0
- package/builtins/en/workflows/default-high.yaml +3 -32
- package/builtins/en/workflows/default-peer-review.yaml +16 -52
- package/builtins/en/workflows/default.yaml +2 -1
- package/builtins/en/workflows/draft.yaml +1 -1
- package/builtins/en/workflows/dual-cqrs-mini.yaml +1 -0
- package/builtins/en/workflows/dual-cqrs.yaml +28 -87
- package/builtins/en/workflows/dual-for-local-llm.yaml +312 -0
- package/builtins/en/workflows/dual-mini.yaml +1 -0
- package/builtins/en/workflows/dual.yaml +29 -57
- package/builtins/en/workflows/frontend-for-local-llm.yaml +289 -0
- package/builtins/en/workflows/frontend-maintenance.yaml +34 -91
- package/builtins/en/workflows/frontend-mini.yaml +1 -0
- package/builtins/en/workflows/frontend.yaml +27 -85
- package/builtins/en/workflows/merge-readiness-dual-final-gate.yaml +92 -0
- package/builtins/en/workflows/merge-readiness-final-gate.yaml +79 -0
- package/builtins/en/workflows/{peer-review-with-fc.yaml → peer-review-for-local-llm.yaml} +49 -38
- package/builtins/en/workflows/peer-review.yaml +26 -21
- package/builtins/en/workflows/research.yaml +1 -0
- package/builtins/en/workflows/review-backend-cqrs.yaml +63 -35
- package/builtins/en/workflows/review-backend.yaml +63 -35
- package/builtins/en/workflows/review-default.yaml +138 -107
- package/builtins/en/workflows/review-dual-cqrs.yaml +63 -35
- package/builtins/en/workflows/review-dual.yaml +63 -35
- package/builtins/en/workflows/review-fix-backend-cqrs.yaml +27 -87
- package/builtins/en/workflows/review-fix-backend.yaml +25 -86
- package/builtins/en/workflows/review-fix-default.yaml +17 -87
- package/builtins/en/workflows/review-fix-dual-cqrs.yaml +29 -90
- package/builtins/en/workflows/review-fix-dual.yaml +27 -89
- package/builtins/en/workflows/review-fix-frontend.yaml +25 -87
- package/builtins/en/workflows/review-fix-takt-default.yaml +67 -362
- package/builtins/en/workflows/review-frontend.yaml +63 -35
- package/builtins/en/workflows/review-takt-default.yaml +140 -109
- package/builtins/en/workflows/takt-default-for-local-llm.yaml +283 -0
- package/builtins/en/workflows/takt-default-refresh-all.yaml +20 -58
- package/builtins/en/workflows/takt-default-refresh-fast.yaml +19 -56
- package/builtins/en/workflows/takt-default.yaml +3 -25
- package/builtins/en/workflows/terraform.yaml +81 -44
- package/builtins/exec/presets/backend.yaml +31 -0
- package/builtins/exec/presets/dual.yaml +34 -0
- package/builtins/exec/presets/frontend.yaml +31 -0
- package/builtins/exec/presets/research.yaml +45 -0
- package/builtins/ja/config.yaml +6 -0
- package/builtins/ja/facets/instructions/ai-antipattern-review.md +5 -0
- package/builtins/ja/facets/instructions/exec-loop-monitor.md +15 -0
- package/builtins/ja/facets/instructions/exec-replan.md +5 -0
- package/builtins/ja/facets/instructions/exec-review.md +10 -0
- package/builtins/ja/facets/instructions/exec-worker.md +5 -0
- package/builtins/ja/facets/instructions/findings-manager.md +6 -2
- package/builtins/ja/facets/instructions/implement-maintenance.md +4 -15
- package/builtins/ja/facets/instructions/implement.md +2 -14
- package/builtins/ja/facets/instructions/loop-monitor-fix-replan.md +21 -0
- package/builtins/ja/facets/instructions/loop-monitor-replan.md +10 -0
- package/builtins/ja/facets/instructions/plan-maintenance.md +10 -7
- package/builtins/ja/facets/instructions/plan.md +9 -6
- package/builtins/ja/facets/instructions/review-arch.md +5 -0
- package/builtins/ja/facets/instructions/review-coding.md +15 -6
- package/builtins/ja/facets/instructions/review-cqrs-es.md +9 -0
- package/builtins/ja/facets/instructions/review-implementation-semantics.md +17 -0
- package/builtins/ja/facets/instructions/review-merge-readiness.md +14 -0
- package/builtins/ja/facets/instructions/supervise-maintenance.md +2 -2
- package/builtins/ja/facets/instructions/supervise.md +8 -3
- package/builtins/ja/facets/instructions/write-tests-first.md +23 -3
- package/builtins/ja/facets/knowledge/architecture.md +25 -0
- package/builtins/ja/facets/knowledge/cqrs-es.md +211 -16
- package/builtins/ja/facets/knowledge/implementation-semantics.md +104 -0
- package/builtins/ja/facets/knowledge/takt.md +26 -2
- package/builtins/ja/facets/knowledge/unit-testing.md +14 -0
- package/builtins/ja/facets/output-contracts/ai-antipattern-review.md +11 -1
- package/builtins/ja/facets/output-contracts/architecture-review.md +6 -1
- package/builtins/ja/facets/output-contracts/coding-review.md +11 -1
- package/builtins/ja/facets/output-contracts/exec-review-result.md +13 -0
- package/builtins/ja/facets/output-contracts/findings-manager.md +14 -0
- package/builtins/ja/facets/output-contracts/implementation-semantics-review-finding-contract.md +24 -0
- package/builtins/ja/facets/output-contracts/implementation-semantics-review.md +50 -0
- package/builtins/ja/facets/output-contracts/{pure-review-finding-contract.md → merge-readiness-review-finding-contract.md} +14 -8
- package/builtins/ja/facets/output-contracts/{pure-review.md → merge-readiness-review.md} +17 -11
- package/builtins/ja/facets/output-contracts/supervisor-validation.md +6 -2
- package/builtins/ja/facets/output-contracts/test-report.md +25 -0
- package/builtins/ja/facets/partials/instructions/implement-common.md +13 -0
- package/builtins/ja/facets/personas/exec-assistant.md +3 -0
- package/builtins/ja/facets/personas/exec-worker.md +3 -0
- package/builtins/ja/facets/personas/implementation-semantics-reviewer.md +27 -0
- package/builtins/ja/facets/personas/merge-readiness-reviewer.md +28 -0
- package/builtins/ja/facets/personas/supervisor.md +1 -1
- package/builtins/ja/facets/policies/ai-antipattern.md +18 -0
- package/builtins/ja/facets/policies/coding.md +1 -0
- package/builtins/ja/facets/policies/existing-system-respect.md +13 -0
- package/builtins/ja/facets/policies/review.md +18 -0
- package/builtins/ja/facets/policies/testing.md +19 -2
- package/builtins/ja/workflow-categories.yaml +13 -1
- package/builtins/ja/workflows/audit-architecture-backend.yaml +1 -0
- package/builtins/ja/workflows/audit-architecture-dual.yaml +1 -0
- package/builtins/ja/workflows/audit-architecture-frontend.yaml +1 -0
- package/builtins/ja/workflows/audit-architecture.yaml +1 -0
- package/builtins/ja/workflows/audit-e2e.yaml +1 -0
- package/builtins/ja/workflows/audit-security.yaml +1 -0
- package/builtins/ja/workflows/audit-unit.yaml +1 -0
- package/builtins/ja/workflows/backend-cqrs-for-local-llm.yaml +287 -0
- package/builtins/ja/workflows/backend-cqrs-mini.yaml +1 -0
- package/builtins/ja/workflows/backend-cqrs.yaml +28 -84
- package/builtins/ja/workflows/backend-for-local-llm.yaml +283 -0
- package/builtins/ja/workflows/backend-maintenance.yaml +32 -89
- package/builtins/ja/workflows/backend-mini.yaml +1 -0
- package/builtins/ja/workflows/backend.yaml +25 -83
- package/builtins/ja/workflows/{takt-default-with-fc.yaml → cli.yaml} +16 -4
- package/builtins/ja/workflows/deep-research.yaml +1 -0
- package/builtins/ja/workflows/default-high.yaml +3 -32
- package/builtins/ja/workflows/default-peer-review.yaml +16 -52
- package/builtins/ja/workflows/default.yaml +2 -1
- package/builtins/ja/workflows/draft.yaml +1 -1
- package/builtins/ja/workflows/dual-cqrs-mini.yaml +1 -0
- package/builtins/ja/workflows/dual-cqrs.yaml +28 -87
- package/builtins/ja/workflows/dual-for-local-llm.yaml +311 -0
- package/builtins/ja/workflows/dual-mini.yaml +1 -0
- package/builtins/ja/workflows/dual.yaml +29 -57
- package/builtins/ja/workflows/frontend-for-local-llm.yaml +288 -0
- package/builtins/ja/workflows/frontend-maintenance.yaml +34 -91
- package/builtins/ja/workflows/frontend-mini.yaml +1 -0
- package/builtins/ja/workflows/frontend.yaml +27 -85
- package/builtins/ja/workflows/merge-readiness-dual-final-gate.yaml +92 -0
- package/builtins/ja/workflows/merge-readiness-final-gate.yaml +79 -0
- package/builtins/ja/workflows/{peer-review-with-fc.yaml → peer-review-for-local-llm.yaml} +49 -38
- package/builtins/ja/workflows/peer-review.yaml +26 -21
- package/builtins/ja/workflows/research.yaml +1 -0
- package/builtins/ja/workflows/review-backend-cqrs.yaml +63 -35
- package/builtins/ja/workflows/review-backend.yaml +63 -35
- package/builtins/ja/workflows/review-default.yaml +111 -79
- package/builtins/ja/workflows/review-dual-cqrs.yaml +63 -35
- package/builtins/ja/workflows/review-dual.yaml +63 -35
- package/builtins/ja/workflows/review-fix-backend-cqrs.yaml +27 -87
- package/builtins/ja/workflows/review-fix-backend.yaml +25 -86
- package/builtins/ja/workflows/review-fix-default.yaml +17 -87
- package/builtins/ja/workflows/review-fix-dual-cqrs.yaml +29 -90
- package/builtins/ja/workflows/review-fix-dual.yaml +27 -89
- package/builtins/ja/workflows/review-fix-frontend.yaml +25 -87
- package/builtins/ja/workflows/review-fix-takt-default.yaml +67 -362
- package/builtins/ja/workflows/review-frontend.yaml +63 -35
- package/builtins/ja/workflows/review-takt-default.yaml +112 -80
- package/builtins/ja/workflows/takt-default-for-local-llm.yaml +282 -0
- package/builtins/ja/workflows/takt-default-refresh-all.yaml +20 -58
- package/builtins/ja/workflows/takt-default-refresh-fast.yaml +19 -56
- package/builtins/ja/workflows/takt-default.yaml +3 -25
- package/builtins/ja/workflows/terraform.yaml +81 -44
- package/builtins/skill/SKILL.md +1 -1
- package/builtins/skill/references/engine.md +1 -15
- package/builtins/skill-codex/SKILL.md +1 -1
- package/builtins/skill-codex/references/engine.md +0 -2
- package/dist/agents/decompose-task-usecase.d.ts +1 -1
- package/dist/agents/decompose-task-usecase.d.ts.map +1 -1
- package/dist/agents/decompose-task-usecase.js +2 -4
- package/dist/agents/decompose-task-usecase.js.map +1 -1
- package/dist/agents/judge-utils.d.ts.map +1 -1
- package/dist/agents/judge-utils.js +4 -3
- package/dist/agents/judge-utils.js.map +1 -1
- package/dist/agents/runner.d.ts.map +1 -1
- package/dist/agents/runner.js +7 -6
- package/dist/agents/runner.js.map +1 -1
- package/dist/agents/structured-caller/prompt-based-structured-caller.d.ts.map +1 -1
- package/dist/agents/structured-caller/prompt-based-structured-caller.js +2 -3
- package/dist/agents/structured-caller/prompt-based-structured-caller.js.map +1 -1
- package/dist/agents/structured-caller/shared.d.ts.map +1 -1
- package/dist/agents/structured-caller/shared.js +2 -9
- package/dist/agents/structured-caller/shared.js.map +1 -1
- package/dist/app/acp/agent.d.ts +28 -0
- package/dist/app/acp/agent.d.ts.map +1 -0
- package/dist/app/acp/agent.js +279 -0
- package/dist/app/acp/agent.js.map +1 -0
- package/dist/app/acp/confirmationBridge.d.ts +5 -0
- package/dist/app/acp/confirmationBridge.d.ts.map +1 -0
- package/dist/app/acp/confirmationBridge.js +194 -0
- package/dist/app/acp/confirmationBridge.js.map +1 -0
- package/dist/app/acp/conversationFactory.d.ts +4 -0
- package/dist/app/acp/conversationFactory.d.ts.map +1 -0
- package/dist/app/acp/conversationFactory.js +33 -0
- package/dist/app/acp/conversationFactory.js.map +1 -0
- package/dist/app/acp/enqueue.d.ts +33 -0
- package/dist/app/acp/enqueue.d.ts.map +1 -0
- package/dist/app/acp/enqueue.js +45 -0
- package/dist/app/acp/enqueue.js.map +1 -0
- package/dist/app/acp/index.d.ts +7 -0
- package/dist/app/acp/index.d.ts.map +1 -0
- package/dist/app/acp/index.js +125 -0
- package/dist/app/acp/index.js.map +1 -0
- package/dist/app/acp/intent.d.ts +10 -0
- package/dist/app/acp/intent.d.ts.map +1 -0
- package/dist/app/acp/intent.js +210 -0
- package/dist/app/acp/intent.js.map +1 -0
- package/dist/app/acp/mcpServers.d.ts +4 -0
- package/dist/app/acp/mcpServers.d.ts.map +1 -0
- package/dist/app/acp/mcpServers.js +51 -0
- package/dist/app/acp/mcpServers.js.map +1 -0
- package/dist/app/acp/promptContent.d.ts +3 -0
- package/dist/app/acp/promptContent.d.ts.map +1 -0
- package/dist/app/acp/promptContent.js +23 -0
- package/dist/app/acp/promptContent.js.map +1 -0
- package/dist/app/acp/sessionStore.d.ts +19 -0
- package/dist/app/acp/sessionStore.d.ts.map +1 -0
- package/dist/app/acp/sessionStore.js +50 -0
- package/dist/app/acp/sessionStore.js.map +1 -0
- package/dist/app/acp/sessionUpdates.d.ts +8 -0
- package/dist/app/acp/sessionUpdates.d.ts.map +1 -0
- package/dist/app/acp/sessionUpdates.js +108 -0
- package/dist/app/acp/sessionUpdates.js.map +1 -0
- package/dist/app/acp/taskContext.d.ts +17 -0
- package/dist/app/acp/taskContext.d.ts.map +1 -0
- package/dist/app/acp/taskContext.js +81 -0
- package/dist/app/acp/taskContext.js.map +1 -0
- package/dist/app/acp/types.d.ts +33 -0
- package/dist/app/acp/types.d.ts.map +1 -0
- package/dist/app/acp/types.js +2 -0
- package/dist/app/acp/types.js.map +1 -0
- package/dist/app/cli/commands.js +13 -0
- package/dist/app/cli/commands.js.map +1 -1
- package/dist/app/cli/program.d.ts.map +1 -1
- package/dist/app/cli/program.js +2 -3
- package/dist/app/cli/program.js.map +1 -1
- package/dist/app/mcp/index.d.ts +3 -0
- package/dist/app/mcp/index.d.ts.map +1 -0
- package/dist/app/mcp/index.js +16 -0
- package/dist/app/mcp/index.js.map +1 -0
- package/dist/app/mcp/server.d.ts +2 -0
- package/dist/app/mcp/server.d.ts.map +1 -0
- package/dist/app/mcp/server.js +2 -0
- package/dist/app/mcp/server.js.map +1 -0
- package/dist/core/config/provider-resolution.d.ts +1 -0
- package/dist/core/config/provider-resolution.d.ts.map +1 -1
- package/dist/core/config/provider-resolution.js +19 -0
- package/dist/core/config/provider-resolution.js.map +1 -1
- package/dist/core/models/finding-schemas.d.ts +129 -10
- package/dist/core/models/finding-schemas.d.ts.map +1 -1
- package/dist/core/models/finding-schemas.js +79 -9
- package/dist/core/models/finding-schemas.js.map +1 -1
- package/dist/core/models/finding-types.d.ts +39 -2
- package/dist/core/models/finding-types.d.ts.map +1 -1
- package/dist/core/models/finding-types.js +3 -2
- package/dist/core/models/finding-types.js.map +1 -1
- package/dist/core/models/workflow-condition-expression.d.ts +17 -0
- package/dist/core/models/workflow-condition-expression.d.ts.map +1 -1
- package/dist/core/models/workflow-condition-expression.js +85 -2
- package/dist/core/models/workflow-condition-expression.js.map +1 -1
- package/dist/core/models/workflow-schemas.d.ts +222 -22
- package/dist/core/models/workflow-schemas.d.ts.map +1 -1
- package/dist/core/models/workflow-schemas.js +38 -4
- package/dist/core/models/workflow-schemas.js.map +1 -1
- package/dist/core/models/workflow-types.d.ts +14 -0
- package/dist/core/models/workflow-types.d.ts.map +1 -1
- package/dist/core/runtime/runtime-environment.d.ts.map +1 -1
- package/dist/core/runtime/runtime-environment.js +19 -0
- package/dist/core/runtime/runtime-environment.js.map +1 -1
- package/dist/core/workflow/engine/LoopMonitorJudgeRunner.d.ts +2 -2
- package/dist/core/workflow/engine/LoopMonitorJudgeRunner.d.ts.map +1 -1
- package/dist/core/workflow/engine/LoopMonitorJudgeRunner.js +8 -7
- package/dist/core/workflow/engine/LoopMonitorJudgeRunner.js.map +1 -1
- package/dist/core/workflow/engine/OptionsBuilder.d.ts +15 -5
- package/dist/core/workflow/engine/OptionsBuilder.d.ts.map +1 -1
- package/dist/core/workflow/engine/OptionsBuilder.js +93 -16
- package/dist/core/workflow/engine/OptionsBuilder.js.map +1 -1
- package/dist/core/workflow/engine/ParallelRunner.d.ts +2 -0
- package/dist/core/workflow/engine/ParallelRunner.d.ts.map +1 -1
- package/dist/core/workflow/engine/ParallelRunner.js +131 -23
- package/dist/core/workflow/engine/ParallelRunner.js.map +1 -1
- package/dist/core/workflow/engine/StepExecutor.d.ts +10 -0
- package/dist/core/workflow/engine/StepExecutor.d.ts.map +1 -1
- package/dist/core/workflow/engine/StepExecutor.js +90 -38
- package/dist/core/workflow/engine/StepExecutor.js.map +1 -1
- package/dist/core/workflow/engine/TeamLeaderRunner.d.ts.map +1 -1
- package/dist/core/workflow/engine/TeamLeaderRunner.js +3 -0
- package/dist/core/workflow/engine/TeamLeaderRunner.js.map +1 -1
- package/dist/core/workflow/engine/WorkflowEngine.d.ts.map +1 -1
- package/dist/core/workflow/engine/WorkflowEngine.js +8 -3
- package/dist/core/workflow/engine/WorkflowEngine.js.map +1 -1
- package/dist/core/workflow/engine/WorkflowEngineSetup.d.ts.map +1 -1
- package/dist/core/workflow/engine/WorkflowEngineSetup.js +5 -3
- package/dist/core/workflow/engine/WorkflowEngineSetup.js.map +1 -1
- package/dist/core/workflow/engine/WorkflowRunLoop.d.ts.map +1 -1
- package/dist/core/workflow/engine/WorkflowRunLoop.js +31 -0
- package/dist/core/workflow/engine/WorkflowRunLoop.js.map +1 -1
- package/dist/core/workflow/engine/WorkflowValidator.d.ts.map +1 -1
- package/dist/core/workflow/engine/WorkflowValidator.js +25 -12
- package/dist/core/workflow/engine/WorkflowValidator.js.map +1 -1
- package/dist/core/workflow/engine/engine-provider-options.d.ts +2 -1
- package/dist/core/workflow/engine/engine-provider-options.d.ts.map +1 -1
- package/dist/core/workflow/engine/engine-provider-options.js +30 -6
- package/dist/core/workflow/engine/engine-provider-options.js.map +1 -1
- package/dist/core/workflow/engine/team-leader-part-runner.d.ts.map +1 -1
- package/dist/core/workflow/engine/team-leader-part-runner.js +3 -1
- package/dist/core/workflow/engine/team-leader-part-runner.js.map +1 -1
- package/dist/core/workflow/evaluation/RuleEvaluator.d.ts +0 -1
- package/dist/core/workflow/evaluation/RuleEvaluator.d.ts.map +1 -1
- package/dist/core/workflow/evaluation/RuleEvaluator.js +22 -34
- package/dist/core/workflow/evaluation/RuleEvaluator.js.map +1 -1
- package/dist/core/workflow/evaluation/rule-utils.d.ts +33 -1
- package/dist/core/workflow/evaluation/rule-utils.d.ts.map +1 -1
- package/dist/core/workflow/evaluation/rule-utils.js +77 -5
- package/dist/core/workflow/evaluation/rule-utils.js.map +1 -1
- package/dist/core/workflow/evaluation/when-evaluator.d.ts +1 -0
- package/dist/core/workflow/evaluation/when-evaluator.d.ts.map +1 -1
- package/dist/core/workflow/evaluation/when-evaluator.js +18 -40
- package/dist/core/workflow/evaluation/when-evaluator.js.map +1 -1
- package/dist/core/workflow/findings/context.d.ts +4 -0
- package/dist/core/workflow/findings/context.d.ts.map +1 -1
- package/dist/core/workflow/findings/context.js +27 -0
- package/dist/core/workflow/findings/context.js.map +1 -1
- package/dist/core/workflow/findings/manager-output-validation.d.ts +2 -0
- package/dist/core/workflow/findings/manager-output-validation.d.ts.map +1 -1
- package/dist/core/workflow/findings/manager-output-validation.js +145 -8
- package/dist/core/workflow/findings/manager-output-validation.js.map +1 -1
- package/dist/core/workflow/findings/manager-runner.d.ts +13 -3
- package/dist/core/workflow/findings/manager-runner.d.ts.map +1 -1
- package/dist/core/workflow/findings/manager-runner.js +28 -27
- package/dist/core/workflow/findings/manager-runner.js.map +1 -1
- package/dist/core/workflow/findings/reconciler.d.ts +1 -0
- package/dist/core/workflow/findings/reconciler.d.ts.map +1 -1
- package/dist/core/workflow/findings/reconciler.js +90 -4
- package/dist/core/workflow/findings/reconciler.js.map +1 -1
- package/dist/core/workflow/instruction/InstructionBuilder.d.ts.map +1 -1
- package/dist/core/workflow/instruction/InstructionBuilder.js +18 -2
- package/dist/core/workflow/instruction/InstructionBuilder.js.map +1 -1
- package/dist/core/workflow/instruction/instruction-context.d.ts +4 -0
- package/dist/core/workflow/instruction/instruction-context.d.ts.map +1 -1
- package/dist/core/workflow/instruction/instruction-context.js.map +1 -1
- package/dist/core/workflow/instruction/status-rules.d.ts.map +1 -1
- package/dist/core/workflow/instruction/status-rules.js +7 -2
- package/dist/core/workflow/instruction/status-rules.js.map +1 -1
- package/dist/core/workflow/phase-runner.d.ts +17 -10
- package/dist/core/workflow/phase-runner.d.ts.map +1 -1
- package/dist/core/workflow/phase-runner.js +1 -1
- package/dist/core/workflow/phase-runner.js.map +1 -1
- package/dist/core/workflow/provider-model-requirements.d.ts +6 -0
- package/dist/core/workflow/provider-model-requirements.d.ts.map +1 -0
- package/dist/core/workflow/provider-model-requirements.js +15 -0
- package/dist/core/workflow/provider-model-requirements.js.map +1 -0
- package/dist/core/workflow/provider-resolution.d.ts +4 -6
- package/dist/core/workflow/provider-resolution.d.ts.map +1 -1
- package/dist/core/workflow/provider-resolution.js +19 -11
- package/dist/core/workflow/provider-resolution.js.map +1 -1
- package/dist/core/workflow/report-phase-runner.d.ts +5 -2
- package/dist/core/workflow/report-phase-runner.d.ts.map +1 -1
- package/dist/core/workflow/report-phase-runner.js +135 -43
- package/dist/core/workflow/report-phase-runner.js.map +1 -1
- package/dist/core/workflow/session-key.d.ts +4 -1
- package/dist/core/workflow/session-key.d.ts.map +1 -1
- package/dist/core/workflow/session-key.js +5 -2
- package/dist/core/workflow/session-key.js.map +1 -1
- package/dist/core/workflow/status-judgment-phase.d.ts +2 -2
- package/dist/core/workflow/status-judgment-phase.d.ts.map +1 -1
- package/dist/core/workflow/status-judgment-phase.js +1 -7
- package/dist/core/workflow/status-judgment-phase.js.map +1 -1
- package/dist/core/workflow/system/system-step-effect-runner.js +2 -2
- package/dist/core/workflow/system/system-step-effect-runner.js.map +1 -1
- package/dist/core/workflow/system/system-step-services.d.ts +101 -0
- package/dist/core/workflow/system/system-step-services.d.ts.map +1 -1
- package/dist/core/workflow/types.d.ts +7 -3
- package/dist/core/workflow/types.d.ts.map +1 -1
- package/dist/features/analytics/events.d.ts +2 -1
- package/dist/features/analytics/events.d.ts.map +1 -1
- package/dist/features/catalog/catalogFacets.d.ts +11 -1
- package/dist/features/catalog/catalogFacets.d.ts.map +1 -1
- package/dist/features/catalog/catalogFacets.js +36 -10
- package/dist/features/catalog/catalogFacets.js.map +1 -1
- package/dist/features/exec/assistantSession.d.ts +18 -0
- package/dist/features/exec/assistantSession.d.ts.map +1 -0
- package/dist/features/exec/assistantSession.js +51 -0
- package/dist/features/exec/assistantSession.js.map +1 -0
- package/dist/features/exec/command.d.ts +9 -0
- package/dist/features/exec/command.d.ts.map +1 -0
- package/dist/features/exec/command.js +143 -0
- package/dist/features/exec/command.js.map +1 -0
- package/dist/features/exec/commandAvailability.d.ts +4 -0
- package/dist/features/exec/commandAvailability.d.ts.map +1 -0
- package/dist/features/exec/commandAvailability.js +10 -0
- package/dist/features/exec/commandAvailability.js.map +1 -0
- package/dist/features/exec/configOps.d.ts +13 -0
- package/dist/features/exec/configOps.d.ts.map +1 -0
- package/dist/features/exec/configOps.js +129 -0
- package/dist/features/exec/configOps.js.map +1 -0
- package/dist/features/exec/configValidation.d.ts +15 -0
- package/dist/features/exec/configValidation.d.ts.map +1 -0
- package/dist/features/exec/configValidation.js +146 -0
- package/dist/features/exec/configValidation.js.map +1 -0
- package/dist/features/exec/defaults.d.ts +3 -0
- package/dist/features/exec/defaults.d.ts.map +1 -0
- package/dist/features/exec/defaults.js +30 -0
- package/dist/features/exec/defaults.js.map +1 -0
- package/dist/features/exec/facetEditor.d.ts +5 -0
- package/dist/features/exec/facetEditor.d.ts.map +1 -0
- package/dist/features/exec/facetEditor.js +293 -0
- package/dist/features/exec/facetEditor.js.map +1 -0
- package/dist/features/exec/index.d.ts +2 -0
- package/dist/features/exec/index.d.ts.map +1 -0
- package/dist/features/exec/index.js +2 -0
- package/dist/features/exec/index.js.map +1 -0
- package/dist/features/exec/labels.d.ts +11 -0
- package/dist/features/exec/labels.d.ts.map +1 -0
- package/dist/features/exec/labels.js +20 -0
- package/dist/features/exec/labels.js.map +1 -0
- package/dist/features/exec/presetSelection.d.ts +3 -0
- package/dist/features/exec/presetSelection.d.ts.map +1 -0
- package/dist/features/exec/presetSelection.js +16 -0
- package/dist/features/exec/presetSelection.js.map +1 -0
- package/dist/features/exec/presetSetup.d.ts +7 -0
- package/dist/features/exec/presetSetup.d.ts.map +1 -0
- package/dist/features/exec/presetSetup.js +120 -0
- package/dist/features/exec/presetSetup.js.map +1 -0
- package/dist/features/exec/presetStore.d.ts +25 -0
- package/dist/features/exec/presetStore.d.ts.map +1 -0
- package/dist/features/exec/presetStore.js +326 -0
- package/dist/features/exec/presetStore.js.map +1 -0
- package/dist/features/exec/projectLocalFiles.d.ts +9 -0
- package/dist/features/exec/projectLocalFiles.d.ts.map +1 -0
- package/dist/features/exec/projectLocalFiles.js +111 -0
- package/dist/features/exec/projectLocalFiles.js.map +1 -0
- package/dist/features/exec/promptUtils.d.ts +8 -0
- package/dist/features/exec/promptUtils.d.ts.map +1 -0
- package/dist/features/exec/promptUtils.js +32 -0
- package/dist/features/exec/promptUtils.js.map +1 -0
- package/dist/features/exec/runtimeConfig.d.ts +13 -0
- package/dist/features/exec/runtimeConfig.d.ts.map +1 -0
- package/dist/features/exec/runtimeConfig.js +59 -0
- package/dist/features/exec/runtimeConfig.js.map +1 -0
- package/dist/features/exec/setupMenu.d.ts +5 -0
- package/dist/features/exec/setupMenu.d.ts.map +1 -0
- package/dist/features/exec/setupMenu.js +431 -0
- package/dist/features/exec/setupMenu.js.map +1 -0
- package/dist/features/exec/types.d.ts +52 -0
- package/dist/features/exec/types.d.ts.map +1 -0
- package/dist/features/exec/types.js +2 -0
- package/dist/features/exec/types.js.map +1 -0
- package/dist/features/exec/workflowRunner.d.ts +9 -0
- package/dist/features/exec/workflowRunner.d.ts.map +1 -0
- package/dist/features/exec/workflowRunner.js +96 -0
- package/dist/features/exec/workflowRunner.js.map +1 -0
- package/dist/features/exec/workflowTemplate.d.ts +9 -0
- package/dist/features/exec/workflowTemplate.d.ts.map +1 -0
- package/dist/features/exec/workflowTemplate.js +159 -0
- package/dist/features/exec/workflowTemplate.js.map +1 -0
- package/dist/features/interactive/aiCaller.d.ts +5 -0
- package/dist/features/interactive/aiCaller.d.ts.map +1 -1
- package/dist/features/interactive/aiCaller.js +35 -10
- package/dist/features/interactive/aiCaller.js.map +1 -1
- package/dist/features/interactive/commandMatcher.d.ts +2 -1
- package/dist/features/interactive/commandMatcher.d.ts.map +1 -1
- package/dist/features/interactive/commandMatcher.js +13 -2
- package/dist/features/interactive/commandMatcher.js.map +1 -1
- package/dist/features/interactive/conversationSession.d.ts +44 -0
- package/dist/features/interactive/conversationSession.d.ts.map +1 -0
- package/dist/features/interactive/conversationSession.js +133 -0
- package/dist/features/interactive/conversationSession.js.map +1 -0
- package/dist/features/interactive/index.d.ts +1 -0
- package/dist/features/interactive/index.d.ts.map +1 -1
- package/dist/features/interactive/index.js +1 -0
- package/dist/features/interactive/index.js.map +1 -1
- package/dist/features/interactive/interactive-summary.d.ts.map +1 -1
- package/dist/features/interactive/interactive-summary.js +45 -23
- package/dist/features/interactive/interactive-summary.js.map +1 -1
- package/dist/features/interactive/interactive.d.ts +5 -4
- package/dist/features/interactive/interactive.d.ts.map +1 -1
- package/dist/features/interactive/interactive.js +12 -6
- package/dist/features/interactive/interactive.js.map +1 -1
- package/dist/features/interactive/interactiveApplication.d.ts +5 -0
- package/dist/features/interactive/interactiveApplication.d.ts.map +1 -0
- package/dist/features/interactive/interactiveApplication.js +10 -0
- package/dist/features/interactive/interactiveApplication.js.map +1 -0
- package/dist/features/interactive/promptSections.d.ts.map +1 -1
- package/dist/features/interactive/promptSections.js +3 -6
- package/dist/features/interactive/promptSections.js.map +1 -1
- package/dist/features/interactive/retryMode.d.ts.map +1 -1
- package/dist/features/interactive/retryMode.js +3 -3
- package/dist/features/interactive/retryMode.js.map +1 -1
- package/dist/features/interactive/runSessionReader.d.ts +4 -37
- package/dist/features/interactive/runSessionReader.d.ts.map +1 -1
- package/dist/features/interactive/runSessionReader.js +130 -49
- package/dist/features/interactive/runSessionReader.js.map +1 -1
- package/dist/features/interactive/slashCommandRegistry.d.ts +2 -0
- package/dist/features/interactive/slashCommandRegistry.d.ts.map +1 -1
- package/dist/features/interactive/slashCommandRegistry.js +5 -0
- package/dist/features/interactive/slashCommandRegistry.js.map +1 -1
- package/dist/features/mcp/operations.d.ts +25 -0
- package/dist/features/mcp/operations.d.ts.map +1 -0
- package/dist/features/mcp/operations.js +150 -0
- package/dist/features/mcp/operations.js.map +1 -0
- package/dist/features/mcp/schemas.d.ts +50 -0
- package/dist/features/mcp/schemas.d.ts.map +1 -0
- package/dist/features/mcp/schemas.js +59 -0
- package/dist/features/mcp/schemas.js.map +1 -0
- package/dist/features/mcp/server.d.ts +7 -0
- package/dist/features/mcp/server.d.ts.map +1 -0
- package/dist/features/mcp/server.js +36 -0
- package/dist/features/mcp/server.js.map +1 -0
- package/dist/features/prompt/preview.d.ts.map +1 -1
- package/dist/features/prompt/preview.js +58 -32
- package/dist/features/prompt/preview.js.map +1 -1
- package/dist/features/tasks/add/index.d.ts +8 -20
- package/dist/features/tasks/add/index.d.ts.map +1 -1
- package/dist/features/tasks/add/index.js +42 -61
- package/dist/features/tasks/add/index.js.map +1 -1
- package/dist/features/tasks/attachments.d.ts +2 -5
- package/dist/features/tasks/attachments.d.ts.map +1 -1
- package/dist/features/tasks/attachments.js +11 -35
- package/dist/features/tasks/attachments.js.map +1 -1
- package/dist/features/tasks/execute/outputFns.d.ts +1 -1
- package/dist/features/tasks/execute/outputFns.d.ts.map +1 -1
- package/dist/features/tasks/execute/outputFns.js +17 -1
- package/dist/features/tasks/execute/outputFns.js.map +1 -1
- package/dist/features/tasks/execute/postExecution.d.ts +4 -1
- package/dist/features/tasks/execute/postExecution.d.ts.map +1 -1
- package/dist/features/tasks/execute/postExecution.js +33 -14
- package/dist/features/tasks/execute/postExecution.js.map +1 -1
- package/dist/features/tasks/execute/resolveTask.d.ts +9 -3
- package/dist/features/tasks/execute/resolveTask.d.ts.map +1 -1
- package/dist/features/tasks/execute/resolveTask.js +45 -13
- package/dist/features/tasks/execute/resolveTask.js.map +1 -1
- package/dist/features/tasks/execute/runTaskExecution.d.ts +7 -1
- package/dist/features/tasks/execute/runTaskExecution.d.ts.map +1 -1
- package/dist/features/tasks/execute/runTaskExecution.js +11 -8
- package/dist/features/tasks/execute/runTaskExecution.js.map +1 -1
- package/dist/features/tasks/execute/selectAndExecute.d.ts.map +1 -1
- package/dist/features/tasks/execute/selectAndExecute.js +6 -2
- package/dist/features/tasks/execute/selectAndExecute.js.map +1 -1
- package/dist/features/tasks/execute/taskExecution.d.ts +12 -3
- package/dist/features/tasks/execute/taskExecution.d.ts.map +1 -1
- package/dist/features/tasks/execute/taskExecution.js +63 -16
- package/dist/features/tasks/execute/taskExecution.js.map +1 -1
- package/dist/features/tasks/execute/taskResultHandler.d.ts +2 -2
- package/dist/features/tasks/execute/taskResultHandler.d.ts.map +1 -1
- package/dist/features/tasks/execute/taskResultHandler.js +8 -4
- package/dist/features/tasks/execute/taskResultHandler.js.map +1 -1
- package/dist/features/tasks/execute/taskWorkflowExecution.d.ts.map +1 -1
- package/dist/features/tasks/execute/taskWorkflowExecution.js +101 -10
- package/dist/features/tasks/execute/taskWorkflowExecution.js.map +1 -1
- package/dist/features/tasks/execute/traceTaskMetadata.js +3 -6
- package/dist/features/tasks/execute/traceTaskMetadata.js.map +1 -1
- package/dist/features/tasks/execute/types.d.ts +103 -2
- package/dist/features/tasks/execute/types.d.ts.map +1 -1
- package/dist/features/tasks/execute/workflowExecution.d.ts +3 -1
- package/dist/features/tasks/execute/workflowExecution.d.ts.map +1 -1
- package/dist/features/tasks/execute/workflowExecution.js +41 -3
- package/dist/features/tasks/execute/workflowExecution.js.map +1 -1
- package/dist/features/tasks/execute/workflowExecutionApi.d.ts +6 -0
- package/dist/features/tasks/execute/workflowExecutionApi.d.ts.map +1 -0
- package/dist/features/tasks/execute/workflowExecutionApi.js +25 -0
- package/dist/features/tasks/execute/workflowExecutionApi.js.map +1 -0
- package/dist/features/tasks/execute/workflowExecutionBootstrap.d.ts +2 -1
- package/dist/features/tasks/execute/workflowExecutionBootstrap.d.ts.map +1 -1
- package/dist/features/tasks/execute/workflowExecutionBootstrap.js +18 -14
- package/dist/features/tasks/execute/workflowExecutionBootstrap.js.map +1 -1
- package/dist/features/tasks/execute/workflowExecutionEvents.d.ts +14 -1
- package/dist/features/tasks/execute/workflowExecutionEvents.d.ts.map +1 -1
- package/dist/features/tasks/execute/workflowExecutionEvents.js +244 -3
- package/dist/features/tasks/execute/workflowExecutionEvents.js.map +1 -1
- package/dist/features/tasks/list/instructMode.d.ts.map +1 -1
- package/dist/features/tasks/list/instructMode.js +3 -3
- package/dist/features/tasks/list/instructMode.js.map +1 -1
- package/dist/features/tasks/list/requeueHelpers.d.ts +1 -0
- package/dist/features/tasks/list/requeueHelpers.d.ts.map +1 -1
- package/dist/features/tasks/list/requeueHelpers.js +3 -0
- package/dist/features/tasks/list/requeueHelpers.js.map +1 -1
- package/dist/features/tasks/list/taskInstructionActions.d.ts.map +1 -1
- package/dist/features/tasks/list/taskInstructionActions.js +2 -2
- package/dist/features/tasks/list/taskInstructionActions.js.map +1 -1
- package/dist/features/tasks/list/taskRetryActions.d.ts.map +1 -1
- package/dist/features/tasks/list/taskRetryActions.js +1 -4
- package/dist/features/tasks/list/taskRetryActions.js.map +1 -1
- package/dist/features/tasks/resume/directInstructMode.d.ts.map +1 -1
- package/dist/features/tasks/resume/directInstructMode.js +3 -3
- package/dist/features/tasks/resume/directInstructMode.js.map +1 -1
- package/dist/features/tasks/taskContextValidation.d.ts +10 -0
- package/dist/features/tasks/taskContextValidation.d.ts.map +1 -0
- package/dist/features/tasks/taskContextValidation.js +73 -0
- package/dist/features/tasks/taskContextValidation.js.map +1 -0
- package/dist/infra/codex/client.d.ts.map +1 -1
- package/dist/infra/codex/client.js +5 -0
- package/dist/infra/codex/client.js.map +1 -1
- package/dist/infra/config/configNormalizers.d.ts.map +1 -1
- package/dist/infra/config/configNormalizers.js +14 -11
- package/dist/infra/config/configNormalizers.js.map +1 -1
- package/dist/infra/config/global/globalConfigCore.js +2 -2
- package/dist/infra/config/global/globalConfigCore.js.map +1 -1
- package/dist/infra/config/loaders/resource-resolver.d.ts +3 -33
- package/dist/infra/config/loaders/resource-resolver.d.ts.map +1 -1
- package/dist/infra/config/loaders/resource-resolver.js +140 -52
- package/dist/infra/config/loaders/resource-resolver.js.map +1 -1
- package/dist/infra/config/loaders/workflowCallContracts.d.ts.map +1 -1
- package/dist/infra/config/loaders/workflowCallContracts.js +5 -0
- package/dist/infra/config/loaders/workflowCallContracts.js.map +1 -1
- package/dist/infra/config/loaders/workflowCallableArgResolver.d.ts.map +1 -1
- package/dist/infra/config/loaders/workflowCallableArgResolver.js +42 -7
- package/dist/infra/config/loaders/workflowCallableArgResolver.js.map +1 -1
- package/dist/infra/config/loaders/workflowCallableRuleValidation.d.ts.map +1 -1
- package/dist/infra/config/loaders/workflowCallableRuleValidation.js +5 -0
- package/dist/infra/config/loaders/workflowCallableRuleValidation.js.map +1 -1
- package/dist/infra/config/loaders/workflowDoctor.d.ts.map +1 -1
- package/dist/infra/config/loaders/workflowDoctor.js +19 -7
- package/dist/infra/config/loaders/workflowDoctor.js.map +1 -1
- package/dist/infra/config/loaders/workflowLoopMonitorNormalizer.d.ts +3 -1
- package/dist/infra/config/loaders/workflowLoopMonitorNormalizer.d.ts.map +1 -1
- package/dist/infra/config/loaders/workflowLoopMonitorNormalizer.js +12 -2
- package/dist/infra/config/loaders/workflowLoopMonitorNormalizer.js.map +1 -1
- package/dist/infra/config/loaders/workflowPackageScope.d.ts +1 -0
- package/dist/infra/config/loaders/workflowPackageScope.d.ts.map +1 -1
- package/dist/infra/config/loaders/workflowPackageScope.js +20 -2
- package/dist/infra/config/loaders/workflowPackageScope.js.map +1 -1
- package/dist/infra/config/loaders/workflowParser.d.ts.map +1 -1
- package/dist/infra/config/loaders/workflowParser.js +17 -14
- package/dist/infra/config/loaders/workflowParser.js.map +1 -1
- package/dist/infra/config/loaders/workflowPreview.d.ts +3 -0
- package/dist/infra/config/loaders/workflowPreview.d.ts.map +1 -1
- package/dist/infra/config/loaders/workflowPreview.js +17 -9
- package/dist/infra/config/loaders/workflowPreview.js.map +1 -1
- package/dist/infra/config/loaders/workflowRuleNormalizer.d.ts +10 -0
- package/dist/infra/config/loaders/workflowRuleNormalizer.d.ts.map +1 -1
- package/dist/infra/config/loaders/workflowRuleNormalizer.js +70 -1
- package/dist/infra/config/loaders/workflowRuleNormalizer.js.map +1 -1
- package/dist/infra/config/loaders/workflowStepNormalizer.d.ts +1 -1
- package/dist/infra/config/loaders/workflowStepNormalizer.d.ts.map +1 -1
- package/dist/infra/config/loaders/workflowStepNormalizer.js +33 -11
- package/dist/infra/config/loaders/workflowStepNormalizer.js.map +1 -1
- package/dist/infra/config/project/sessionStore.d.ts +2 -2
- package/dist/infra/config/project/sessionStore.d.ts.map +1 -1
- package/dist/infra/config/project/sessionStore.js +12 -4
- package/dist/infra/config/project/sessionStore.js.map +1 -1
- package/dist/infra/config/providerModelRequirements.d.ts +2 -0
- package/dist/infra/config/providerModelRequirements.d.ts.map +1 -0
- package/dist/infra/config/providerModelRequirements.js +2 -0
- package/dist/infra/config/providerModelRequirements.js.map +1 -0
- package/dist/infra/git/format.d.ts +1 -0
- package/dist/infra/git/format.d.ts.map +1 -1
- package/dist/infra/git/format.js +21 -0
- package/dist/infra/git/format.js.map +1 -1
- package/dist/infra/git/index.d.ts +1 -1
- package/dist/infra/git/index.d.ts.map +1 -1
- package/dist/infra/git/types.d.ts +16 -4
- package/dist/infra/git/types.d.ts.map +1 -1
- package/dist/infra/github/GitHubProvider.d.ts +2 -1
- package/dist/infra/github/GitHubProvider.d.ts.map +1 -1
- package/dist/infra/github/GitHubProvider.js +4 -1
- package/dist/infra/github/GitHubProvider.js.map +1 -1
- package/dist/infra/github/issue.d.ts +2 -1
- package/dist/infra/github/issue.d.ts.map +1 -1
- package/dist/infra/github/issue.js +23 -2
- package/dist/infra/github/issue.js.map +1 -1
- package/dist/infra/gitlab/GitLabProvider.d.ts +2 -1
- package/dist/infra/gitlab/GitLabProvider.d.ts.map +1 -1
- package/dist/infra/gitlab/GitLabProvider.js +4 -1
- package/dist/infra/gitlab/GitLabProvider.js.map +1 -1
- package/dist/infra/gitlab/issue.d.ts +2 -1
- package/dist/infra/gitlab/issue.d.ts.map +1 -1
- package/dist/infra/gitlab/issue.js +30 -2
- package/dist/infra/gitlab/issue.js.map +1 -1
- package/dist/infra/opencode/OpenCodeStreamHandler.d.ts +4 -0
- package/dist/infra/opencode/OpenCodeStreamHandler.d.ts.map +1 -1
- package/dist/infra/opencode/OpenCodeStreamHandler.js.map +1 -1
- package/dist/infra/opencode/allowedTools.d.ts +1 -0
- package/dist/infra/opencode/allowedTools.d.ts.map +1 -1
- package/dist/infra/opencode/allowedTools.js +6 -0
- package/dist/infra/opencode/allowedTools.js.map +1 -1
- package/dist/infra/opencode/client.d.ts +2 -0
- package/dist/infra/opencode/client.d.ts.map +1 -1
- package/dist/infra/opencode/client.js +392 -169
- package/dist/infra/opencode/client.js.map +1 -1
- package/dist/infra/opencode/types.d.ts +35 -0
- package/dist/infra/opencode/types.d.ts.map +1 -1
- package/dist/infra/opencode/types.js +98 -11
- package/dist/infra/opencode/types.js.map +1 -1
- package/dist/infra/opencode/unavailable-tool-loop.d.ts +13 -0
- package/dist/infra/opencode/unavailable-tool-loop.d.ts.map +1 -1
- package/dist/infra/opencode/unavailable-tool-loop.js +46 -0
- package/dist/infra/opencode/unavailable-tool-loop.js.map +1 -1
- package/dist/infra/providers/allowed-tool-edit-policy.d.ts +1 -0
- package/dist/infra/providers/allowed-tool-edit-policy.d.ts.map +1 -1
- package/dist/infra/providers/allowed-tool-edit-policy.js +35 -1
- package/dist/infra/providers/allowed-tool-edit-policy.js.map +1 -1
- package/dist/infra/providers/claude-headless.d.ts.map +1 -1
- package/dist/infra/providers/claude-headless.js +0 -2
- package/dist/infra/providers/claude-headless.js.map +1 -1
- package/dist/infra/providers/claude-terminal.d.ts.map +1 -1
- package/dist/infra/providers/claude-terminal.js +0 -2
- package/dist/infra/providers/claude-terminal.js.map +1 -1
- package/dist/infra/providers/claude.d.ts.map +1 -1
- package/dist/infra/providers/claude.js +0 -2
- package/dist/infra/providers/claude.js.map +1 -1
- package/dist/infra/providers/opencode.d.ts +3 -2
- package/dist/infra/providers/opencode.d.ts.map +1 -1
- package/dist/infra/providers/opencode.js +19 -8
- package/dist/infra/providers/opencode.js.map +1 -1
- package/dist/infra/providers/types.d.ts +1 -1
- package/dist/infra/providers/types.d.ts.map +1 -1
- package/dist/infra/task/clone-exec.d.ts.map +1 -1
- package/dist/infra/task/clone-exec.js +31 -0
- package/dist/infra/task/clone-exec.js.map +1 -1
- package/dist/infra/task/enqueueService.d.ts +115 -0
- package/dist/infra/task/enqueueService.d.ts.map +1 -0
- package/dist/infra/task/enqueueService.js +191 -0
- package/dist/infra/task/enqueueService.js.map +1 -0
- package/dist/infra/task/enqueuedTaskFile.d.ts +6 -0
- package/dist/infra/task/enqueuedTaskFile.d.ts.map +1 -0
- package/dist/infra/task/enqueuedTaskFile.js +55 -0
- package/dist/infra/task/enqueuedTaskFile.js.map +1 -0
- package/dist/infra/task/issueTask.d.ts +20 -0
- package/dist/infra/task/issueTask.d.ts.map +1 -0
- package/dist/{features/tasks/add → infra/task}/issueTask.js +61 -43
- package/dist/infra/task/issueTask.js.map +1 -0
- package/dist/infra/task/listSerializer.d.ts +1 -0
- package/dist/infra/task/listSerializer.d.ts.map +1 -1
- package/dist/infra/task/listSerializer.js +1 -0
- package/dist/infra/task/listSerializer.js.map +1 -1
- package/dist/infra/task/mapper.d.ts.map +1 -1
- package/dist/infra/task/mapper.js +1 -0
- package/dist/infra/task/mapper.js.map +1 -1
- package/dist/infra/task/taskExecutionSchemas.d.ts +3 -0
- package/dist/infra/task/taskExecutionSchemas.d.ts.map +1 -1
- package/dist/infra/task/taskExecutionSchemas.js +4 -2
- package/dist/infra/task/taskExecutionSchemas.js.map +1 -1
- package/dist/infra/task/taskRecordSchemas.d.ts +2 -0
- package/dist/infra/task/taskRecordSchemas.d.ts.map +1 -1
- package/dist/infra/workflow/system/DefaultSystemStepServices.d.ts.map +1 -1
- package/dist/infra/workflow/system/DefaultSystemStepServices.js +7 -7
- package/dist/infra/workflow/system/DefaultSystemStepServices.js.map +1 -1
- package/dist/infra/workflow/system/system-enqueue-effect.d.ts.map +1 -1
- package/dist/infra/workflow/system/system-enqueue-effect.js +78 -20
- package/dist/infra/workflow/system/system-enqueue-effect.js.map +1 -1
- package/dist/infra/workflow/system/system-git-context.d.ts +6 -6
- package/dist/infra/workflow/system/system-git-context.d.ts.map +1 -1
- package/dist/infra/workflow/system/system-git-context.js +13 -13
- package/dist/infra/workflow/system/system-git-context.js.map +1 -1
- package/dist/infra/workflow/system/system-issue-input-resolver.d.ts +3 -3
- package/dist/infra/workflow/system/system-issue-input-resolver.d.ts.map +1 -1
- package/dist/infra/workflow/system/system-issue-input-resolver.js +8 -8
- package/dist/infra/workflow/system/system-issue-input-resolver.js.map +1 -1
- package/dist/infra/workflow/system/system-pr-effects.d.ts.map +1 -1
- package/dist/infra/workflow/system/system-pr-effects.js +6 -3
- package/dist/infra/workflow/system/system-pr-effects.js.map +1 -1
- package/dist/infra/workflow/system/system-pr-input-resolver.d.ts +3 -3
- package/dist/infra/workflow/system/system-pr-input-resolver.d.ts.map +1 -1
- package/dist/infra/workflow/system/system-pr-input-resolver.js +8 -8
- package/dist/infra/workflow/system/system-pr-input-resolver.js.map +1 -1
- package/dist/infra/workflow/system/system-sync-effects.js +2 -2
- package/dist/infra/workflow/system/system-sync-effects.js.map +1 -1
- package/dist/shared/constants.d.ts +1 -0
- package/dist/shared/constants.d.ts.map +1 -1
- package/dist/shared/constants.js +1 -0
- package/dist/shared/constants.js.map +1 -1
- package/dist/shared/i18n/labels_en.yaml +115 -0
- package/dist/shared/i18n/labels_ja.yaml +115 -0
- package/dist/shared/package-info.d.ts +2 -0
- package/dist/shared/package-info.d.ts.map +1 -0
- package/dist/shared/package-info.js +5 -0
- package/dist/shared/package-info.js.map +1 -0
- package/dist/shared/prompts/en/exec_assistant_clarify.md +14 -0
- package/dist/shared/prompts/en/exec_assistant_instruct.md +14 -0
- package/dist/shared/prompts/en/exec_assistant_summary.md +12 -0
- package/dist/shared/prompts/en/exec_facet_create.md +8 -0
- package/dist/shared/prompts/en/exec_facet_edit.md +8 -0
- package/dist/shared/prompts/en/finding_manager_instruction.md +35 -0
- package/dist/shared/prompts/en/opencode_agent_prompt.md +52 -0
- package/dist/shared/prompts/en/opencode_report_agent_prompt.md +8 -0
- package/dist/shared/prompts/en/opencode_review_agent_prompt.md +32 -0
- package/dist/shared/prompts/en/perform_phase1_message.md +1 -4
- package/dist/shared/prompts/en/perform_phase2_message.md +1 -0
- package/dist/shared/prompts/en/perform_phase3_message.md +1 -0
- package/dist/shared/prompts/en/provider_runtime_system_prompt.md +1 -0
- package/dist/shared/prompts/en/score_slug_system_prompt.md +1 -0
- package/dist/shared/prompts/en/score_slug_user_prompt.md +1 -0
- package/dist/shared/prompts/en/score_summary_system_prompt.md +1 -0
- package/dist/shared/prompts/en/source_context_section_guidance.md +6 -0
- package/dist/shared/prompts/en/source_context_system_guard.md +8 -0
- package/dist/shared/prompts/en/structured_json_schema_instruction.md +12 -0
- package/dist/shared/prompts/en/structured_json_step_instruction.md +12 -0
- package/dist/shared/prompts/en/sync_conflict_resolver_message.md +1 -0
- package/dist/shared/prompts/en/sync_conflict_resolver_system_prompt.md +1 -0
- package/dist/shared/prompts/index.d.ts.map +1 -1
- package/dist/shared/prompts/index.js +3 -1
- package/dist/shared/prompts/index.js.map +1 -1
- package/dist/shared/prompts/ja/exec_assistant_clarify.md +14 -0
- package/dist/shared/prompts/ja/exec_assistant_instruct.md +14 -0
- package/dist/shared/prompts/ja/exec_assistant_summary.md +12 -0
- package/dist/shared/prompts/ja/exec_facet_create.md +8 -0
- package/dist/shared/prompts/ja/exec_facet_edit.md +8 -0
- package/dist/shared/prompts/ja/finding_manager_instruction.md +35 -0
- package/dist/shared/prompts/ja/opencode_agent_prompt.md +52 -0
- package/dist/shared/prompts/ja/opencode_report_agent_prompt.md +8 -0
- package/dist/shared/prompts/ja/opencode_review_agent_prompt.md +32 -0
- package/dist/shared/prompts/ja/perform_phase1_message.md +1 -4
- package/dist/shared/prompts/ja/perform_phase2_message.md +1 -0
- package/dist/shared/prompts/ja/perform_phase3_message.md +1 -0
- package/dist/shared/prompts/ja/provider_runtime_system_prompt.md +1 -0
- package/dist/shared/prompts/ja/score_slug_system_prompt.md +1 -0
- package/dist/shared/prompts/ja/score_slug_user_prompt.md +1 -0
- package/dist/shared/prompts/ja/score_summary_system_prompt.md +1 -0
- package/dist/shared/prompts/ja/source_context_section_guidance.md +6 -0
- package/dist/shared/prompts/ja/source_context_system_guard.md +8 -0
- package/dist/shared/prompts/ja/structured_json_schema_instruction.md +12 -0
- package/dist/shared/prompts/ja/structured_json_step_instruction.md +12 -0
- package/dist/shared/prompts/ja/sync_conflict_resolver_message.md +1 -0
- package/dist/shared/prompts/ja/sync_conflict_resolver_system_prompt.md +1 -0
- package/dist/shared/utils/entrypoint.d.ts +2 -0
- package/dist/shared/utils/entrypoint.d.ts.map +1 -0
- package/dist/shared/utils/entrypoint.js +15 -0
- package/dist/shared/utils/entrypoint.js.map +1 -0
- package/dist/shared/utils/index.d.ts +1 -0
- package/dist/shared/utils/index.d.ts.map +1 -1
- package/dist/shared/utils/index.js +1 -0
- package/dist/shared/utils/index.js.map +1 -1
- package/dist/shared/utils/pathBoundary.d.ts +6 -0
- package/dist/shared/utils/pathBoundary.d.ts.map +1 -1
- package/dist/shared/utils/pathBoundary.js +38 -1
- package/dist/shared/utils/pathBoundary.js.map +1 -1
- package/dist/shared/utils/safeExternalErrorMessage.d.ts +2 -0
- package/dist/shared/utils/safeExternalErrorMessage.d.ts.map +1 -0
- package/dist/shared/utils/safeExternalErrorMessage.js +22 -0
- package/dist/shared/utils/safeExternalErrorMessage.js.map +1 -0
- package/package.json +29 -10
- package/builtins/en/facets/instructions/review-pure.md +0 -9
- package/builtins/en/facets/personas/pure-reviewer.md +0 -22
- package/builtins/en/provider-options/review-web.yaml +0 -14
- package/builtins/ja/facets/instructions/review-pure.md +0 -9
- package/builtins/ja/facets/personas/pure-reviewer.md +0 -22
- package/builtins/ja/provider-options/review-web.yaml +0 -14
- package/dist/core/workflow/claude-effort-compatibility.d.ts +0 -3
- package/dist/core/workflow/claude-effort-compatibility.d.ts.map +0 -1
- package/dist/core/workflow/claude-effort-compatibility.js +0 -28
- package/dist/core/workflow/claude-effort-compatibility.js.map +0 -1
- package/dist/core/workflow/provider-model-compatibility.d.ts +0 -7
- package/dist/core/workflow/provider-model-compatibility.d.ts.map +0 -1
- package/dist/core/workflow/provider-model-compatibility.js +0 -20
- package/dist/core/workflow/provider-model-compatibility.js.map +0 -1
- package/dist/features/interactive/policyPrompt.d.ts +0 -2
- package/dist/features/interactive/policyPrompt.d.ts.map +0 -1
- package/dist/features/interactive/policyPrompt.js +0 -18
- package/dist/features/interactive/policyPrompt.js.map +0 -1
- package/dist/features/tasks/add/issueTask.d.ts +0 -7
- package/dist/features/tasks/add/issueTask.d.ts.map +0 -1
- package/dist/features/tasks/add/issueTask.js.map +0 -1
- package/dist/infra/config/providerModelCompatibility.d.ts +0 -2
- package/dist/infra/config/providerModelCompatibility.d.ts.map +0 -1
- package/dist/infra/config/providerModelCompatibility.js +0 -2
- package/dist/infra/config/providerModelCompatibility.js.map +0 -1
- package/dist/shared/prompts/en/score_interactive_policy.md +0 -83
- package/dist/shared/prompts/ja/score_interactive_policy.md +0 -83
|
@@ -67,6 +67,7 @@ export declare const TeamLeaderConfigRawSchema: z.ZodObject<{
|
|
|
67
67
|
/** Sub-step schema for parallel execution */
|
|
68
68
|
export declare const ParallelSubStepRawSchema: z.ZodObject<{
|
|
69
69
|
name: z.ZodString;
|
|
70
|
+
session_key: z.ZodOptional<z.ZodString>;
|
|
70
71
|
persona: z.ZodOptional<z.ZodString>;
|
|
71
72
|
persona_name: z.ZodOptional<z.ZodString>;
|
|
72
73
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -121,7 +122,7 @@ export declare const ParallelSubStepRawSchema: z.ZodObject<{
|
|
|
121
122
|
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
122
123
|
}, z.core.$strip>>;
|
|
123
124
|
}, z.core.$strict>]>>;
|
|
124
|
-
model: z.ZodOptional<z.ZodString
|
|
125
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
125
126
|
promotion: z.ZodOptional<z.ZodNever>;
|
|
126
127
|
permission_mode: z.ZodOptional<z.ZodNever>;
|
|
127
128
|
required_permission_mode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -183,6 +184,7 @@ export declare const ParallelSubStepRawSchema: z.ZodObject<{
|
|
|
183
184
|
extends: z.ZodOptional<z.ZodString>;
|
|
184
185
|
}, z.core.$strict>>;
|
|
185
186
|
edit: z.ZodOptional<z.ZodBoolean>;
|
|
187
|
+
requires_user_input: z.ZodOptional<z.ZodNever>;
|
|
186
188
|
instruction: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
187
189
|
$param: z.ZodString;
|
|
188
190
|
}, z.core.$strict>]>>;
|
|
@@ -218,6 +220,7 @@ export declare const ParallelSubStepRawSchema: z.ZodObject<{
|
|
|
218
220
|
export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
219
221
|
name: z.ZodString;
|
|
220
222
|
description: z.ZodOptional<z.ZodString>;
|
|
223
|
+
session_key: z.ZodOptional<z.ZodString>;
|
|
221
224
|
kind: z.ZodOptional<z.ZodEnum<{
|
|
222
225
|
agent: "agent";
|
|
223
226
|
system: "system";
|
|
@@ -310,7 +313,9 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
310
313
|
extends: z.ZodOptional<z.ZodString>;
|
|
311
314
|
}, z.core.$strict>>;
|
|
312
315
|
}, z.core.$strict>>;
|
|
313
|
-
args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]
|
|
316
|
+
args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>, z.ZodObject<{
|
|
317
|
+
$param: z.ZodString;
|
|
318
|
+
}, z.core.$strict>]>>>;
|
|
314
319
|
session: z.ZodOptional<z.ZodEnum<{
|
|
315
320
|
continue: "continue";
|
|
316
321
|
refresh: "refresh";
|
|
@@ -369,7 +374,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
369
374
|
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
370
375
|
}, z.core.$strip>>;
|
|
371
376
|
}, z.core.$strict>]>>;
|
|
372
|
-
model: z.ZodOptional<z.ZodString
|
|
377
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
373
378
|
promotion: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
374
379
|
at: z.ZodOptional<z.ZodNumber>;
|
|
375
380
|
condition: z.ZodOptional<z.ZodString>;
|
|
@@ -517,6 +522,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
517
522
|
extends: z.ZodOptional<z.ZodString>;
|
|
518
523
|
}, z.core.$strict>>;
|
|
519
524
|
edit: z.ZodOptional<z.ZodBoolean>;
|
|
525
|
+
requires_user_input: z.ZodOptional<z.ZodBoolean>;
|
|
520
526
|
instruction: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
521
527
|
$param: z.ZodString;
|
|
522
528
|
}, z.core.$strict>]>>;
|
|
@@ -655,6 +661,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
655
661
|
pass_previous_response: z.ZodOptional<z.ZodBoolean>;
|
|
656
662
|
parallel: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
657
663
|
name: z.ZodString;
|
|
664
|
+
session_key: z.ZodOptional<z.ZodString>;
|
|
658
665
|
persona: z.ZodOptional<z.ZodString>;
|
|
659
666
|
persona_name: z.ZodOptional<z.ZodString>;
|
|
660
667
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -709,7 +716,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
709
716
|
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
710
717
|
}, z.core.$strip>>;
|
|
711
718
|
}, z.core.$strict>]>>;
|
|
712
|
-
model: z.ZodOptional<z.ZodString
|
|
719
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
713
720
|
promotion: z.ZodOptional<z.ZodNever>;
|
|
714
721
|
permission_mode: z.ZodOptional<z.ZodNever>;
|
|
715
722
|
required_permission_mode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -771,6 +778,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
771
778
|
extends: z.ZodOptional<z.ZodString>;
|
|
772
779
|
}, z.core.$strict>>;
|
|
773
780
|
edit: z.ZodOptional<z.ZodBoolean>;
|
|
781
|
+
requires_user_input: z.ZodOptional<z.ZodNever>;
|
|
774
782
|
instruction: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
775
783
|
$param: z.ZodString;
|
|
776
784
|
}, z.core.$strict>]>>;
|
|
@@ -844,6 +852,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
844
852
|
}, z.core.$strip>, z.ZodTransform<{
|
|
845
853
|
name: string;
|
|
846
854
|
description?: string | undefined;
|
|
855
|
+
session_key?: string | undefined;
|
|
847
856
|
kind?: "agent" | "system" | "workflow_call" | undefined;
|
|
848
857
|
mode?: "system" | undefined;
|
|
849
858
|
call?: string | undefined;
|
|
@@ -893,7 +902,9 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
893
902
|
extends?: string | undefined;
|
|
894
903
|
} | undefined;
|
|
895
904
|
} | undefined;
|
|
896
|
-
args?: Record<string, string | string[]
|
|
905
|
+
args?: Record<string, string | string[] | {
|
|
906
|
+
$param: string;
|
|
907
|
+
}> | undefined;
|
|
897
908
|
session?: "continue" | "refresh" | undefined;
|
|
898
909
|
persona?: string | undefined;
|
|
899
910
|
persona_name?: string | undefined;
|
|
@@ -929,7 +940,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
929
940
|
excluded_commands?: string[] | undefined;
|
|
930
941
|
} | undefined;
|
|
931
942
|
} | undefined;
|
|
932
|
-
model?: string | undefined;
|
|
943
|
+
model?: string | null | undefined;
|
|
933
944
|
promotion?: {
|
|
934
945
|
at?: number | undefined;
|
|
935
946
|
condition?: string | undefined;
|
|
@@ -1015,6 +1026,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1015
1026
|
extends?: string | undefined;
|
|
1016
1027
|
} | undefined;
|
|
1017
1028
|
edit?: boolean | undefined;
|
|
1029
|
+
requires_user_input?: boolean | undefined;
|
|
1018
1030
|
instruction?: string | {
|
|
1019
1031
|
$param: string;
|
|
1020
1032
|
} | undefined;
|
|
@@ -1150,6 +1162,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1150
1162
|
pass_previous_response?: boolean | undefined;
|
|
1151
1163
|
parallel?: {
|
|
1152
1164
|
name: string;
|
|
1165
|
+
session_key?: string | undefined;
|
|
1153
1166
|
persona?: string | undefined;
|
|
1154
1167
|
persona_name?: string | undefined;
|
|
1155
1168
|
tags?: string[] | undefined;
|
|
@@ -1184,7 +1197,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1184
1197
|
excluded_commands?: string[] | undefined;
|
|
1185
1198
|
} | undefined;
|
|
1186
1199
|
} | undefined;
|
|
1187
|
-
model?: string | undefined;
|
|
1200
|
+
model?: string | null | undefined;
|
|
1188
1201
|
promotion?: undefined;
|
|
1189
1202
|
permission_mode?: undefined;
|
|
1190
1203
|
required_permission_mode?: "readonly" | "edit" | "full" | undefined;
|
|
@@ -1223,6 +1236,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1223
1236
|
extends?: string | undefined;
|
|
1224
1237
|
} | undefined;
|
|
1225
1238
|
edit?: boolean | undefined;
|
|
1239
|
+
requires_user_input?: undefined;
|
|
1226
1240
|
instruction?: string | {
|
|
1227
1241
|
$param: string;
|
|
1228
1242
|
} | undefined;
|
|
@@ -1289,6 +1303,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1289
1303
|
}, {
|
|
1290
1304
|
name: string;
|
|
1291
1305
|
description?: string | undefined;
|
|
1306
|
+
session_key?: string | undefined;
|
|
1292
1307
|
kind?: "agent" | "system" | "workflow_call" | undefined;
|
|
1293
1308
|
mode?: "system" | undefined;
|
|
1294
1309
|
call?: string | undefined;
|
|
@@ -1338,7 +1353,9 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1338
1353
|
extends?: string | undefined;
|
|
1339
1354
|
} | undefined;
|
|
1340
1355
|
} | undefined;
|
|
1341
|
-
args?: Record<string, string | string[]
|
|
1356
|
+
args?: Record<string, string | string[] | {
|
|
1357
|
+
$param: string;
|
|
1358
|
+
}> | undefined;
|
|
1342
1359
|
session?: "continue" | "refresh" | undefined;
|
|
1343
1360
|
persona?: string | undefined;
|
|
1344
1361
|
persona_name?: string | undefined;
|
|
@@ -1374,7 +1391,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1374
1391
|
excluded_commands?: string[] | undefined;
|
|
1375
1392
|
} | undefined;
|
|
1376
1393
|
} | undefined;
|
|
1377
|
-
model?: string | undefined;
|
|
1394
|
+
model?: string | null | undefined;
|
|
1378
1395
|
promotion?: {
|
|
1379
1396
|
at?: number | undefined;
|
|
1380
1397
|
condition?: string | undefined;
|
|
@@ -1460,6 +1477,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1460
1477
|
extends?: string | undefined;
|
|
1461
1478
|
} | undefined;
|
|
1462
1479
|
edit?: boolean | undefined;
|
|
1480
|
+
requires_user_input?: boolean | undefined;
|
|
1463
1481
|
instruction?: string | {
|
|
1464
1482
|
$param: string;
|
|
1465
1483
|
} | undefined;
|
|
@@ -1595,6 +1613,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1595
1613
|
pass_previous_response?: boolean | undefined;
|
|
1596
1614
|
parallel?: {
|
|
1597
1615
|
name: string;
|
|
1616
|
+
session_key?: string | undefined;
|
|
1598
1617
|
persona?: string | undefined;
|
|
1599
1618
|
persona_name?: string | undefined;
|
|
1600
1619
|
tags?: string[] | undefined;
|
|
@@ -1629,7 +1648,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1629
1648
|
excluded_commands?: string[] | undefined;
|
|
1630
1649
|
} | undefined;
|
|
1631
1650
|
} | undefined;
|
|
1632
|
-
model?: string | undefined;
|
|
1651
|
+
model?: string | null | undefined;
|
|
1633
1652
|
promotion?: undefined;
|
|
1634
1653
|
permission_mode?: undefined;
|
|
1635
1654
|
required_permission_mode?: "readonly" | "edit" | "full" | undefined;
|
|
@@ -1668,6 +1687,7 @@ export declare const WorkflowStepRawSchema: z.ZodPipe<z.ZodObject<{
|
|
|
1668
1687
|
extends?: string | undefined;
|
|
1669
1688
|
} | undefined;
|
|
1670
1689
|
edit?: boolean | undefined;
|
|
1690
|
+
requires_user_input?: undefined;
|
|
1671
1691
|
instruction?: string | {
|
|
1672
1692
|
$param: string;
|
|
1673
1693
|
} | undefined;
|
|
@@ -1739,6 +1759,7 @@ export declare const LoopMonitorRuleSchema: z.ZodObject<{
|
|
|
1739
1759
|
}, z.core.$strip>;
|
|
1740
1760
|
/** Loop monitor judge schema */
|
|
1741
1761
|
export declare const LoopMonitorJudgeSchema: z.ZodObject<{
|
|
1762
|
+
session_key: z.ZodOptional<z.ZodString>;
|
|
1742
1763
|
persona: z.ZodOptional<z.ZodString>;
|
|
1743
1764
|
provider: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1744
1765
|
claude: "claude";
|
|
@@ -1769,7 +1790,60 @@ export declare const LoopMonitorJudgeSchema: z.ZodObject<{
|
|
|
1769
1790
|
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1770
1791
|
}, z.core.$strip>>;
|
|
1771
1792
|
}, z.core.$strict>]>>;
|
|
1772
|
-
model: z.ZodOptional<z.ZodString
|
|
1793
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1794
|
+
provider_options: z.ZodOptional<z.ZodObject<{
|
|
1795
|
+
codex: z.ZodOptional<z.ZodObject<{
|
|
1796
|
+
base_url: z.ZodOptional<z.ZodString>;
|
|
1797
|
+
network_access: z.ZodOptional<z.ZodBoolean>;
|
|
1798
|
+
reasoning_effort: z.ZodOptional<z.ZodEnum<{
|
|
1799
|
+
minimal: "minimal";
|
|
1800
|
+
low: "low";
|
|
1801
|
+
medium: "medium";
|
|
1802
|
+
high: "high";
|
|
1803
|
+
xhigh: "xhigh";
|
|
1804
|
+
}>>;
|
|
1805
|
+
}, z.core.$strip>>;
|
|
1806
|
+
opencode: z.ZodOptional<z.ZodObject<{
|
|
1807
|
+
network_access: z.ZodOptional<z.ZodBoolean>;
|
|
1808
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1809
|
+
allowed_tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1810
|
+
}, z.core.$strip>>;
|
|
1811
|
+
claude: z.ZodOptional<z.ZodObject<{
|
|
1812
|
+
base_url: z.ZodOptional<z.ZodString>;
|
|
1813
|
+
allowed_tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1814
|
+
effort: z.ZodOptional<z.ZodEnum<{
|
|
1815
|
+
low: "low";
|
|
1816
|
+
medium: "medium";
|
|
1817
|
+
high: "high";
|
|
1818
|
+
xhigh: "xhigh";
|
|
1819
|
+
max: "max";
|
|
1820
|
+
}>>;
|
|
1821
|
+
sandbox: z.ZodOptional<z.ZodObject<{
|
|
1822
|
+
allow_unsandboxed_commands: z.ZodOptional<z.ZodBoolean>;
|
|
1823
|
+
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1824
|
+
}, z.core.$strip>>;
|
|
1825
|
+
}, z.core.$strip>>;
|
|
1826
|
+
claude_terminal: z.ZodOptional<z.ZodObject<{
|
|
1827
|
+
backend: z.ZodOptional<z.ZodEnum<{
|
|
1828
|
+
tmux: "tmux";
|
|
1829
|
+
}>>;
|
|
1830
|
+
timeout_ms: z.ZodOptional<z.ZodNumber>;
|
|
1831
|
+
keep_session: z.ZodOptional<z.ZodBoolean>;
|
|
1832
|
+
transcript_poll_interval_ms: z.ZodOptional<z.ZodNumber>;
|
|
1833
|
+
}, z.core.$strict>>;
|
|
1834
|
+
copilot: z.ZodOptional<z.ZodObject<{
|
|
1835
|
+
effort: z.ZodOptional<z.ZodEnum<{
|
|
1836
|
+
low: "low";
|
|
1837
|
+
medium: "medium";
|
|
1838
|
+
high: "high";
|
|
1839
|
+
xhigh: "xhigh";
|
|
1840
|
+
}>>;
|
|
1841
|
+
}, z.core.$strip>>;
|
|
1842
|
+
kiro: z.ZodOptional<z.ZodObject<{
|
|
1843
|
+
agent: z.ZodOptional<z.ZodString>;
|
|
1844
|
+
}, z.core.$strip>>;
|
|
1845
|
+
extends: z.ZodOptional<z.ZodString>;
|
|
1846
|
+
}, z.core.$strict>>;
|
|
1773
1847
|
instruction: z.ZodOptional<z.ZodString>;
|
|
1774
1848
|
instruction_template: z.ZodOptional<z.ZodNever>;
|
|
1775
1849
|
rules: z.ZodArray<z.ZodObject<{
|
|
@@ -1782,6 +1856,7 @@ export declare const LoopMonitorSchema: z.ZodObject<{
|
|
|
1782
1856
|
cycle: z.ZodArray<z.ZodString>;
|
|
1783
1857
|
threshold: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1784
1858
|
judge: z.ZodObject<{
|
|
1859
|
+
session_key: z.ZodOptional<z.ZodString>;
|
|
1785
1860
|
persona: z.ZodOptional<z.ZodString>;
|
|
1786
1861
|
provider: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1787
1862
|
claude: "claude";
|
|
@@ -1812,7 +1887,60 @@ export declare const LoopMonitorSchema: z.ZodObject<{
|
|
|
1812
1887
|
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1813
1888
|
}, z.core.$strip>>;
|
|
1814
1889
|
}, z.core.$strict>]>>;
|
|
1815
|
-
model: z.ZodOptional<z.ZodString
|
|
1890
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1891
|
+
provider_options: z.ZodOptional<z.ZodObject<{
|
|
1892
|
+
codex: z.ZodOptional<z.ZodObject<{
|
|
1893
|
+
base_url: z.ZodOptional<z.ZodString>;
|
|
1894
|
+
network_access: z.ZodOptional<z.ZodBoolean>;
|
|
1895
|
+
reasoning_effort: z.ZodOptional<z.ZodEnum<{
|
|
1896
|
+
minimal: "minimal";
|
|
1897
|
+
low: "low";
|
|
1898
|
+
medium: "medium";
|
|
1899
|
+
high: "high";
|
|
1900
|
+
xhigh: "xhigh";
|
|
1901
|
+
}>>;
|
|
1902
|
+
}, z.core.$strip>>;
|
|
1903
|
+
opencode: z.ZodOptional<z.ZodObject<{
|
|
1904
|
+
network_access: z.ZodOptional<z.ZodBoolean>;
|
|
1905
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1906
|
+
allowed_tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1907
|
+
}, z.core.$strip>>;
|
|
1908
|
+
claude: z.ZodOptional<z.ZodObject<{
|
|
1909
|
+
base_url: z.ZodOptional<z.ZodString>;
|
|
1910
|
+
allowed_tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1911
|
+
effort: z.ZodOptional<z.ZodEnum<{
|
|
1912
|
+
low: "low";
|
|
1913
|
+
medium: "medium";
|
|
1914
|
+
high: "high";
|
|
1915
|
+
xhigh: "xhigh";
|
|
1916
|
+
max: "max";
|
|
1917
|
+
}>>;
|
|
1918
|
+
sandbox: z.ZodOptional<z.ZodObject<{
|
|
1919
|
+
allow_unsandboxed_commands: z.ZodOptional<z.ZodBoolean>;
|
|
1920
|
+
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1921
|
+
}, z.core.$strip>>;
|
|
1922
|
+
}, z.core.$strip>>;
|
|
1923
|
+
claude_terminal: z.ZodOptional<z.ZodObject<{
|
|
1924
|
+
backend: z.ZodOptional<z.ZodEnum<{
|
|
1925
|
+
tmux: "tmux";
|
|
1926
|
+
}>>;
|
|
1927
|
+
timeout_ms: z.ZodOptional<z.ZodNumber>;
|
|
1928
|
+
keep_session: z.ZodOptional<z.ZodBoolean>;
|
|
1929
|
+
transcript_poll_interval_ms: z.ZodOptional<z.ZodNumber>;
|
|
1930
|
+
}, z.core.$strict>>;
|
|
1931
|
+
copilot: z.ZodOptional<z.ZodObject<{
|
|
1932
|
+
effort: z.ZodOptional<z.ZodEnum<{
|
|
1933
|
+
low: "low";
|
|
1934
|
+
medium: "medium";
|
|
1935
|
+
high: "high";
|
|
1936
|
+
xhigh: "xhigh";
|
|
1937
|
+
}>>;
|
|
1938
|
+
}, z.core.$strip>>;
|
|
1939
|
+
kiro: z.ZodOptional<z.ZodObject<{
|
|
1940
|
+
agent: z.ZodOptional<z.ZodString>;
|
|
1941
|
+
}, z.core.$strip>>;
|
|
1942
|
+
extends: z.ZodOptional<z.ZodString>;
|
|
1943
|
+
}, z.core.$strict>>;
|
|
1816
1944
|
instruction: z.ZodOptional<z.ZodString>;
|
|
1817
1945
|
instruction_template: z.ZodOptional<z.ZodNever>;
|
|
1818
1946
|
rules: z.ZodArray<z.ZodObject<{
|
|
@@ -1978,6 +2106,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
1978
2106
|
steps: z.ZodArray<z.ZodPipe<z.ZodObject<{
|
|
1979
2107
|
name: z.ZodString;
|
|
1980
2108
|
description: z.ZodOptional<z.ZodString>;
|
|
2109
|
+
session_key: z.ZodOptional<z.ZodString>;
|
|
1981
2110
|
kind: z.ZodOptional<z.ZodEnum<{
|
|
1982
2111
|
agent: "agent";
|
|
1983
2112
|
system: "system";
|
|
@@ -2070,7 +2199,9 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2070
2199
|
extends: z.ZodOptional<z.ZodString>;
|
|
2071
2200
|
}, z.core.$strict>>;
|
|
2072
2201
|
}, z.core.$strict>>;
|
|
2073
|
-
args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]
|
|
2202
|
+
args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>, z.ZodObject<{
|
|
2203
|
+
$param: z.ZodString;
|
|
2204
|
+
}, z.core.$strict>]>>>;
|
|
2074
2205
|
session: z.ZodOptional<z.ZodEnum<{
|
|
2075
2206
|
continue: "continue";
|
|
2076
2207
|
refresh: "refresh";
|
|
@@ -2129,7 +2260,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2129
2260
|
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2130
2261
|
}, z.core.$strip>>;
|
|
2131
2262
|
}, z.core.$strict>]>>;
|
|
2132
|
-
model: z.ZodOptional<z.ZodString
|
|
2263
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2133
2264
|
promotion: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2134
2265
|
at: z.ZodOptional<z.ZodNumber>;
|
|
2135
2266
|
condition: z.ZodOptional<z.ZodString>;
|
|
@@ -2277,6 +2408,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2277
2408
|
extends: z.ZodOptional<z.ZodString>;
|
|
2278
2409
|
}, z.core.$strict>>;
|
|
2279
2410
|
edit: z.ZodOptional<z.ZodBoolean>;
|
|
2411
|
+
requires_user_input: z.ZodOptional<z.ZodBoolean>;
|
|
2280
2412
|
instruction: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2281
2413
|
$param: z.ZodString;
|
|
2282
2414
|
}, z.core.$strict>]>>;
|
|
@@ -2415,6 +2547,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2415
2547
|
pass_previous_response: z.ZodOptional<z.ZodBoolean>;
|
|
2416
2548
|
parallel: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2417
2549
|
name: z.ZodString;
|
|
2550
|
+
session_key: z.ZodOptional<z.ZodString>;
|
|
2418
2551
|
persona: z.ZodOptional<z.ZodString>;
|
|
2419
2552
|
persona_name: z.ZodOptional<z.ZodString>;
|
|
2420
2553
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2469,7 +2602,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2469
2602
|
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2470
2603
|
}, z.core.$strip>>;
|
|
2471
2604
|
}, z.core.$strict>]>>;
|
|
2472
|
-
model: z.ZodOptional<z.ZodString
|
|
2605
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2473
2606
|
promotion: z.ZodOptional<z.ZodNever>;
|
|
2474
2607
|
permission_mode: z.ZodOptional<z.ZodNever>;
|
|
2475
2608
|
required_permission_mode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2531,6 +2664,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2531
2664
|
extends: z.ZodOptional<z.ZodString>;
|
|
2532
2665
|
}, z.core.$strict>>;
|
|
2533
2666
|
edit: z.ZodOptional<z.ZodBoolean>;
|
|
2667
|
+
requires_user_input: z.ZodOptional<z.ZodNever>;
|
|
2534
2668
|
instruction: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2535
2669
|
$param: z.ZodString;
|
|
2536
2670
|
}, z.core.$strict>]>>;
|
|
@@ -2604,6 +2738,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2604
2738
|
}, z.core.$strip>, z.ZodTransform<{
|
|
2605
2739
|
name: string;
|
|
2606
2740
|
description?: string | undefined;
|
|
2741
|
+
session_key?: string | undefined;
|
|
2607
2742
|
kind?: "agent" | "system" | "workflow_call" | undefined;
|
|
2608
2743
|
mode?: "system" | undefined;
|
|
2609
2744
|
call?: string | undefined;
|
|
@@ -2653,7 +2788,9 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2653
2788
|
extends?: string | undefined;
|
|
2654
2789
|
} | undefined;
|
|
2655
2790
|
} | undefined;
|
|
2656
|
-
args?: Record<string, string | string[]
|
|
2791
|
+
args?: Record<string, string | string[] | {
|
|
2792
|
+
$param: string;
|
|
2793
|
+
}> | undefined;
|
|
2657
2794
|
session?: "continue" | "refresh" | undefined;
|
|
2658
2795
|
persona?: string | undefined;
|
|
2659
2796
|
persona_name?: string | undefined;
|
|
@@ -2689,7 +2826,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2689
2826
|
excluded_commands?: string[] | undefined;
|
|
2690
2827
|
} | undefined;
|
|
2691
2828
|
} | undefined;
|
|
2692
|
-
model?: string | undefined;
|
|
2829
|
+
model?: string | null | undefined;
|
|
2693
2830
|
promotion?: {
|
|
2694
2831
|
at?: number | undefined;
|
|
2695
2832
|
condition?: string | undefined;
|
|
@@ -2775,6 +2912,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2775
2912
|
extends?: string | undefined;
|
|
2776
2913
|
} | undefined;
|
|
2777
2914
|
edit?: boolean | undefined;
|
|
2915
|
+
requires_user_input?: boolean | undefined;
|
|
2778
2916
|
instruction?: string | {
|
|
2779
2917
|
$param: string;
|
|
2780
2918
|
} | undefined;
|
|
@@ -2910,6 +3048,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2910
3048
|
pass_previous_response?: boolean | undefined;
|
|
2911
3049
|
parallel?: {
|
|
2912
3050
|
name: string;
|
|
3051
|
+
session_key?: string | undefined;
|
|
2913
3052
|
persona?: string | undefined;
|
|
2914
3053
|
persona_name?: string | undefined;
|
|
2915
3054
|
tags?: string[] | undefined;
|
|
@@ -2944,7 +3083,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2944
3083
|
excluded_commands?: string[] | undefined;
|
|
2945
3084
|
} | undefined;
|
|
2946
3085
|
} | undefined;
|
|
2947
|
-
model?: string | undefined;
|
|
3086
|
+
model?: string | null | undefined;
|
|
2948
3087
|
promotion?: undefined;
|
|
2949
3088
|
permission_mode?: undefined;
|
|
2950
3089
|
required_permission_mode?: "readonly" | "edit" | "full" | undefined;
|
|
@@ -2983,6 +3122,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
2983
3122
|
extends?: string | undefined;
|
|
2984
3123
|
} | undefined;
|
|
2985
3124
|
edit?: boolean | undefined;
|
|
3125
|
+
requires_user_input?: undefined;
|
|
2986
3126
|
instruction?: string | {
|
|
2987
3127
|
$param: string;
|
|
2988
3128
|
} | undefined;
|
|
@@ -3049,6 +3189,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
3049
3189
|
}, {
|
|
3050
3190
|
name: string;
|
|
3051
3191
|
description?: string | undefined;
|
|
3192
|
+
session_key?: string | undefined;
|
|
3052
3193
|
kind?: "agent" | "system" | "workflow_call" | undefined;
|
|
3053
3194
|
mode?: "system" | undefined;
|
|
3054
3195
|
call?: string | undefined;
|
|
@@ -3098,7 +3239,9 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
3098
3239
|
extends?: string | undefined;
|
|
3099
3240
|
} | undefined;
|
|
3100
3241
|
} | undefined;
|
|
3101
|
-
args?: Record<string, string | string[]
|
|
3242
|
+
args?: Record<string, string | string[] | {
|
|
3243
|
+
$param: string;
|
|
3244
|
+
}> | undefined;
|
|
3102
3245
|
session?: "continue" | "refresh" | undefined;
|
|
3103
3246
|
persona?: string | undefined;
|
|
3104
3247
|
persona_name?: string | undefined;
|
|
@@ -3134,7 +3277,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
3134
3277
|
excluded_commands?: string[] | undefined;
|
|
3135
3278
|
} | undefined;
|
|
3136
3279
|
} | undefined;
|
|
3137
|
-
model?: string | undefined;
|
|
3280
|
+
model?: string | null | undefined;
|
|
3138
3281
|
promotion?: {
|
|
3139
3282
|
at?: number | undefined;
|
|
3140
3283
|
condition?: string | undefined;
|
|
@@ -3220,6 +3363,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
3220
3363
|
extends?: string | undefined;
|
|
3221
3364
|
} | undefined;
|
|
3222
3365
|
edit?: boolean | undefined;
|
|
3366
|
+
requires_user_input?: boolean | undefined;
|
|
3223
3367
|
instruction?: string | {
|
|
3224
3368
|
$param: string;
|
|
3225
3369
|
} | undefined;
|
|
@@ -3355,6 +3499,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
3355
3499
|
pass_previous_response?: boolean | undefined;
|
|
3356
3500
|
parallel?: {
|
|
3357
3501
|
name: string;
|
|
3502
|
+
session_key?: string | undefined;
|
|
3358
3503
|
persona?: string | undefined;
|
|
3359
3504
|
persona_name?: string | undefined;
|
|
3360
3505
|
tags?: string[] | undefined;
|
|
@@ -3389,7 +3534,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
3389
3534
|
excluded_commands?: string[] | undefined;
|
|
3390
3535
|
} | undefined;
|
|
3391
3536
|
} | undefined;
|
|
3392
|
-
model?: string | undefined;
|
|
3537
|
+
model?: string | null | undefined;
|
|
3393
3538
|
promotion?: undefined;
|
|
3394
3539
|
permission_mode?: undefined;
|
|
3395
3540
|
required_permission_mode?: "readonly" | "edit" | "full" | undefined;
|
|
@@ -3428,6 +3573,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
3428
3573
|
extends?: string | undefined;
|
|
3429
3574
|
} | undefined;
|
|
3430
3575
|
edit?: boolean | undefined;
|
|
3576
|
+
requires_user_input?: undefined;
|
|
3431
3577
|
instruction?: string | {
|
|
3432
3578
|
$param: string;
|
|
3433
3579
|
} | undefined;
|
|
@@ -3498,6 +3644,7 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
3498
3644
|
cycle: z.ZodArray<z.ZodString>;
|
|
3499
3645
|
threshold: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
3500
3646
|
judge: z.ZodObject<{
|
|
3647
|
+
session_key: z.ZodOptional<z.ZodString>;
|
|
3501
3648
|
persona: z.ZodOptional<z.ZodString>;
|
|
3502
3649
|
provider: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3503
3650
|
claude: "claude";
|
|
@@ -3528,7 +3675,60 @@ export declare const WorkflowConfigRawSchema: z.ZodObject<{
|
|
|
3528
3675
|
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3529
3676
|
}, z.core.$strip>>;
|
|
3530
3677
|
}, z.core.$strict>]>>;
|
|
3531
|
-
model: z.ZodOptional<z.ZodString
|
|
3678
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3679
|
+
provider_options: z.ZodOptional<z.ZodObject<{
|
|
3680
|
+
codex: z.ZodOptional<z.ZodObject<{
|
|
3681
|
+
base_url: z.ZodOptional<z.ZodString>;
|
|
3682
|
+
network_access: z.ZodOptional<z.ZodBoolean>;
|
|
3683
|
+
reasoning_effort: z.ZodOptional<z.ZodEnum<{
|
|
3684
|
+
minimal: "minimal";
|
|
3685
|
+
low: "low";
|
|
3686
|
+
medium: "medium";
|
|
3687
|
+
high: "high";
|
|
3688
|
+
xhigh: "xhigh";
|
|
3689
|
+
}>>;
|
|
3690
|
+
}, z.core.$strip>>;
|
|
3691
|
+
opencode: z.ZodOptional<z.ZodObject<{
|
|
3692
|
+
network_access: z.ZodOptional<z.ZodBoolean>;
|
|
3693
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
3694
|
+
allowed_tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3695
|
+
}, z.core.$strip>>;
|
|
3696
|
+
claude: z.ZodOptional<z.ZodObject<{
|
|
3697
|
+
base_url: z.ZodOptional<z.ZodString>;
|
|
3698
|
+
allowed_tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3699
|
+
effort: z.ZodOptional<z.ZodEnum<{
|
|
3700
|
+
low: "low";
|
|
3701
|
+
medium: "medium";
|
|
3702
|
+
high: "high";
|
|
3703
|
+
xhigh: "xhigh";
|
|
3704
|
+
max: "max";
|
|
3705
|
+
}>>;
|
|
3706
|
+
sandbox: z.ZodOptional<z.ZodObject<{
|
|
3707
|
+
allow_unsandboxed_commands: z.ZodOptional<z.ZodBoolean>;
|
|
3708
|
+
excluded_commands: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3709
|
+
}, z.core.$strip>>;
|
|
3710
|
+
}, z.core.$strip>>;
|
|
3711
|
+
claude_terminal: z.ZodOptional<z.ZodObject<{
|
|
3712
|
+
backend: z.ZodOptional<z.ZodEnum<{
|
|
3713
|
+
tmux: "tmux";
|
|
3714
|
+
}>>;
|
|
3715
|
+
timeout_ms: z.ZodOptional<z.ZodNumber>;
|
|
3716
|
+
keep_session: z.ZodOptional<z.ZodBoolean>;
|
|
3717
|
+
transcript_poll_interval_ms: z.ZodOptional<z.ZodNumber>;
|
|
3718
|
+
}, z.core.$strict>>;
|
|
3719
|
+
copilot: z.ZodOptional<z.ZodObject<{
|
|
3720
|
+
effort: z.ZodOptional<z.ZodEnum<{
|
|
3721
|
+
low: "low";
|
|
3722
|
+
medium: "medium";
|
|
3723
|
+
high: "high";
|
|
3724
|
+
xhigh: "xhigh";
|
|
3725
|
+
}>>;
|
|
3726
|
+
}, z.core.$strip>>;
|
|
3727
|
+
kiro: z.ZodOptional<z.ZodObject<{
|
|
3728
|
+
agent: z.ZodOptional<z.ZodString>;
|
|
3729
|
+
}, z.core.$strip>>;
|
|
3730
|
+
extends: z.ZodOptional<z.ZodString>;
|
|
3731
|
+
}, z.core.$strict>>;
|
|
3532
3732
|
instruction: z.ZodOptional<z.ZodString>;
|
|
3533
3733
|
instruction_template: z.ZodOptional<z.ZodNever>;
|
|
3534
3734
|
rules: z.ZodArray<z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-schemas.d.ts","sourceRoot":"","sources":["../../../src/core/models/workflow-schemas.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AA6B3B,eAAO,MAAM,+BAA+B;;kBAEjC,CAAC;
|
|
1
|
+
{"version":3,"file":"workflow-schemas.d.ts","sourceRoot":"","sources":["../../../src/core/models/workflow-schemas.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAmBzB,CAAC"}
|