@gw-tools/gw 0.56.0 → 0.56.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 +13 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -163,19 +163,27 @@ 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?
|
|
166
|
+
Want Claude Code to autonomously implement features end-to-end?
|
|
167
|
+
|
|
168
|
+
**Global setup (once):**
|
|
167
169
|
|
|
168
170
|
```bash
|
|
169
|
-
# Install skill
|
|
171
|
+
# Install skill + agent definition
|
|
170
172
|
npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow --global --yes && \
|
|
171
|
-
mkdir -p ~/.claude/agents
|
|
173
|
+
mkdir -p ~/.claude/agents && \
|
|
172
174
|
cp ~/.claude/skills/autonomous-workflow/templates/agent.template.md \
|
|
173
|
-
~/.claude/agents/autonomous-workflow.md
|
|
175
|
+
~/.claude/agents/autonomous-workflow.md
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
**Per-project auto-trigger:**
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
mkdir -p .claude/rules && \
|
|
174
182
|
cp ~/.claude/skills/autonomous-workflow/templates/routing-rule.template.md \
|
|
175
183
|
.claude/rules/autonomous-workflow-routing.md
|
|
176
184
|
```
|
|
177
185
|
|
|
178
|
-
Then
|
|
186
|
+
Then say _"implement X independently"_ and the agent takes over. It will:
|
|
179
187
|
|
|
180
188
|
- Create isolated worktrees for each task
|
|
181
189
|
- Plan and implement incrementally
|