allagents 1.4.11 → 1.6.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 +4 -4
- package/dist/index.js +415 -277
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ CLI tool for managing multi-repo AI agent workspaces with plugin synchronization
|
|
|
33
33
|
▼
|
|
34
34
|
┌─────────────────┐
|
|
35
35
|
│ AllAgents │ (sync & transform)
|
|
36
|
-
│
|
|
36
|
+
│ sync │
|
|
37
37
|
└────────┬────────┘
|
|
38
38
|
│
|
|
39
39
|
┌────┴────┬────────┬─────────┐
|
|
@@ -69,7 +69,7 @@ allagents plugin install code-review@claude-plugins-official
|
|
|
69
69
|
allagents plugin install my-plugin@someuser/their-repo
|
|
70
70
|
|
|
71
71
|
# Sync plugins to workspace
|
|
72
|
-
allagents
|
|
72
|
+
allagents update
|
|
73
73
|
```
|
|
74
74
|
|
|
75
75
|
### Initialize from Remote Template
|
|
@@ -99,7 +99,7 @@ allagents workspace init <path>
|
|
|
99
99
|
allagents workspace init <path> --from <source> # From local path or GitHub URL
|
|
100
100
|
|
|
101
101
|
# Sync all plugins to workspace (non-destructive)
|
|
102
|
-
allagents
|
|
102
|
+
allagents update [options]
|
|
103
103
|
--force Force re-fetch of remote plugins even if cached
|
|
104
104
|
--dry-run Preview changes without applying
|
|
105
105
|
|
|
@@ -124,7 +124,7 @@ allagents workspace repo list
|
|
|
124
124
|
|
|
125
125
|
### VSCode Workspace Generation
|
|
126
126
|
|
|
127
|
-
When `vscode` is included in the `clients` list, `
|
|
127
|
+
When `vscode` is included in the `clients` list, `allagents update` automatically generates a `.code-workspace` file. Repository paths are resolved to absolute paths. Plugin folders are included with prompt/instruction file location settings for Copilot.
|
|
128
128
|
|
|
129
129
|
```yaml
|
|
130
130
|
# workspace.yaml
|