@fieldwangai/agentflow 0.1.35 → 0.1.37
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/bin/lib/auth.mjs +58 -0
- package/bin/lib/catalog-flows.mjs +3 -1
- package/bin/lib/composer-agent.mjs +2 -0
- package/bin/lib/git-worktree.mjs +57 -8
- package/bin/lib/locales/en.json +4 -0
- package/bin/lib/locales/zh.json +4 -0
- package/bin/lib/marketplace.mjs +21 -4
- package/bin/lib/runtime-context.mjs +22 -4
- package/bin/lib/skill-registry.mjs +3 -1
- package/bin/lib/ui-server.mjs +312 -29
- package/bin/pipeline/pre-process-node.mjs +4 -0
- package/builtin/nodes/agent_subAgent.md +4 -1
- package/builtin/nodes/display_chart.md +31 -0
- package/builtin/nodes/tool_git_worktree_load.md +10 -0
- package/builtin/nodes/tool_nodejs.md +3 -0
- package/builtin/web-ui/dist/assets/index-B0FRh8GY.js +214 -0
- package/builtin/web-ui/dist/assets/index-DgQRkS4v.js +61 -0
- package/builtin/web-ui/dist/assets/index-xdncUuHG.css +1 -0
- package/builtin/web-ui/dist/index.html +2 -2
- package/package.json +1 -1
- package/builtin/web-ui/dist/assets/index-BzmhleR9.css +0 -1
- package/builtin/web-ui/dist/assets/index-DEeZI5V6.js +0 -214
|
@@ -8,6 +8,8 @@ description: |
|
|
|
8
8
|
- `branch` is optional. When empty, AgentFlow creates a detached worktree at the current HEAD.
|
|
9
9
|
- `worktreePath` is optional. When empty, AgentFlow creates a path under `${pipelineWorkspace}/.workspace/agentflow/worktrees`.
|
|
10
10
|
- Existing worktree paths are reused only when they are registered by `git worktree list` for the given repo.
|
|
11
|
+
- `pruneMissing` defaults to true. When Git has a registered worktree whose directory is missing, AgentFlow runs `git worktree prune` before adding it again.
|
|
12
|
+
- `force` defaults to false. When true, AgentFlow passes `--force` to `git worktree add`.
|
|
11
13
|
displayName: Load Worktree
|
|
12
14
|
input:
|
|
13
15
|
- type: node
|
|
@@ -22,6 +24,14 @@ input:
|
|
|
22
24
|
- type: file
|
|
23
25
|
name: worktreePath
|
|
24
26
|
default: ""
|
|
27
|
+
- type: bool
|
|
28
|
+
name: pruneMissing
|
|
29
|
+
default: "true"
|
|
30
|
+
showOnNode: false
|
|
31
|
+
- type: bool
|
|
32
|
+
name: force
|
|
33
|
+
default: "false"
|
|
34
|
+
showOnNode: false
|
|
25
35
|
- type: text
|
|
26
36
|
name: gitContext
|
|
27
37
|
default: ""
|