@gw-tools/gw 0.30.1 → 0.30.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 +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -162,10 +162,11 @@ Once installed, your AI agent can:
|
|
|
162
162
|
Want Claude Code to autonomously implement features end-to-end? Install the autonomous workflow agent:
|
|
163
163
|
|
|
164
164
|
```bash
|
|
165
|
-
# One-liner
|
|
165
|
+
# One-liner - installs agent and skill (global - works in all projects)
|
|
166
166
|
mkdir -p ~/.claude/agents && \
|
|
167
167
|
curl -fsSL https://raw.githubusercontent.com/mthines/gw-tools/main/packages/autonomous-workflow-agent/agents/autonomous-workflow.md \
|
|
168
|
-
-o ~/.claude/agents/autonomous-workflow.md
|
|
168
|
+
-o ~/.claude/agents/autonomous-workflow.md && \
|
|
169
|
+
npx skills add https://github.com/mthines/gw-tools --skill autonomous-workflow --global --yes
|
|
169
170
|
|
|
170
171
|
# Or manually: copy the file from packages/autonomous-workflow-agent/agents/autonomous-workflow.md
|
|
171
172
|
# to ~/.claude/agents/ (global) or .claude/agents/ (per-project)
|