agentwheel 0.14.4 → 0.14.5
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 +8 -2
- package/openpack.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -117,8 +117,12 @@ stderr warning when an update is available. Disable it with `--no-update-check`
|
|
|
117
117
|
## Companion Skill Doctor
|
|
118
118
|
|
|
119
119
|
Agentwheel ships its own companion skill in `github:NestDevLab/agentwheel` as `skills/agentwheel`.
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
Installing it is optional, but strongly recommended if you want to get the most out of Agentwheel:
|
|
121
|
+
the skill keeps Agentwheel commands, setup guidance, safety rules, and operational patterns available
|
|
122
|
+
inside your agent runtime instead of forcing you to leave the flow and look them up elsewhere.
|
|
123
|
+
|
|
124
|
+
The CLI never installs the companion skill silently into runtime folders. Use `doctor` to check the
|
|
125
|
+
selected runtime and print the exact preview and install commands when the skill is missing:
|
|
122
126
|
|
|
123
127
|
```bash
|
|
124
128
|
agentwheel doctor --adapter copilot --user
|
|
@@ -126,6 +130,8 @@ agentwheel install github:NestDevLab/agentwheel --adapter copilot --user --skill
|
|
|
126
130
|
agentwheel install github:NestDevLab/agentwheel --adapter copilot --user --skill agentwheel
|
|
127
131
|
```
|
|
128
132
|
|
|
133
|
+
Run the dry-run first when you want to inspect the target path and conflict status before writing.
|
|
134
|
+
|
|
129
135
|
## Runtime Targeting
|
|
130
136
|
|
|
131
137
|
Normal use does not need `--target-root`. Run agentwheel inside a runtime folder and it detects the
|
package/openpack.json
CHANGED