From flow
Generate a .worktreerc.yml config file for the current project by scanning for environment files, lock files, and dev tooling - use when setting up worktree workflows for a new project
npx claudepluginhub salimhamed/claude-code-flow --plugin flowThis skill is limited to using the following tools:
Scan the current project and generate a `.worktreerc.yml` with sensible defaults
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Scan the current project and generate a .worktreerc.yml with sensible defaults
for the wt-create skill.
Look for .worktreerc.yml or .worktreerc.yaml in the repository root.
If one exists, read it, show it to the user, and ask if they want to overwrite or update it. Stop if they decline.
Use Glob to detect files that are typically gitignored but needed for development:
.env, .env.*.direnv.vscode/settings.json.idea/For each candidate found, verify it is actually gitignored:
git check-ignore <file>
Only include files that are gitignored (exit code 0). Files tracked by git don't need to be copied.
Use Glob to detect lock files and dev tooling:
| File Found | Suggested Hook |
|---|---|
uv.lock or pyproject.toml (with [tool.uv]) | uv sync |
package-lock.json | npm ci |
yarn.lock | yarn install |
pnpm-lock.yaml | pnpm install |
Gemfile.lock | bundle install |
.mise.toml or .tool-versions | mise install |
.pre-commit-config.yaml | pre-commit install |
Show what was detected and proposed. Use AskUserQuestion to let the user
confirm or adjust:
Generate the file with the confirmed settings.
Example output:
worktree:
copy:
- .env
- .env.local
post_create:
- uv sync
- pre-commit install
Omit copy or post_create sections entirely if they would be empty.