@gw-tools/gw 0.56.1 → 0.56.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 +16 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -165,21 +165,29 @@ Once installed, your AI agent can:
|
|
|
165
165
|
|
|
166
166
|
Want Claude Code to autonomously implement features end-to-end?
|
|
167
167
|
|
|
168
|
-
|
|
168
|
+
Install the skill:
|
|
169
169
|
|
|
170
170
|
```bash
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
171
|
+
npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow --global --yes
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
Then install the agent + routing rule — either globally or per-project:
|
|
175
|
+
|
|
176
|
+
**Global** (personal use):
|
|
177
|
+
|
|
178
|
+
```bash
|
|
179
|
+
mkdir -p ~/.claude/agents && \
|
|
180
|
+
ln -sf ~/.claude/skills/autonomous-workflow/templates/agent.template.md \
|
|
175
181
|
~/.claude/agents/autonomous-workflow.md
|
|
176
182
|
```
|
|
177
183
|
|
|
178
|
-
**Per-project
|
|
184
|
+
**Per-project** (team use — committable to git, customizable):
|
|
179
185
|
|
|
180
186
|
```bash
|
|
181
|
-
mkdir -p .claude/rules && \
|
|
182
|
-
|
|
187
|
+
mkdir -p .claude/agents .claude/rules && \
|
|
188
|
+
ln -sf ~/.claude/skills/autonomous-workflow/templates/agent.template.md \
|
|
189
|
+
.claude/agents/autonomous-workflow.md && \
|
|
190
|
+
ln -sf ~/.claude/skills/autonomous-workflow/templates/routing-rule.template.md \
|
|
183
191
|
.claude/rules/autonomous-workflow-routing.md
|
|
184
192
|
```
|
|
185
193
|
|