@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.
@@ -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: ""
@@ -38,6 +38,9 @@ input:
38
38
  - type: text
39
39
  name: skillsContext
40
40
  default: ""
41
+ - type: text
42
+ name: mcpContext
43
+ default: ""
41
44
  output:
42
45
  - type: node
43
46
  name: next