@gw-tools/autonomous-workflow-agent 2.3.0 → 2.3.2

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.
Files changed (2) hide show
  1. package/README.md +25 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,8 @@
6
6
 
7
7
  ```bash
8
8
  # One-liner (global - works in all projects)
9
- curl -fsSL https://raw.githubusercontent.com/mthines/gw-tools/main/packages/autonomous-workflow-agent/agents/autonomous-workflow.md \
9
+ mkdir -p ~/.claude/agents && \
10
+ curl -fsSL https://raw.githubusercontent.com/mthines/gw-tools/main/packages/autonomous-workflow-agent/agents/autonomous-workflow.md \
10
11
  -o ~/.claude/agents/autonomous-workflow.md
11
12
  ```
12
13
 
@@ -17,6 +18,29 @@ Or manually copy [`agents/autonomous-workflow.md`](./agents/autonomous-workflow.
17
18
 
18
19
  That's it. Claude Code will now automatically delegate feature implementation tasks to this agent.
19
20
 
21
+ ## Prerequisites
22
+
23
+ This agent requires the **gw CLI** to manage Git worktrees. Install it first:
24
+
25
+ ```bash
26
+ # Install (Homebrew on macOS)
27
+ brew install mthines/gw-tools/gw
28
+
29
+ # Or install via npm
30
+ npm install -g @gw-tools/gw
31
+
32
+ # Or install via Linux package manager
33
+ yay -S gw-tools
34
+ ```
35
+
36
+ Then initialize gw in your project:
37
+
38
+ ```bash
39
+ gw init <repo-url>
40
+ ```
41
+
42
+ See the [gw Quick Start guide](https://www.npmjs.com/package/@gw-tools/gw#quick-start) for detailed setup instructions.
43
+
20
44
  ## For Agent SDK Developers
21
45
 
22
46
  Building custom agents? Install via npm:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gw-tools/autonomous-workflow-agent",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "Autonomous workflow agent for Claude Agent SDK - complete feature development from task to PR",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",