agentdeps 0.3.0 → 0.4.0
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 -1
- package/dist/index.js +171 -171
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -40,6 +40,10 @@ agentdeps add my-org/my-repo --skill frontend-design --skill kotlin-conventions
|
|
|
40
40
|
|
|
41
41
|
# Specify a git ref
|
|
42
42
|
agentdeps add my-org/my-repo --ref v2.0
|
|
43
|
+
|
|
44
|
+
# Add to global agents.yaml (available in every project)
|
|
45
|
+
agentdeps add my-org/my-repo --global
|
|
46
|
+
# or: agentdeps add my-org/my-repo -g
|
|
43
47
|
```
|
|
44
48
|
|
|
45
49
|
### 3. Install dependencies
|
|
@@ -124,7 +128,13 @@ custom_agents:
|
|
|
124
128
|
|
|
125
129
|
### Global Skills & Agents
|
|
126
130
|
|
|
127
|
-
Personal dependencies that should be available in **every project** go in a global `agents.yaml` alongside your config:
|
|
131
|
+
Personal dependencies that should be available in **every project** go in a global `agents.yaml` alongside your config. Use `--global` (or `-g`) to add them:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
agentdeps add my-org/my-skills-repo --global
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
The global file lives at:
|
|
128
138
|
|
|
129
139
|
```
|
|
130
140
|
~/.config/agentdeps/agents.yaml # Linux / macOS
|