@fieldwangai/agentflow 0.1.68 → 0.1.69

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.
@@ -5,7 +5,7 @@ description: |
5
5
 
6
6
  - `repoUrl` is required.
7
7
  - `targetDir` may be absolute or relative to the current workspace context.
8
- - If `targetDir` is empty, the repository is cloned into `${pipelineWorkspace}/.workspace/agentflow/git-repos/<repo-name>`.
8
+ - If `targetDir` is empty, the repository is cloned into `${pipelineWorkspace}/.workspace/agentflow/git-repos/<repo-name>`. For user pipelines, `${pipelineWorkspace}` follows the Admin Settings AgentFlow Data Root.
9
9
  - Set `includeSubmodules` to `true` to clone/update Git submodules recursively.
10
10
  - The `workspaceContext` output can be connected to CD Workspace, Load Skills, agent, or tool nodes.
11
11
  - The `gitContext` output can be connected to Worktree, GitLab MR, or other Git nodes.
@@ -6,7 +6,8 @@ description: |
6
6
  - `repoPath` is required unless `gitContext.repoPath` is connected.
7
7
  - `workspaceContext` is required so the node can preserve the previous execution context.
8
8
  - `branch` is optional. When empty, AgentFlow creates a detached worktree at the current HEAD.
9
- - `worktreePath` is optional. When empty, AgentFlow creates a path under `${pipelineWorkspace}/.workspace/agentflow/worktrees`.
9
+ - `worktreePath` is optional. When empty, AgentFlow creates a temporary worktree under the current run temp directory and removes it after the run finishes.
10
+ - Set `worktreePath` only when you explicitly want a persistent worktree outside the run lifecycle.
10
11
  - Existing worktree paths are reused only when they are registered by `git worktree list` for the given repo.
11
12
  - `pruneMissing` defaults to true. When Git has a registered worktree whose directory is missing, AgentFlow runs `git worktree prune` before adding it again.
12
13
  - `force` defaults to false. When true, AgentFlow passes `--force` to `git worktree add`.