@gw-tools/autonomous-workflow-agent 2.3.2 → 2.3.4
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 +32 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,25 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
**Ship features while you sleep.** Give this agent a task description and walk away—it handles everything from planning to PR creation, all in an isolated Git worktree that won't touch your working branch.
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
# One-liner (global - works in all projects)
|
|
9
|
-
mkdir -p ~/.claude/agents && \
|
|
10
|
-
curl -fsSL https://raw.githubusercontent.com/mthines/gw-tools/main/packages/autonomous-workflow-agent/agents/autonomous-workflow.md \
|
|
11
|
-
-o ~/.claude/agents/autonomous-workflow.md
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
Or manually copy [`agents/autonomous-workflow.md`](./agents/autonomous-workflow.md) to:
|
|
15
|
-
|
|
16
|
-
- `~/.claude/agents/` — Available in all your projects
|
|
17
|
-
- `.claude/agents/` — Available only in that project (commit to git for team sharing)
|
|
5
|
+
## Prerequisites
|
|
18
6
|
|
|
19
|
-
|
|
7
|
+
This agent requires:
|
|
20
8
|
|
|
21
|
-
|
|
9
|
+
1. **gw CLI** — Manages Git worktrees
|
|
10
|
+
2. **autonomous-workflow skill** — Contains the workflow instructions the agent follows
|
|
22
11
|
|
|
23
|
-
|
|
12
|
+
### 1. Install gw CLI
|
|
24
13
|
|
|
25
14
|
```bash
|
|
26
15
|
# Install (Homebrew on macOS)
|
|
@@ -41,6 +30,33 @@ gw init <repo-url>
|
|
|
41
30
|
|
|
42
31
|
See the [gw Quick Start guide](https://www.npmjs.com/package/@gw-tools/gw#quick-start) for detailed setup instructions.
|
|
43
32
|
|
|
33
|
+
### 2. Install the autonomous-workflow skill
|
|
34
|
+
|
|
35
|
+
The agent delegates workflow logic to this skill. Install it globally:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow --global --yes
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Quick Install for Claude Code
|
|
42
|
+
|
|
43
|
+
With prerequisites installed, add the agent to Claude Code:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
# One-liner - installs agent and skill (global - works in all projects)
|
|
47
|
+
mkdir -p ~/.claude/agents && \
|
|
48
|
+
curl -fsSL https://raw.githubusercontent.com/mthines/gw-tools/main/packages/autonomous-workflow-agent/agents/autonomous-workflow.md \
|
|
49
|
+
-o ~/.claude/agents/autonomous-workflow.md && \
|
|
50
|
+
npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow --global --yes
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Or manually copy [`agents/autonomous-workflow.md`](./agents/autonomous-workflow.md) to:
|
|
54
|
+
|
|
55
|
+
- `~/.claude/agents/` — Available in all your projects
|
|
56
|
+
- `.claude/agents/` — Available only in that project (commit to git for team sharing)
|
|
57
|
+
|
|
58
|
+
That's it. Claude Code will now automatically delegate feature implementation tasks to this agent.
|
|
59
|
+
|
|
44
60
|
## For Agent SDK Developers
|
|
45
61
|
|
|
46
62
|
Building custom agents? Install via npm:
|
package/package.json
CHANGED