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.
Files changed (3) hide show
  1. package/README.md +4 -4
  2. package/dist/index.js +1293 -294
  3. 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 workspace init my-workspace --from myorg/templates/nodejs
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 workspace init <path>` | Create a workspace (optionally `--from owner/repo`) |
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 skills add <name>` | Add a skill from a repo |
98
- | `allagents skills list` | List skills and status |
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 |