@ryodeushii/ai-product-team-agents 0.0.5 → 0.0.6
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 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -166,7 +166,7 @@ Add to your Claude Code MCP config (`~/.claude/mcp.json` or project-level `.mcp.
|
|
|
166
166
|
"mcpServers": {
|
|
167
167
|
"agents-framework": {
|
|
168
168
|
"command": "bunx",
|
|
169
|
-
"args": ["
|
|
169
|
+
"args": ["--package=@ryodeushii/ai-product-team-agents", "agents-mcp"]
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
172
|
}
|
|
@@ -179,7 +179,20 @@ Or with npx:
|
|
|
179
179
|
"mcpServers": {
|
|
180
180
|
"agents-framework": {
|
|
181
181
|
"command": "npx",
|
|
182
|
-
"args": ["-y", "@ryodeushii/ai-product-team-agents
|
|
182
|
+
"args": ["-y", "-p", "@ryodeushii/ai-product-team-agents", "agents-mcp"]
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
**OpenCode** — add to `opencode.json` (project root or `~/.config/opencode/opencode.json`):
|
|
189
|
+
|
|
190
|
+
```json
|
|
191
|
+
{
|
|
192
|
+
"mcp": {
|
|
193
|
+
"agents-framework": {
|
|
194
|
+
"type": "local",
|
|
195
|
+
"command": ["npx", "-y", "-p", "@ryodeushii/ai-product-team-agents", "agents-mcp"]
|
|
183
196
|
}
|
|
184
197
|
}
|
|
185
198
|
}
|
package/package.json
CHANGED