@gw-tools/gw 0.55.0 → 0.55.1
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 +7 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -163,20 +163,17 @@ Once installed, your AI agent can:
|
|
|
163
163
|
|
|
164
164
|
### 🤖 Use as a Claude Code Agent
|
|
165
165
|
|
|
166
|
-
Want Claude Code to autonomously implement features end-to-end?
|
|
167
|
-
|
|
168
|
-
One-liner - installs agent and skill (global - works in all projects)
|
|
166
|
+
Want Claude Code to autonomously implement features end-to-end? One command:
|
|
169
167
|
|
|
170
168
|
```bash
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
-
|
|
174
|
-
|
|
169
|
+
# Install skill + auto-trigger rule
|
|
170
|
+
npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow --global --yes && \
|
|
171
|
+
mkdir -p .claude/rules && \
|
|
172
|
+
cp ~/.claude/autonomous-workflow/templates/routing-rule.template.md \
|
|
173
|
+
.claude/rules/autonomous-workflow-routing.md
|
|
175
174
|
```
|
|
176
175
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
Once installed, Claude will automatically use this agent when you ask it to implement features, and it will:
|
|
176
|
+
Then just say _"implement X independently"_ and the agent takes over. It will:
|
|
180
177
|
|
|
181
178
|
- Create isolated worktrees for each task
|
|
182
179
|
- Plan and implement incrementally
|