agent-pipeline 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +2 -3
- package/README.md +110 -55
- package/dist/cli/commands/agent/info.js +1 -1
- package/dist/cli/commands/agent/info.js.map +1 -1
- package/dist/cli/commands/agent/list.js +1 -1
- package/dist/cli/commands/agent/list.js.map +1 -1
- package/dist/cli/commands/agent/pull.d.ts +1 -0
- package/dist/cli/commands/agent/pull.d.ts.map +1 -1
- package/dist/cli/commands/agent/pull.js +67 -44
- package/dist/cli/commands/agent/pull.js.map +1 -1
- package/dist/cli/commands/cleanup.d.ts +4 -0
- package/dist/cli/commands/cleanup.d.ts.map +1 -1
- package/dist/cli/commands/cleanup.js +197 -37
- package/dist/cli/commands/cleanup.js.map +1 -1
- package/dist/cli/commands/history.d.ts.map +1 -1
- package/dist/cli/commands/history.js +3 -22
- package/dist/cli/commands/history.js.map +1 -1
- package/dist/cli/commands/hooks.d.ts +10 -0
- package/dist/cli/commands/hooks.d.ts.map +1 -0
- package/dist/cli/commands/hooks.js +88 -0
- package/dist/cli/commands/hooks.js.map +1 -0
- package/dist/cli/commands/init.d.ts +1 -6
- package/dist/cli/commands/init.d.ts.map +1 -1
- package/dist/cli/commands/init.js +173 -58
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/loop-context.d.ts +2 -0
- package/dist/cli/commands/loop-context.d.ts.map +1 -0
- package/dist/cli/commands/loop-context.js +88 -0
- package/dist/cli/commands/loop-context.js.map +1 -0
- package/dist/cli/commands/pipeline/create.d.ts.map +1 -1
- package/dist/cli/commands/pipeline/create.js +156 -68
- package/dist/cli/commands/pipeline/create.js.map +1 -1
- package/dist/cli/commands/run.d.ts +1 -1
- package/dist/cli/commands/run.d.ts.map +1 -1
- package/dist/cli/commands/run.js +29 -5
- package/dist/cli/commands/run.js.map +1 -1
- package/dist/cli/commands/schema.d.ts +9 -0
- package/dist/cli/commands/schema.d.ts.map +1 -0
- package/dist/cli/commands/schema.js +541 -0
- package/dist/cli/commands/schema.js.map +1 -0
- package/dist/cli/commands/status.d.ts.map +1 -1
- package/dist/cli/commands/status.js +0 -6
- package/dist/cli/commands/status.js.map +1 -1
- package/dist/cli/help/index.d.ts +6 -0
- package/dist/cli/help/index.d.ts.map +1 -0
- package/dist/cli/help/index.js +538 -0
- package/dist/cli/help/index.js.map +1 -0
- package/dist/cli/help/types.d.ts +22 -0
- package/dist/cli/help/types.d.ts.map +1 -0
- package/dist/cli/help/types.js +2 -0
- package/dist/cli/help/types.js.map +1 -0
- package/dist/cli/hooks.d.ts +5 -1
- package/dist/cli/hooks.d.ts.map +1 -1
- package/dist/cli/hooks.js +106 -12
- package/dist/cli/hooks.js.map +1 -1
- package/dist/cli/templates/agents/code-review-agents/code-reviewer.md +46 -0
- package/dist/cli/templates/agents/code-review-agents/memory-doc-updater.md +189 -0
- package/dist/cli/templates/agents/code-review-agents/quality-checker.md +52 -0
- package/dist/cli/templates/agents/frontend-agents/brutalist_purist.md +563 -0
- package/dist/cli/templates/agents/frontend-agents/cyberpunk_hacker.md +824 -0
- package/dist/cli/templates/agents/frontend-agents/frontend-pipeline-ref.md +32 -0
- package/dist/cli/templates/agents/frontend-agents/indie_game_dev.md +715 -0
- package/dist/cli/templates/agents/frontend-agents/luxury_editorial.md +628 -0
- package/dist/cli/templates/agents/frontend-agents/product_owner.md +159 -0
- package/dist/cli/templates/agents/frontend-agents/retro_90s_webmaster.md +385 -0
- package/dist/cli/templates/agents/frontend-agents/showcase.md +362 -0
- package/dist/cli/templates/agents/frontend-agents/swiss_modernist.md +716 -0
- package/dist/cli/templates/agents/loop-agents/socratic-explorer.md +91 -0
- package/dist/cli/templates/instructions/handover.md +40 -0
- package/dist/cli/templates/instructions/loop.md +35 -0
- package/dist/cli/templates/pipelines/front-end-parallel-example.yml +81 -0
- package/dist/cli/templates/pipelines/loop-example.yml +25 -0
- package/dist/cli/templates/pipelines/post-commit-example.yml +49 -58
- package/dist/cli/templates/schema/pipeline-config.schema.json +400 -0
- package/dist/cli/templates/schema/pipeline-config.schema.yaml +301 -0
- package/dist/cli/utils/agent-importer.d.ts +1 -0
- package/dist/cli/utils/agent-importer.d.ts.map +1 -1
- package/dist/cli/utils/agent-importer.js +67 -0
- package/dist/cli/utils/agent-importer.js.map +1 -1
- package/dist/cli/utils/interactive-prompts.d.ts +4 -0
- package/dist/cli/utils/interactive-prompts.d.ts.map +1 -1
- package/dist/cli/utils/interactive-prompts.js +59 -13
- package/dist/cli/utils/interactive-prompts.js.map +1 -1
- package/dist/config/pipeline-loader.d.ts +4 -1
- package/dist/config/pipeline-loader.d.ts.map +1 -1
- package/dist/config/pipeline-loader.js +58 -0
- package/dist/config/pipeline-loader.js.map +1 -1
- package/dist/config/schema.d.ts +65 -35
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/core/abort-controller.d.ts +16 -0
- package/dist/core/abort-controller.d.ts.map +1 -0
- package/dist/core/abort-controller.js +52 -0
- package/dist/core/abort-controller.js.map +1 -0
- package/dist/core/agent-query-runner.d.ts +0 -1
- package/dist/core/agent-query-runner.d.ts.map +1 -1
- package/dist/core/agent-query-runner.js +0 -22
- package/dist/core/agent-query-runner.js.map +1 -1
- package/dist/core/agent-runtimes/claude-code-headless-runtime.d.ts +5 -1
- package/dist/core/agent-runtimes/claude-code-headless-runtime.d.ts.map +1 -1
- package/dist/core/agent-runtimes/claude-code-headless-runtime.js +127 -12
- package/dist/core/agent-runtimes/claude-code-headless-runtime.js.map +1 -1
- package/dist/core/agent-runtimes/claude-sdk-runtime.d.ts +0 -2
- package/dist/core/agent-runtimes/claude-sdk-runtime.d.ts.map +1 -1
- package/dist/core/agent-runtimes/claude-sdk-runtime.js +1 -22
- package/dist/core/agent-runtimes/claude-sdk-runtime.js.map +1 -1
- package/dist/core/branch-manager.d.ts +3 -1
- package/dist/core/branch-manager.d.ts.map +1 -1
- package/dist/core/branch-manager.js +11 -1
- package/dist/core/branch-manager.js.map +1 -1
- package/dist/core/git-manager.d.ts +17 -1
- package/dist/core/git-manager.d.ts.map +1 -1
- package/dist/core/git-manager.js +147 -3
- package/dist/core/git-manager.js.map +1 -1
- package/dist/core/group-execution-orchestrator.d.ts +7 -13
- package/dist/core/group-execution-orchestrator.d.ts.map +1 -1
- package/dist/core/group-execution-orchestrator.js +53 -142
- package/dist/core/group-execution-orchestrator.js.map +1 -1
- package/dist/core/handover-manager.d.ts +24 -0
- package/dist/core/handover-manager.d.ts.map +1 -0
- package/dist/core/handover-manager.js +214 -0
- package/dist/core/handover-manager.js.map +1 -0
- package/dist/core/instruction-loader.d.ts +23 -0
- package/dist/core/instruction-loader.d.ts.map +1 -0
- package/dist/core/instruction-loader.js +112 -0
- package/dist/core/instruction-loader.js.map +1 -0
- package/dist/core/loop-state-manager.d.ts +12 -7
- package/dist/core/loop-state-manager.d.ts.map +1 -1
- package/dist/core/loop-state-manager.js +49 -3
- package/dist/core/loop-state-manager.js.map +1 -1
- package/dist/core/parallel-executor.d.ts +12 -3
- package/dist/core/parallel-executor.d.ts.map +1 -1
- package/dist/core/parallel-executor.js +92 -14
- package/dist/core/parallel-executor.js.map +1 -1
- package/dist/core/pipeline-finalizer.d.ts +12 -4
- package/dist/core/pipeline-finalizer.d.ts.map +1 -1
- package/dist/core/pipeline-finalizer.js +244 -33
- package/dist/core/pipeline-finalizer.js.map +1 -1
- package/dist/core/pipeline-initializer.d.ts +13 -5
- package/dist/core/pipeline-initializer.d.ts.map +1 -1
- package/dist/core/pipeline-initializer.js +53 -25
- package/dist/core/pipeline-initializer.js.map +1 -1
- package/dist/core/pipeline-runner.d.ts +13 -1
- package/dist/core/pipeline-runner.d.ts.map +1 -1
- package/dist/core/pipeline-runner.js +352 -60
- package/dist/core/pipeline-runner.js.map +1 -1
- package/dist/core/pr-creator.d.ts +0 -1
- package/dist/core/pr-creator.d.ts.map +1 -1
- package/dist/core/pr-creator.js +12 -4
- package/dist/core/pr-creator.js.map +1 -1
- package/dist/core/stage-executor.d.ts +17 -9
- package/dist/core/stage-executor.d.ts.map +1 -1
- package/dist/core/stage-executor.js +152 -166
- package/dist/core/stage-executor.js.map +1 -1
- package/dist/core/types/agent-runtime.d.ts +3 -2
- package/dist/core/types/agent-runtime.d.ts.map +1 -1
- package/dist/core/worktree-manager.d.ts +21 -0
- package/dist/core/worktree-manager.d.ts.map +1 -0
- package/dist/core/worktree-manager.js +133 -0
- package/dist/core/worktree-manager.js.map +1 -0
- package/dist/index.js +118 -112
- package/dist/index.js.map +1 -1
- package/dist/notifications/notification-manager.d.ts +1 -0
- package/dist/notifications/notification-manager.d.ts.map +1 -1
- package/dist/notifications/notification-manager.js +17 -3
- package/dist/notifications/notification-manager.js.map +1 -1
- package/dist/notifications/notifiers/local-notifier.d.ts.map +1 -1
- package/dist/notifications/notifiers/local-notifier.js +5 -2
- package/dist/notifications/notifiers/local-notifier.js.map +1 -1
- package/dist/notifications/notifiers/slack-notifier.d.ts.map +1 -1
- package/dist/notifications/notifiers/slack-notifier.js +39 -8
- package/dist/notifications/notifiers/slack-notifier.js.map +1 -1
- package/dist/notifications/types.d.ts +1 -1
- package/dist/notifications/types.d.ts.map +1 -1
- package/dist/ui/components/execution-group.d.ts.map +1 -1
- package/dist/ui/components/execution-group.js +1 -1
- package/dist/ui/components/execution-group.js.map +1 -1
- package/dist/ui/components/interactive-summary.d.ts +9 -0
- package/dist/ui/components/interactive-summary.d.ts.map +1 -0
- package/dist/ui/components/interactive-summary.js +166 -0
- package/dist/ui/components/interactive-summary.js.map +1 -0
- package/dist/ui/components/keyboard-hints.d.ts +12 -0
- package/dist/ui/components/keyboard-hints.d.ts.map +1 -0
- package/dist/ui/components/keyboard-hints.js +13 -0
- package/dist/ui/components/keyboard-hints.js.map +1 -0
- package/dist/ui/components/live-timer.d.ts +9 -0
- package/dist/ui/components/live-timer.d.ts.map +1 -0
- package/dist/ui/components/live-timer.js +25 -0
- package/dist/ui/components/live-timer.js.map +1 -0
- package/dist/ui/components/loop-iteration-history.d.ts +8 -0
- package/dist/ui/components/loop-iteration-history.d.ts.map +1 -0
- package/dist/ui/components/loop-iteration-history.js +106 -0
- package/dist/ui/components/loop-iteration-history.js.map +1 -0
- package/dist/ui/components/loop-session-summary.d.ts +9 -0
- package/dist/ui/components/loop-session-summary.d.ts.map +1 -0
- package/dist/ui/components/loop-session-summary.js +39 -0
- package/dist/ui/components/loop-session-summary.js.map +1 -0
- package/dist/ui/components/stage-row.d.ts +0 -1
- package/dist/ui/components/stage-row.d.ts.map +1 -1
- package/dist/ui/components/stage-row.js +5 -15
- package/dist/ui/components/stage-row.js.map +1 -1
- package/dist/ui/components/status-badge.d.ts.map +1 -1
- package/dist/ui/components/status-badge.js +1 -0
- package/dist/ui/components/status-badge.js.map +1 -1
- package/dist/ui/pipeline-ui.d.ts +1 -0
- package/dist/ui/pipeline-ui.d.ts.map +1 -1
- package/dist/ui/pipeline-ui.js +22 -18
- package/dist/ui/pipeline-ui.js.map +1 -1
- package/dist/utils/error-factory.d.ts.map +1 -1
- package/dist/utils/error-factory.js +10 -2
- package/dist/utils/error-factory.js.map +1 -1
- package/dist/utils/pipeline-formatter.d.ts +8 -2
- package/dist/utils/pipeline-formatter.d.ts.map +1 -1
- package/dist/utils/pipeline-formatter.js +30 -26
- package/dist/utils/pipeline-formatter.js.map +1 -1
- package/dist/utils/pipeline-logger.d.ts +19 -0
- package/dist/utils/pipeline-logger.d.ts.map +1 -0
- package/dist/utils/pipeline-logger.js +80 -0
- package/dist/utils/pipeline-logger.js.map +1 -0
- package/dist/utils/platform-opener.d.ts +4 -0
- package/dist/utils/platform-opener.d.ts.map +1 -0
- package/dist/utils/platform-opener.js +52 -0
- package/dist/utils/platform-opener.js.map +1 -0
- package/dist/validators/agent-validator.d.ts +10 -0
- package/dist/validators/agent-validator.d.ts.map +1 -0
- package/dist/validators/agent-validator.js +87 -0
- package/dist/validators/agent-validator.js.map +1 -0
- package/dist/validators/dag-validator.d.ts +9 -0
- package/dist/validators/dag-validator.d.ts.map +1 -0
- package/dist/validators/dag-validator.js +51 -0
- package/dist/validators/dag-validator.js.map +1 -0
- package/dist/validators/environment-validator.d.ts +9 -0
- package/dist/validators/environment-validator.d.ts.map +1 -0
- package/dist/validators/environment-validator.js +35 -0
- package/dist/validators/environment-validator.js.map +1 -0
- package/dist/validators/execution-validator.d.ts +8 -0
- package/dist/validators/execution-validator.d.ts.map +1 -0
- package/dist/validators/execution-validator.js +51 -0
- package/dist/validators/execution-validator.js.map +1 -0
- package/dist/validators/git-validator.d.ts +13 -0
- package/dist/validators/git-validator.d.ts.map +1 -0
- package/dist/validators/git-validator.js +135 -0
- package/dist/validators/git-validator.js.map +1 -0
- package/dist/validators/notification-validator.d.ts +8 -0
- package/dist/validators/notification-validator.d.ts.map +1 -0
- package/dist/validators/notification-validator.js +27 -0
- package/dist/validators/notification-validator.js.map +1 -0
- package/dist/validators/pipeline-validator.d.ts +3 -26
- package/dist/validators/pipeline-validator.d.ts.map +1 -1
- package/dist/validators/pipeline-validator.js +5 -515
- package/dist/validators/pipeline-validator.js.map +1 -1
- package/dist/validators/retry-validator.d.ts +9 -0
- package/dist/validators/retry-validator.d.ts.map +1 -0
- package/dist/validators/retry-validator.js +34 -0
- package/dist/validators/retry-validator.js.map +1 -0
- package/dist/validators/runtime-validator.d.ts +9 -0
- package/dist/validators/runtime-validator.d.ts.map +1 -0
- package/dist/validators/runtime-validator.js +82 -0
- package/dist/validators/runtime-validator.js.map +1 -0
- package/dist/validators/structure-validator.d.ts +8 -0
- package/dist/validators/structure-validator.d.ts.map +1 -0
- package/dist/validators/structure-validator.js +39 -0
- package/dist/validators/structure-validator.js.map +1 -0
- package/dist/validators/types.d.ts +19 -0
- package/dist/validators/types.d.ts.map +1 -0
- package/dist/validators/types.js +2 -0
- package/dist/validators/types.js.map +1 -0
- package/dist/validators/validation-orchestrator.d.ts +9 -0
- package/dist/validators/validation-orchestrator.d.ts.map +1 -0
- package/dist/validators/validation-orchestrator.js +43 -0
- package/dist/validators/validation-orchestrator.js.map +1 -0
- package/package.json +17 -11
- package/dist/cli/commands/install.d.ts +0 -2
- package/dist/cli/commands/install.d.ts.map +0 -1
- package/dist/cli/commands/install.js +0 -15
- package/dist/cli/commands/install.js.map +0 -1
- package/dist/cli/commands/uninstall.d.ts +0 -2
- package/dist/cli/commands/uninstall.d.ts.map +0 -1
- package/dist/cli/commands/uninstall.js +0 -6
- package/dist/cli/commands/uninstall.js.map +0 -1
- package/dist/cli/templates/agents/cleanup-reporter.md +0 -107
- package/dist/cli/templates/agents/code-reducer.md +0 -51
- package/dist/cli/templates/agents/code-reviewer.md +0 -34
- package/dist/cli/templates/agents/context-reducer.md +0 -94
- package/dist/cli/templates/agents/dependency-auditor.md +0 -127
- package/dist/cli/templates/agents/detective-empath.md +0 -26
- package/dist/cli/templates/agents/detective-linguist.md +0 -26
- package/dist/cli/templates/agents/detective-logician.md +0 -26
- package/dist/cli/templates/agents/detective-skeptic.md +0 -26
- package/dist/cli/templates/agents/detective-statistician.md +0 -26
- package/dist/cli/templates/agents/doc-updater.md +0 -30
- package/dist/cli/templates/agents/judge.md +0 -27
- package/dist/cli/templates/agents/memory-updater.md +0 -72
- package/dist/cli/templates/agents/quality-checker.md +0 -32
- package/dist/cli/templates/agents/security-auditor.md +0 -32
- package/dist/cli/templates/agents/storyteller.md +0 -26
- package/dist/cli/templates/agents/summary.md +0 -32
- package/dist/cli/templates/agents/synthesizer.md +0 -26
- package/dist/cli/templates/pipelines/large-pipeline-example.yml +0 -178
- package/dist/cli/templates/pipelines/post-merge-example.yml +0 -78
- package/dist/cli/templates/pipelines/pre-commit-example.yml +0 -41
- package/dist/cli/templates/pipelines/pre-push-example.yml +0 -51
- package/dist/cli/templates/pipelines/test-pipeline.yml +0 -90
- package/dist/config/project-config-loader.d.ts +0 -11
- package/dist/config/project-config-loader.d.ts.map +0 -1
- package/dist/config/project-config-loader.js +0 -100
- package/dist/config/project-config-loader.js.map +0 -1
- package/dist/core/condition-evaluator.d.ts +0 -16
- package/dist/core/condition-evaluator.d.ts.map +0 -1
- package/dist/core/condition-evaluator.js +0 -121
- package/dist/core/condition-evaluator.js.map +0 -1
- package/dist/core/context-reducer.d.ts +0 -15
- package/dist/core/context-reducer.d.ts.map +0 -1
- package/dist/core/context-reducer.js +0 -224
- package/dist/core/context-reducer.js.map +0 -1
- package/dist/core/output-storage-manager.d.ts +0 -14
- package/dist/core/output-storage-manager.d.ts.map +0 -1
- package/dist/core/output-storage-manager.js +0 -68
- package/dist/core/output-storage-manager.js.map +0 -1
- package/dist/core/output-tool-builder.d.ts +0 -6
- package/dist/core/output-tool-builder.d.ts.map +0 -1
- package/dist/core/output-tool-builder.js +0 -50
- package/dist/core/output-tool-builder.js.map +0 -1
- /package/{license → LICENSE} +0 -0
|
@@ -0,0 +1,400 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/PipelineConfig",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"PipelineConfig": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"name": {
|
|
9
|
+
"type": "string"
|
|
10
|
+
},
|
|
11
|
+
"trigger": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"enum": [
|
|
14
|
+
"pre-commit",
|
|
15
|
+
"post-commit",
|
|
16
|
+
"pre-push",
|
|
17
|
+
"post-merge",
|
|
18
|
+
"manual"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"git": {
|
|
22
|
+
"$ref": "#/definitions/GitConfig"
|
|
23
|
+
},
|
|
24
|
+
"execution": {
|
|
25
|
+
"$ref": "#/definitions/ExecutionConfig"
|
|
26
|
+
},
|
|
27
|
+
"handover": {
|
|
28
|
+
"$ref": "#/definitions/HandoverConfig"
|
|
29
|
+
},
|
|
30
|
+
"notifications": {
|
|
31
|
+
"$ref": "#/definitions/NotificationConfig"
|
|
32
|
+
},
|
|
33
|
+
"looping": {
|
|
34
|
+
"$ref": "#/definitions/LoopingConfig"
|
|
35
|
+
},
|
|
36
|
+
"runtime": {
|
|
37
|
+
"$ref": "#/definitions/RuntimeConfig"
|
|
38
|
+
},
|
|
39
|
+
"agents": {
|
|
40
|
+
"type": "array",
|
|
41
|
+
"items": {
|
|
42
|
+
"$ref": "#/definitions/AgentStageConfig"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"required": [
|
|
47
|
+
"name",
|
|
48
|
+
"trigger",
|
|
49
|
+
"agents"
|
|
50
|
+
],
|
|
51
|
+
"additionalProperties": false
|
|
52
|
+
},
|
|
53
|
+
"GitConfig": {
|
|
54
|
+
"type": "object",
|
|
55
|
+
"properties": {
|
|
56
|
+
"autoCommit": {
|
|
57
|
+
"type": "boolean"
|
|
58
|
+
},
|
|
59
|
+
"commitPrefix": {
|
|
60
|
+
"type": "string"
|
|
61
|
+
},
|
|
62
|
+
"baseBranch": {
|
|
63
|
+
"type": "string"
|
|
64
|
+
},
|
|
65
|
+
"branchStrategy": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"enum": [
|
|
68
|
+
"reusable",
|
|
69
|
+
"unique-per-run",
|
|
70
|
+
"unique-and-delete"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"branchPrefix": {
|
|
74
|
+
"type": "string"
|
|
75
|
+
},
|
|
76
|
+
"mergeStrategy": {
|
|
77
|
+
"$ref": "#/definitions/MergeStrategy"
|
|
78
|
+
},
|
|
79
|
+
"pullRequest": {
|
|
80
|
+
"$ref": "#/definitions/PRConfig"
|
|
81
|
+
},
|
|
82
|
+
"worktree": {
|
|
83
|
+
"$ref": "#/definitions/WorktreeConfig"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"additionalProperties": false
|
|
87
|
+
},
|
|
88
|
+
"MergeStrategy": {
|
|
89
|
+
"type": "string",
|
|
90
|
+
"enum": [
|
|
91
|
+
"pull-request",
|
|
92
|
+
"local-merge",
|
|
93
|
+
"none"
|
|
94
|
+
],
|
|
95
|
+
"description": "Merge strategy for pipeline completion\n- pull-request: Push branch and create GitHub PR\n- local-merge: Merge branch to baseBranch locally (no remote interaction)\n- none: No merge action (work stays in branch/worktree)\n\nNote: 'unique-and-delete' branchStrategy cannot be used with 'none' mergeStrategy"
|
|
96
|
+
},
|
|
97
|
+
"PRConfig": {
|
|
98
|
+
"type": "object",
|
|
99
|
+
"properties": {
|
|
100
|
+
"title": {
|
|
101
|
+
"type": "string"
|
|
102
|
+
},
|
|
103
|
+
"body": {
|
|
104
|
+
"type": "string"
|
|
105
|
+
},
|
|
106
|
+
"reviewers": {
|
|
107
|
+
"type": "array",
|
|
108
|
+
"items": {
|
|
109
|
+
"type": "string"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"labels": {
|
|
113
|
+
"type": "array",
|
|
114
|
+
"items": {
|
|
115
|
+
"type": "string"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"draft": {
|
|
119
|
+
"type": "boolean"
|
|
120
|
+
},
|
|
121
|
+
"assignees": {
|
|
122
|
+
"type": "array",
|
|
123
|
+
"items": {
|
|
124
|
+
"type": "string"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"milestone": {
|
|
128
|
+
"type": "string"
|
|
129
|
+
},
|
|
130
|
+
"web": {
|
|
131
|
+
"type": "boolean"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"additionalProperties": false
|
|
135
|
+
},
|
|
136
|
+
"WorktreeConfig": {
|
|
137
|
+
"type": "object",
|
|
138
|
+
"properties": {
|
|
139
|
+
"directory": {
|
|
140
|
+
"type": "string"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"additionalProperties": false,
|
|
144
|
+
"description": "Worktree configuration for pipeline isolation Pipelines execute in dedicated git worktrees, leaving user's working directory untouched"
|
|
145
|
+
},
|
|
146
|
+
"ExecutionConfig": {
|
|
147
|
+
"type": "object",
|
|
148
|
+
"properties": {
|
|
149
|
+
"mode": {
|
|
150
|
+
"type": "string",
|
|
151
|
+
"enum": [
|
|
152
|
+
"sequential",
|
|
153
|
+
"parallel"
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
"failureStrategy": {
|
|
157
|
+
"type": "string",
|
|
158
|
+
"enum": [
|
|
159
|
+
"stop",
|
|
160
|
+
"continue"
|
|
161
|
+
]
|
|
162
|
+
},
|
|
163
|
+
"permissionMode": {
|
|
164
|
+
"$ref": "#/definitions/PermissionMode"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"additionalProperties": false,
|
|
168
|
+
"description": "Execution configuration - controls pipeline runtime behavior"
|
|
169
|
+
},
|
|
170
|
+
"PermissionMode": {
|
|
171
|
+
"type": "string",
|
|
172
|
+
"enum": [
|
|
173
|
+
"default",
|
|
174
|
+
"acceptEdits",
|
|
175
|
+
"bypassPermissions",
|
|
176
|
+
"plan"
|
|
177
|
+
],
|
|
178
|
+
"description": "Permission mode for agent execution\n- default: Prompts for permission based on .claude/settings.json rules\n- acceptEdits: Auto-accepts file edits (Write, Edit tools) while respecting allow/deny rules\n- bypassPermissions: Bypasses all permission checks (use with caution)\n- plan: Read-only mode, no actual execution",
|
|
179
|
+
"default": "'acceptEdits' - Optimized for automated workflows"
|
|
180
|
+
},
|
|
181
|
+
"HandoverConfig": {
|
|
182
|
+
"type": "object",
|
|
183
|
+
"properties": {
|
|
184
|
+
"directory": {
|
|
185
|
+
"type": "string"
|
|
186
|
+
},
|
|
187
|
+
"instructions": {
|
|
188
|
+
"type": "string"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"additionalProperties": false,
|
|
192
|
+
"description": "Handover configuration - inter-stage communication settings"
|
|
193
|
+
},
|
|
194
|
+
"NotificationConfig": {
|
|
195
|
+
"type": "object",
|
|
196
|
+
"properties": {
|
|
197
|
+
"enabled": {
|
|
198
|
+
"type": "boolean"
|
|
199
|
+
},
|
|
200
|
+
"events": {
|
|
201
|
+
"type": "array",
|
|
202
|
+
"items": {
|
|
203
|
+
"$ref": "#/definitions/NotificationEvent"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"channels": {
|
|
207
|
+
"type": "object",
|
|
208
|
+
"properties": {
|
|
209
|
+
"local": {
|
|
210
|
+
"$ref": "#/definitions/LocalNotificationConfig"
|
|
211
|
+
},
|
|
212
|
+
"slack": {
|
|
213
|
+
"$ref": "#/definitions/SlackNotificationConfig"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"additionalProperties": false
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"additionalProperties": false
|
|
220
|
+
},
|
|
221
|
+
"NotificationEvent": {
|
|
222
|
+
"type": "string",
|
|
223
|
+
"enum": [
|
|
224
|
+
"pipeline.started",
|
|
225
|
+
"pipeline.completed",
|
|
226
|
+
"pipeline.failed",
|
|
227
|
+
"pipeline.aborted",
|
|
228
|
+
"stage.completed",
|
|
229
|
+
"stage.failed",
|
|
230
|
+
"pr.created"
|
|
231
|
+
]
|
|
232
|
+
},
|
|
233
|
+
"LocalNotificationConfig": {
|
|
234
|
+
"type": "object",
|
|
235
|
+
"properties": {
|
|
236
|
+
"enabled": {
|
|
237
|
+
"type": "boolean"
|
|
238
|
+
},
|
|
239
|
+
"sound": {
|
|
240
|
+
"type": "boolean"
|
|
241
|
+
},
|
|
242
|
+
"openUrl": {
|
|
243
|
+
"type": "boolean"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"additionalProperties": false
|
|
247
|
+
},
|
|
248
|
+
"SlackNotificationConfig": {
|
|
249
|
+
"type": "object",
|
|
250
|
+
"properties": {
|
|
251
|
+
"enabled": {
|
|
252
|
+
"type": "boolean"
|
|
253
|
+
},
|
|
254
|
+
"webhookUrl": {
|
|
255
|
+
"type": "string"
|
|
256
|
+
},
|
|
257
|
+
"channel": {
|
|
258
|
+
"type": "string"
|
|
259
|
+
},
|
|
260
|
+
"mentionOnFailure": {
|
|
261
|
+
"type": "array",
|
|
262
|
+
"items": {
|
|
263
|
+
"type": "string"
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"additionalProperties": false
|
|
268
|
+
},
|
|
269
|
+
"LoopingConfig": {
|
|
270
|
+
"type": "object",
|
|
271
|
+
"properties": {
|
|
272
|
+
"enabled": {
|
|
273
|
+
"type": "boolean"
|
|
274
|
+
},
|
|
275
|
+
"maxIterations": {
|
|
276
|
+
"type": "number"
|
|
277
|
+
},
|
|
278
|
+
"instructions": {
|
|
279
|
+
"type": "string"
|
|
280
|
+
},
|
|
281
|
+
"directories": {
|
|
282
|
+
"type": "object",
|
|
283
|
+
"properties": {
|
|
284
|
+
"pending": {
|
|
285
|
+
"type": "string"
|
|
286
|
+
},
|
|
287
|
+
"running": {
|
|
288
|
+
"type": "string"
|
|
289
|
+
},
|
|
290
|
+
"finished": {
|
|
291
|
+
"type": "string"
|
|
292
|
+
},
|
|
293
|
+
"failed": {
|
|
294
|
+
"type": "string"
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"additionalProperties": false
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
"required": [
|
|
301
|
+
"enabled"
|
|
302
|
+
],
|
|
303
|
+
"additionalProperties": false
|
|
304
|
+
},
|
|
305
|
+
"RuntimeConfig": {
|
|
306
|
+
"type": "object",
|
|
307
|
+
"properties": {
|
|
308
|
+
"type": {
|
|
309
|
+
"type": "string"
|
|
310
|
+
},
|
|
311
|
+
"options": {
|
|
312
|
+
"type": "object",
|
|
313
|
+
"additionalProperties": {}
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
"required": [
|
|
317
|
+
"type"
|
|
318
|
+
],
|
|
319
|
+
"additionalProperties": false,
|
|
320
|
+
"description": "Runtime configuration for agent execution Supports multiple runtime types: 'claude-sdk', 'claude-code-headless', etc."
|
|
321
|
+
},
|
|
322
|
+
"AgentStageConfig": {
|
|
323
|
+
"type": "object",
|
|
324
|
+
"properties": {
|
|
325
|
+
"name": {
|
|
326
|
+
"type": "string"
|
|
327
|
+
},
|
|
328
|
+
"agent": {
|
|
329
|
+
"type": "string"
|
|
330
|
+
},
|
|
331
|
+
"runtime": {
|
|
332
|
+
"$ref": "#/definitions/RuntimeConfig"
|
|
333
|
+
},
|
|
334
|
+
"enabled": {
|
|
335
|
+
"type": "boolean"
|
|
336
|
+
},
|
|
337
|
+
"onFail": {
|
|
338
|
+
"type": "string",
|
|
339
|
+
"enum": [
|
|
340
|
+
"stop",
|
|
341
|
+
"continue",
|
|
342
|
+
"warn"
|
|
343
|
+
]
|
|
344
|
+
},
|
|
345
|
+
"timeout": {
|
|
346
|
+
"type": "number"
|
|
347
|
+
},
|
|
348
|
+
"dependsOn": {
|
|
349
|
+
"type": "array",
|
|
350
|
+
"items": {
|
|
351
|
+
"type": "string"
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"retry": {
|
|
355
|
+
"$ref": "#/definitions/RetryConfig"
|
|
356
|
+
},
|
|
357
|
+
"inputs": {
|
|
358
|
+
"type": "object",
|
|
359
|
+
"additionalProperties": {
|
|
360
|
+
"type": "string"
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"required": [
|
|
365
|
+
"name",
|
|
366
|
+
"agent"
|
|
367
|
+
],
|
|
368
|
+
"additionalProperties": false
|
|
369
|
+
},
|
|
370
|
+
"RetryConfig": {
|
|
371
|
+
"type": "object",
|
|
372
|
+
"properties": {
|
|
373
|
+
"maxAttempts": {
|
|
374
|
+
"type": "number"
|
|
375
|
+
},
|
|
376
|
+
"backoff": {
|
|
377
|
+
"type": "string",
|
|
378
|
+
"enum": [
|
|
379
|
+
"exponential",
|
|
380
|
+
"linear",
|
|
381
|
+
"fixed"
|
|
382
|
+
]
|
|
383
|
+
},
|
|
384
|
+
"initialDelay": {
|
|
385
|
+
"type": "number"
|
|
386
|
+
},
|
|
387
|
+
"maxDelay": {
|
|
388
|
+
"type": "number"
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
"required": [
|
|
392
|
+
"maxAttempts",
|
|
393
|
+
"backoff"
|
|
394
|
+
],
|
|
395
|
+
"additionalProperties": false
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"title": "Agent Pipeline Configuration",
|
|
399
|
+
"description": "Schema for .agent-pipeline/pipelines/*.yml configuration files"
|
|
400
|
+
}
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
$schema: http://json-schema.org/draft-07/schema#
|
|
2
|
+
$ref: "#/definitions/PipelineConfig"
|
|
3
|
+
definitions:
|
|
4
|
+
PipelineConfig:
|
|
5
|
+
type: object
|
|
6
|
+
properties:
|
|
7
|
+
name:
|
|
8
|
+
type: string
|
|
9
|
+
trigger:
|
|
10
|
+
type: string
|
|
11
|
+
enum:
|
|
12
|
+
- pre-commit
|
|
13
|
+
- post-commit
|
|
14
|
+
- pre-push
|
|
15
|
+
- post-merge
|
|
16
|
+
- manual
|
|
17
|
+
git:
|
|
18
|
+
$ref: "#/definitions/GitConfig"
|
|
19
|
+
execution:
|
|
20
|
+
$ref: "#/definitions/ExecutionConfig"
|
|
21
|
+
handover:
|
|
22
|
+
$ref: "#/definitions/HandoverConfig"
|
|
23
|
+
notifications:
|
|
24
|
+
$ref: "#/definitions/NotificationConfig"
|
|
25
|
+
looping:
|
|
26
|
+
$ref: "#/definitions/LoopingConfig"
|
|
27
|
+
runtime:
|
|
28
|
+
$ref: "#/definitions/RuntimeConfig"
|
|
29
|
+
agents:
|
|
30
|
+
type: array
|
|
31
|
+
items:
|
|
32
|
+
$ref: "#/definitions/AgentStageConfig"
|
|
33
|
+
required:
|
|
34
|
+
- name
|
|
35
|
+
- trigger
|
|
36
|
+
- agents
|
|
37
|
+
additionalProperties: false
|
|
38
|
+
GitConfig:
|
|
39
|
+
type: object
|
|
40
|
+
properties:
|
|
41
|
+
autoCommit:
|
|
42
|
+
type: boolean
|
|
43
|
+
commitPrefix:
|
|
44
|
+
type: string
|
|
45
|
+
baseBranch:
|
|
46
|
+
type: string
|
|
47
|
+
branchStrategy:
|
|
48
|
+
type: string
|
|
49
|
+
enum:
|
|
50
|
+
- reusable
|
|
51
|
+
- unique-per-run
|
|
52
|
+
- unique-and-delete
|
|
53
|
+
branchPrefix:
|
|
54
|
+
type: string
|
|
55
|
+
mergeStrategy:
|
|
56
|
+
$ref: "#/definitions/MergeStrategy"
|
|
57
|
+
pullRequest:
|
|
58
|
+
$ref: "#/definitions/PRConfig"
|
|
59
|
+
worktree:
|
|
60
|
+
$ref: "#/definitions/WorktreeConfig"
|
|
61
|
+
additionalProperties: false
|
|
62
|
+
MergeStrategy:
|
|
63
|
+
type: string
|
|
64
|
+
enum:
|
|
65
|
+
- pull-request
|
|
66
|
+
- local-merge
|
|
67
|
+
- none
|
|
68
|
+
description: >-
|
|
69
|
+
Merge strategy for pipeline completion
|
|
70
|
+
|
|
71
|
+
- pull-request: Push branch and create GitHub PR
|
|
72
|
+
|
|
73
|
+
- local-merge: Merge branch to baseBranch locally (no remote interaction)
|
|
74
|
+
|
|
75
|
+
- none: No merge action (work stays in branch/worktree)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
Note: 'unique-and-delete' branchStrategy cannot be used with 'none'
|
|
79
|
+
mergeStrategy
|
|
80
|
+
PRConfig:
|
|
81
|
+
type: object
|
|
82
|
+
properties:
|
|
83
|
+
title:
|
|
84
|
+
type: string
|
|
85
|
+
body:
|
|
86
|
+
type: string
|
|
87
|
+
reviewers:
|
|
88
|
+
type: array
|
|
89
|
+
items:
|
|
90
|
+
type: string
|
|
91
|
+
labels:
|
|
92
|
+
type: array
|
|
93
|
+
items:
|
|
94
|
+
type: string
|
|
95
|
+
draft:
|
|
96
|
+
type: boolean
|
|
97
|
+
assignees:
|
|
98
|
+
type: array
|
|
99
|
+
items:
|
|
100
|
+
type: string
|
|
101
|
+
milestone:
|
|
102
|
+
type: string
|
|
103
|
+
web:
|
|
104
|
+
type: boolean
|
|
105
|
+
additionalProperties: false
|
|
106
|
+
WorktreeConfig:
|
|
107
|
+
type: object
|
|
108
|
+
properties:
|
|
109
|
+
directory:
|
|
110
|
+
type: string
|
|
111
|
+
additionalProperties: false
|
|
112
|
+
description: Worktree configuration for pipeline isolation Pipelines execute in
|
|
113
|
+
dedicated git worktrees, leaving user's working directory untouched
|
|
114
|
+
ExecutionConfig:
|
|
115
|
+
type: object
|
|
116
|
+
properties:
|
|
117
|
+
mode:
|
|
118
|
+
type: string
|
|
119
|
+
enum:
|
|
120
|
+
- sequential
|
|
121
|
+
- parallel
|
|
122
|
+
failureStrategy:
|
|
123
|
+
type: string
|
|
124
|
+
enum:
|
|
125
|
+
- stop
|
|
126
|
+
- continue
|
|
127
|
+
permissionMode:
|
|
128
|
+
$ref: "#/definitions/PermissionMode"
|
|
129
|
+
additionalProperties: false
|
|
130
|
+
description: Execution configuration - controls pipeline runtime behavior
|
|
131
|
+
PermissionMode:
|
|
132
|
+
type: string
|
|
133
|
+
enum:
|
|
134
|
+
- default
|
|
135
|
+
- acceptEdits
|
|
136
|
+
- bypassPermissions
|
|
137
|
+
- plan
|
|
138
|
+
description: >-
|
|
139
|
+
Permission mode for agent execution
|
|
140
|
+
|
|
141
|
+
- default: Prompts for permission based on .claude/settings.json rules
|
|
142
|
+
|
|
143
|
+
- acceptEdits: Auto-accepts file edits (Write, Edit tools) while
|
|
144
|
+
respecting allow/deny rules
|
|
145
|
+
|
|
146
|
+
- bypassPermissions: Bypasses all permission checks (use with caution)
|
|
147
|
+
|
|
148
|
+
- plan: Read-only mode, no actual execution
|
|
149
|
+
default: "'acceptEdits' - Optimized for automated workflows"
|
|
150
|
+
HandoverConfig:
|
|
151
|
+
type: object
|
|
152
|
+
properties:
|
|
153
|
+
directory:
|
|
154
|
+
type: string
|
|
155
|
+
instructions:
|
|
156
|
+
type: string
|
|
157
|
+
additionalProperties: false
|
|
158
|
+
description: Handover configuration - inter-stage communication settings
|
|
159
|
+
NotificationConfig:
|
|
160
|
+
type: object
|
|
161
|
+
properties:
|
|
162
|
+
enabled:
|
|
163
|
+
type: boolean
|
|
164
|
+
events:
|
|
165
|
+
type: array
|
|
166
|
+
items:
|
|
167
|
+
$ref: "#/definitions/NotificationEvent"
|
|
168
|
+
channels:
|
|
169
|
+
type: object
|
|
170
|
+
properties:
|
|
171
|
+
local:
|
|
172
|
+
$ref: "#/definitions/LocalNotificationConfig"
|
|
173
|
+
slack:
|
|
174
|
+
$ref: "#/definitions/SlackNotificationConfig"
|
|
175
|
+
additionalProperties: false
|
|
176
|
+
additionalProperties: false
|
|
177
|
+
NotificationEvent:
|
|
178
|
+
type: string
|
|
179
|
+
enum:
|
|
180
|
+
- pipeline.started
|
|
181
|
+
- pipeline.completed
|
|
182
|
+
- pipeline.failed
|
|
183
|
+
- pipeline.aborted
|
|
184
|
+
- stage.completed
|
|
185
|
+
- stage.failed
|
|
186
|
+
- pr.created
|
|
187
|
+
LocalNotificationConfig:
|
|
188
|
+
type: object
|
|
189
|
+
properties:
|
|
190
|
+
enabled:
|
|
191
|
+
type: boolean
|
|
192
|
+
sound:
|
|
193
|
+
type: boolean
|
|
194
|
+
openUrl:
|
|
195
|
+
type: boolean
|
|
196
|
+
additionalProperties: false
|
|
197
|
+
SlackNotificationConfig:
|
|
198
|
+
type: object
|
|
199
|
+
properties:
|
|
200
|
+
enabled:
|
|
201
|
+
type: boolean
|
|
202
|
+
webhookUrl:
|
|
203
|
+
type: string
|
|
204
|
+
channel:
|
|
205
|
+
type: string
|
|
206
|
+
mentionOnFailure:
|
|
207
|
+
type: array
|
|
208
|
+
items:
|
|
209
|
+
type: string
|
|
210
|
+
additionalProperties: false
|
|
211
|
+
LoopingConfig:
|
|
212
|
+
type: object
|
|
213
|
+
properties:
|
|
214
|
+
enabled:
|
|
215
|
+
type: boolean
|
|
216
|
+
maxIterations:
|
|
217
|
+
type: number
|
|
218
|
+
instructions:
|
|
219
|
+
type: string
|
|
220
|
+
directories:
|
|
221
|
+
type: object
|
|
222
|
+
properties:
|
|
223
|
+
pending:
|
|
224
|
+
type: string
|
|
225
|
+
running:
|
|
226
|
+
type: string
|
|
227
|
+
finished:
|
|
228
|
+
type: string
|
|
229
|
+
failed:
|
|
230
|
+
type: string
|
|
231
|
+
additionalProperties: false
|
|
232
|
+
required:
|
|
233
|
+
- enabled
|
|
234
|
+
additionalProperties: false
|
|
235
|
+
RuntimeConfig:
|
|
236
|
+
type: object
|
|
237
|
+
properties:
|
|
238
|
+
type:
|
|
239
|
+
type: string
|
|
240
|
+
options:
|
|
241
|
+
type: object
|
|
242
|
+
additionalProperties: {}
|
|
243
|
+
required:
|
|
244
|
+
- type
|
|
245
|
+
additionalProperties: false
|
|
246
|
+
description: "Runtime configuration for agent execution Supports multiple
|
|
247
|
+
runtime types: 'claude-sdk', 'claude-code-headless', etc."
|
|
248
|
+
AgentStageConfig:
|
|
249
|
+
type: object
|
|
250
|
+
properties:
|
|
251
|
+
name:
|
|
252
|
+
type: string
|
|
253
|
+
agent:
|
|
254
|
+
type: string
|
|
255
|
+
runtime:
|
|
256
|
+
$ref: "#/definitions/RuntimeConfig"
|
|
257
|
+
enabled:
|
|
258
|
+
type: boolean
|
|
259
|
+
onFail:
|
|
260
|
+
type: string
|
|
261
|
+
enum:
|
|
262
|
+
- stop
|
|
263
|
+
- continue
|
|
264
|
+
- warn
|
|
265
|
+
timeout:
|
|
266
|
+
type: number
|
|
267
|
+
dependsOn:
|
|
268
|
+
type: array
|
|
269
|
+
items:
|
|
270
|
+
type: string
|
|
271
|
+
retry:
|
|
272
|
+
$ref: "#/definitions/RetryConfig"
|
|
273
|
+
inputs:
|
|
274
|
+
type: object
|
|
275
|
+
additionalProperties:
|
|
276
|
+
type: string
|
|
277
|
+
required:
|
|
278
|
+
- name
|
|
279
|
+
- agent
|
|
280
|
+
additionalProperties: false
|
|
281
|
+
RetryConfig:
|
|
282
|
+
type: object
|
|
283
|
+
properties:
|
|
284
|
+
maxAttempts:
|
|
285
|
+
type: number
|
|
286
|
+
backoff:
|
|
287
|
+
type: string
|
|
288
|
+
enum:
|
|
289
|
+
- exponential
|
|
290
|
+
- linear
|
|
291
|
+
- fixed
|
|
292
|
+
initialDelay:
|
|
293
|
+
type: number
|
|
294
|
+
maxDelay:
|
|
295
|
+
type: number
|
|
296
|
+
required:
|
|
297
|
+
- maxAttempts
|
|
298
|
+
- backoff
|
|
299
|
+
additionalProperties: false
|
|
300
|
+
title: Agent Pipeline Configuration
|
|
301
|
+
description: Schema for .agent-pipeline/pipelines/*.yml configuration files
|
|
@@ -17,5 +17,6 @@ export declare class AgentImporter {
|
|
|
17
17
|
static importPluginAgents(targetAgentsDir: string, options?: {
|
|
18
18
|
silent?: boolean;
|
|
19
19
|
}): Promise<ImportSummary>;
|
|
20
|
+
static importSelectedAgents(targetAgentsDir: string, selectedAgents: ImportedAgent[]): Promise<ImportSummary>;
|
|
20
21
|
}
|
|
21
22
|
//# sourceMappingURL=agent-importer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-importer.d.ts","sourceRoot":"","sources":["../../../src/cli/utils/agent-importer.ts"],"names":[],"mappings":"AAOA,MAAM,WAAW,aAAa;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,aAAa,EAAE,CAAC;CACzB;AAED,qBAAa,aAAa;IAIxB,MAAM,CAAC,wBAAwB,IAAI,MAAM;WAoB5B,oBAAoB,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC;WA4DhD,kBAAkB,CAAC,eAAe,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,OAAO,CAAC,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"agent-importer.d.ts","sourceRoot":"","sources":["../../../src/cli/utils/agent-importer.ts"],"names":[],"mappings":"AAOA,MAAM,WAAW,aAAa;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,aAAa,EAAE,CAAC;CACzB;AAED,qBAAa,aAAa;IAIxB,MAAM,CAAC,wBAAwB,IAAI,MAAM;WAoB5B,oBAAoB,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC;WA4DhD,kBAAkB,CAAC,eAAe,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,OAAO,CAAC,aAAa,CAAC;WA8GnG,oBAAoB,CAC/B,eAAe,EAAE,MAAM,EACvB,cAAc,EAAE,aAAa,EAAE,GAC9B,OAAO,CAAC,aAAa,CAAC;CAmF1B"}
|