@gw-tools/gw 0.52.2 → 0.52.3
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/README.md +5 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,6 +27,7 @@ A command-line tool for managing git worktrees, built with Deno.
|
|
|
27
27
|
- [Arguments](#arguments)
|
|
28
28
|
- [Options](#options)
|
|
29
29
|
- [Examples](#examples)
|
|
30
|
+
- [Staged Files](#staged-files)
|
|
30
31
|
- [Auto-Copy Configuration](#auto-copy-configuration)
|
|
31
32
|
- [Hooks](#hooks)
|
|
32
33
|
- [cd](#cd)
|
|
@@ -161,17 +162,18 @@ Once installed, your AI agent can:
|
|
|
161
162
|
|
|
162
163
|
Want Claude Code to autonomously implement features end-to-end? Install the autonomous workflow agent:
|
|
163
164
|
|
|
165
|
+
One-liner - installs agent and skill (global - works in all projects)
|
|
166
|
+
|
|
164
167
|
```bash
|
|
165
|
-
# One-liner - installs agent and skill (global - works in all projects)
|
|
166
168
|
mkdir -p ~/.claude/agents && \
|
|
167
169
|
curl -fsSL https://raw.githubusercontent.com/mthines/gw-tools/main/packages/autonomous-workflow-agent/agents/autonomous-workflow.md \
|
|
168
170
|
-o ~/.claude/agents/autonomous-workflow.md && \
|
|
169
171
|
npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow --global --yes
|
|
170
172
|
|
|
171
|
-
# Or manually: copy the file from packages/autonomous-workflow-agent/agents/autonomous-workflow.md
|
|
172
|
-
# to ~/.claude/agents/ (global) or .claude/agents/ (per-project)
|
|
173
173
|
```
|
|
174
174
|
|
|
175
|
+
Or manually: copy the file from `packages/autonomous-workflow-agent/agents/autonomous-workflow.md` to `~/.claude/agents/` (global) or `.claude/agents/` (per-project)
|
|
176
|
+
|
|
175
177
|
Once installed, Claude will automatically use this agent when you ask it to implement features, and it will:
|
|
176
178
|
|
|
177
179
|
- Create isolated worktrees for each task
|