agentdeps 0.4.1 → 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 +15 -4
- package/dist/index.js +212 -209
- 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
|
|
@@ -156,7 +167,7 @@ dependencies:
|
|
|
156
167
|
When you run `agentdeps install`, both global and project dependencies are processed:
|
|
157
168
|
|
|
158
169
|
1. **Global deps** → installed to each agent's **global** directories (e.g., `~/.pi/agent/skills/`, `~/.claude/skills/`)
|
|
159
|
-
2. **Project deps** → installed to each agent's **project** directories (e.g., `.
|
|
170
|
+
2. **Project deps** → installed to each agent's **project** directories (e.g., `.agents/skills/`, `.claude/skills/`)
|
|
160
171
|
|
|
161
172
|
Global skills are available everywhere — no need to add the same dependency to every project.
|
|
162
173
|
|
|
@@ -200,13 +211,13 @@ my-skills-repo/
|
|
|
200
211
|
|
|
201
212
|
| Agent | Project Paths | Type |
|
|
202
213
|
|---|---|---|
|
|
203
|
-
| Pi | `.
|
|
214
|
+
| Pi | `.agents/skills`, `.agents/agents` | Universal |
|
|
204
215
|
| Claude Code | `.claude/skills`, `.claude/agents` | Unique |
|
|
205
216
|
| Cursor | `.cursor/skills`, `.cursor/agents` | Unique |
|
|
206
217
|
| Roo | `.roo/skills`, `.roo/agents` | Unique |
|
|
207
218
|
| Cline | `.cline/skills`, `.cline/agents` | Unique |
|
|
208
219
|
| Windsurf | `.windsurf/skills`, `.windsurf/agents` | Unique |
|
|
209
|
-
| OpenCode | `.
|
|
220
|
+
| OpenCode | `.agents/skills`, `.agents/agents` | Universal |
|
|
210
221
|
| Codex | `.agents/skills`, `.agents/agents` | Universal |
|
|
211
222
|
| Amp | `.agents/skills`, `.agents/agents` | Universal |
|
|
212
223
|
| Gemini CLI | `.agents/skills`, `.agents/agents` | Universal |
|
|
@@ -220,7 +231,7 @@ Universal agents share the same project paths — items are only installed once.
|
|
|
220
231
|
- **Link (default)**: Symlinks from `_agentdeps_managed/` to the cached repo. Fast, no duplication.
|
|
221
232
|
- **Copy**: Smart sync — adds new files, updates changed files, removes deleted files. Self-contained and portable.
|
|
222
233
|
|
|
223
|
-
Both use `_agentdeps_managed/` subdirectories (e.g., `.
|
|
234
|
+
Both use `_agentdeps_managed/` subdirectories (e.g., `.agents/skills/_agentdeps_managed/`) which are fully owned by the tool.
|
|
224
235
|
|
|
225
236
|
## Requirements
|
|
226
237
|
|