@vm0/cli 9.118.0 → 9.119.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/chunk-BMCQ2T6Q.js +1708 -0
- package/chunk-BMCQ2T6Q.js.map +1 -0
- package/chunk-MPKRH4AA.js +17 -0
- package/chunk-MPKRH4AA.js.map +1 -0
- package/{chunk-ITF6FVZ7.js → chunk-Y5MLJMUZ.js} +70927 -31865
- package/chunk-Y5MLJMUZ.js.map +1 -0
- package/getMachineId-bsd-PR7QRJD5.js +35 -0
- package/getMachineId-bsd-PR7QRJD5.js.map +1 -0
- package/getMachineId-darwin-UPRGUB4T.js +35 -0
- package/getMachineId-darwin-UPRGUB4T.js.map +1 -0
- package/getMachineId-linux-ATTLS4CQ.js +29 -0
- package/getMachineId-linux-ATTLS4CQ.js.map +1 -0
- package/getMachineId-unsupported-VCVC2PWL.js +20 -0
- package/getMachineId-unsupported-VCVC2PWL.js.map +1 -0
- package/getMachineId-win-OHEXEVPP.js +37 -0
- package/getMachineId-win-OHEXEVPP.js.map +1 -0
- package/index.js +43 -632
- package/index.js.map +1 -1
- package/package.json +2 -3
- package/zero.js +10 -6
- package/zero.js.map +1 -1
- package/chunk-ITF6FVZ7.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vm0/cli",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.119.1",
|
|
4
4
|
"description": "CLI application",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
"*.js.map"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@ngrok/ngrok": "^1.6.0"
|
|
21
|
-
"@sentry/node": "^10.38.0"
|
|
20
|
+
"@ngrok/ngrok": "^1.6.0"
|
|
22
21
|
}
|
|
23
22
|
}
|
package/zero.js
CHANGED
|
@@ -9,7 +9,6 @@ import {
|
|
|
9
9
|
EventRenderer,
|
|
10
10
|
MODEL_PROVIDER_TYPES,
|
|
11
11
|
Option,
|
|
12
|
-
__toESM,
|
|
13
12
|
allowsCustomModel,
|
|
14
13
|
appendVoiceChatContextEvent,
|
|
15
14
|
completeSlackFileUpload,
|
|
@@ -77,7 +76,6 @@ import {
|
|
|
77
76
|
hasModelSelection,
|
|
78
77
|
hasRequiredScopes,
|
|
79
78
|
initSlackFileUpload,
|
|
80
|
-
init_esm_shims,
|
|
81
79
|
inviteZeroOrgMember,
|
|
82
80
|
isFeatureEnabled,
|
|
83
81
|
isFirewallConnectorType,
|
|
@@ -133,7 +131,11 @@ import {
|
|
|
133
131
|
upsertZeroOrgModelProvider,
|
|
134
132
|
withErrorHandler,
|
|
135
133
|
zeroAgentCustomSkillNameSchema
|
|
136
|
-
} from "./chunk-
|
|
134
|
+
} from "./chunk-Y5MLJMUZ.js";
|
|
135
|
+
import {
|
|
136
|
+
__toESM,
|
|
137
|
+
init_esm_shims
|
|
138
|
+
} from "./chunk-BMCQ2T6Q.js";
|
|
137
139
|
|
|
138
140
|
// src/zero.ts
|
|
139
141
|
init_esm_shims();
|
|
@@ -3552,7 +3554,8 @@ Examples:
|
|
|
3552
3554
|
Notes:
|
|
3553
3555
|
- Re-running setup with the same agent updates the existing "default" schedule
|
|
3554
3556
|
- Use -n to manage multiple named schedules for the same agent
|
|
3555
|
-
- All flags are required in non-interactive mode; interactive mode prompts for missing values
|
|
3557
|
+
- All flags are required in non-interactive mode; interactive mode prompts for missing values
|
|
3558
|
+
- If the user wants to be notified when a schedule completes, ask them where they want to receive the notification: web chat or Slack, then include it in the prompt`
|
|
3556
3559
|
).action(
|
|
3557
3560
|
withErrorHandler(async (agentIdentifier, options) => {
|
|
3558
3561
|
const compose = await resolveCompose(agentIdentifier);
|
|
@@ -4086,12 +4089,13 @@ init_esm_shims();
|
|
|
4086
4089
|
// src/commands/zero/slack/message/send.ts
|
|
4087
4090
|
init_esm_shims();
|
|
4088
4091
|
import { readFileSync as readFileSync4 } from "fs";
|
|
4089
|
-
var sendCommand2 = new Command().name("send").description("Send a message to a Slack channel or DM a user").option("-c, --channel <id>", "Channel ID").option("-u, --user <id>",
|
|
4092
|
+
var sendCommand2 = new Command().name("send").description("Send a message to a Slack channel or DM a user").option("-c, --channel <id>", "Channel ID").option("-u, --user <id>", 'Slack user ID for DM (use "me" for yourself)').option("-t, --text <message>", "Message text").option("--thread <ts>", "Thread timestamp for replies").option("--blocks <json>", "Block Kit JSON string").addHelpText(
|
|
4090
4093
|
"after",
|
|
4091
4094
|
`
|
|
4092
4095
|
Examples:
|
|
4093
4096
|
Simple message: zero slack message send -c C01234 -t "Hello!"
|
|
4094
4097
|
DM a user: zero slack message send -u U0A8V9X98QJ -t "Hello!"
|
|
4098
|
+
DM yourself: zero slack message send -u me -t "Hello!"
|
|
4095
4099
|
Reply in thread: zero slack message send -c C01234 --thread 1234567890.123456 -t "reply"
|
|
4096
4100
|
Rich blocks: zero slack message send -c C01234 --blocks '[{"type":"section","text":{"type":"mrkdwn","text":"*Bold*"}}]'
|
|
4097
4101
|
|
|
@@ -6519,7 +6523,7 @@ function registerZeroCommands(prog, commands) {
|
|
|
6519
6523
|
var program = new Command();
|
|
6520
6524
|
program.name("zero").description(
|
|
6521
6525
|
"Zero CLI \u2014 interact with the zero platform from inside the sandbox"
|
|
6522
|
-
).version("9.
|
|
6526
|
+
).version("9.119.1").addHelpText(
|
|
6523
6527
|
"after",
|
|
6524
6528
|
`
|
|
6525
6529
|
Examples:
|