squad-openclaw 2026.2.2208 → 2026.2.2702
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 -0
- package/dist/index.js +1400 -914
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -118,6 +118,21 @@ For agent editing UX, this plugin also exposes **whitelisted gateway RPC mutator
|
|
|
118
118
|
|
|
119
119
|
These methods do **not** permit arbitrary file writes and do not expose credentials. They are intentionally narrow so the UI can update agent metadata safely without direct `openclaw.json` filesystem writes.
|
|
120
120
|
|
|
121
|
+
### Startup Config Migration (one-time, localized)
|
|
122
|
+
|
|
123
|
+
On plugin startup, Squad runs an internal migration harness. Current migration behavior:
|
|
124
|
+
|
|
125
|
+
- Checks `~/.openclaw/squad-ceo-data/migrations.json` for completed migration IDs.
|
|
126
|
+
- If `001-enable-main-subagent-access` is not recorded, applies a **localized** `config.patch` that sets only:
|
|
127
|
+
- `agents.defaults.maxConcurrent = 4`
|
|
128
|
+
- `agents.defaults.subagents.maxConcurrent = 8`
|
|
129
|
+
- `agents.list[id=main].identity.name = "Pepper"`
|
|
130
|
+
- `agents.list[id=main].tools.allow = ["*"]`
|
|
131
|
+
- `agents.list[id=main].subagents.allowAgents = ["*"]`
|
|
132
|
+
- Records completion in `~/.openclaw/squad-ceo-data/migrations.json`.
|
|
133
|
+
|
|
134
|
+
This migration is designed to run once. If an operator later changes these values manually, the plugin does not overwrite them again because the migration is already marked complete.
|
|
135
|
+
|
|
121
136
|
## Relay Security
|
|
122
137
|
|
|
123
138
|
The cloud relay enables remote browser access to the gateway through `relay.squad.ceo`. This section explains the full architecture for security reviewers.
|