agentdeps 0.5.0 → 0.5.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 +11 -0
- package/dist/index.js +213 -210
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,6 +54,17 @@ agentdeps install
|
|
|
54
54
|
|
|
55
55
|
This clones/updates all dependency repos, discovers skills and agents, and installs them into each configured coding agent's directories.
|
|
56
56
|
|
|
57
|
+
When install changes managed items, the output now includes itemized change groups so you can see exactly what changed:
|
|
58
|
+
|
|
59
|
+
```text
|
|
60
|
+
✓ Project (Pi): 1 skill added, 1 skill updated, 1 skill removed
|
|
61
|
+
skills added: new-skill
|
|
62
|
+
skills updated: my-skill
|
|
63
|
+
skills removed: another-skill
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
If nothing changed, install stays concise and reports the target as `up to date`.
|
|
67
|
+
|
|
57
68
|
### 4. List dependencies
|
|
58
69
|
|
|
59
70
|
```bash
|