@webority/ensemble 0.5.51 → 0.5.53
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/bin/ensemble.js +1 -0
- package/lib/core.js +2 -1
- package/package.json +6 -6
package/bin/ensemble.js
CHANGED
|
@@ -230,6 +230,7 @@ Session bus — message other agent sessions (forwarded to the ensemble runtime)
|
|
|
230
230
|
ensemble reply "<msg>" --from <me> --thread <guid>
|
|
231
231
|
ensemble ask "<question>" --engine <e> ask the human (default: mobile)
|
|
232
232
|
ensemble rooms | room-create | room-add | room-remove | room-rename | room-send | room-messages
|
|
233
|
+
ensemble room-invite <roomId> --from <me> mint the code a peer joins that room with
|
|
233
234
|
ensemble register | detach | hook | mcp (used by lifecycle hooks + MCP wiring)
|
|
234
235
|
|
|
235
236
|
Run \`ensemble login\` and approve the machine in your browser.`);
|
package/lib/core.js
CHANGED
|
@@ -1077,7 +1077,8 @@ function writeAntigravityHooks(runtimeInvoke, file = path.join(HOME, '.gemini',
|
|
|
1077
1077
|
if (!existing || typeof existing !== 'object' || Array.isArray(existing)) existing = {};
|
|
1078
1078
|
|
|
1079
1079
|
const cmd = (ev) => `"${runtimeInvoke}" hook ${ev} --engine antigravity`;
|
|
1080
|
-
existing['ensemble-bus']
|
|
1080
|
+
delete existing['ensemble-bus'];
|
|
1081
|
+
existing['ensemble'] = {
|
|
1081
1082
|
enabled: true,
|
|
1082
1083
|
PreInvocation: [{ type: 'command', command: cmd('user-prompt') }],
|
|
1083
1084
|
Stop: [{ type: 'command', command: cmd('stop') }],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webority/ensemble",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.53",
|
|
4
4
|
"description": "Connect this machine to Ensemble — runs the local agent runner and wires the ensemble session bus so your coding sessions talk (per-org, isolated).",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ensemble": "bin/ensemble.js"
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"node": ">=18"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@webority/ensemble-darwin-arm64": "0.5.
|
|
17
|
-
"@webority/ensemble-darwin-x64": "0.5.
|
|
18
|
-
"@webority/ensemble-linux-arm64": "0.5.
|
|
19
|
-
"@webority/ensemble-linux-x64": "0.5.
|
|
20
|
-
"@webority/ensemble-win-x64": "0.5.
|
|
16
|
+
"@webority/ensemble-darwin-arm64": "0.5.53",
|
|
17
|
+
"@webority/ensemble-darwin-x64": "0.5.53",
|
|
18
|
+
"@webority/ensemble-linux-arm64": "0.5.53",
|
|
19
|
+
"@webority/ensemble-linux-x64": "0.5.53",
|
|
20
|
+
"@webority/ensemble-win-x64": "0.5.53"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"bin",
|