@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "9.118.0",
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-ITF6FVZ7.js";
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>", "Slack user ID for DM").option("-t, --text <message>", "Message text").option("--thread <ts>", "Thread timestamp for replies").option("--blocks <json>", "Block Kit JSON string").addHelpText(
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.118.0").addHelpText(
6526
+ ).version("9.119.1").addHelpText(
6523
6527
  "after",
6524
6528
  `
6525
6529
  Examples: