allagents 1.9.0-next.1 → 1.11.0-next.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 +4 -4
- package/dist/index.js +1293 -294
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ AllAgents keeps your AI tooling (skills, agents, hooks, MCP servers) in one work
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
# Create a workspace from a shared template
|
|
15
|
-
npx allagents
|
|
15
|
+
npx allagents init my-workspace --from myorg/templates/nodejs
|
|
16
16
|
cd my-workspace
|
|
17
17
|
|
|
18
18
|
# Install plugins
|
|
@@ -89,13 +89,13 @@ clients:
|
|
|
89
89
|
|
|
90
90
|
| Command | Description |
|
|
91
91
|
|---|---|
|
|
92
|
-
| `allagents
|
|
92
|
+
| `allagents init <path>` | Create a workspace (optionally `--from owner/repo`) |
|
|
93
93
|
| `allagents update` | Sync all plugins to workspace |
|
|
94
94
|
| `allagents plugin install <spec>` | Install a plugin |
|
|
95
95
|
| `allagents plugin uninstall <spec>` | Remove a plugin |
|
|
96
96
|
| `allagents plugin list` | List available plugins |
|
|
97
|
-
| `allagents
|
|
98
|
-
| `allagents
|
|
97
|
+
| `allagents skill add <name>` | Add a skill from a repo (plural `skills` alias supported) |
|
|
98
|
+
| `allagents skill list` | List skills and status |
|
|
99
99
|
| `allagents mcp add <name> <commandOrUrl>` | Add an MCP server and sync to clients |
|
|
100
100
|
| `allagents mcp list` | List workspace MCP servers |
|
|
101
101
|
| `allagents workspace status` | Show workspace state |
|