@vm0/cli 9.94.3 → 9.95.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.
@@ -49,7 +49,7 @@ if (DSN) {
49
49
  Sentry.init({
50
50
  dsn: DSN,
51
51
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
52
- release: "9.94.3",
52
+ release: "9.95.0",
53
53
  sendDefaultPii: false,
54
54
  tracesSampleRate: 0,
55
55
  shutdownTimeout: 500,
@@ -68,7 +68,7 @@ if (DSN) {
68
68
  }
69
69
  });
70
70
  Sentry.setContext("cli", {
71
- version: "9.94.3",
71
+ version: "9.95.0",
72
72
  command: process.argv.slice(2).join(" ")
73
73
  });
74
74
  Sentry.setContext("runtime", {
@@ -1050,8 +1050,6 @@ var unifiedRunRequestSchema = z8.object({
1050
1050
  memoryName: z8.string().optional(),
1051
1051
  // Debug flag to force real Claude in mock environments (internal use only)
1052
1052
  debugNoMockClaude: z8.boolean().optional(),
1053
- // Model provider for automatic secret injection
1054
- modelProvider: z8.string().optional(),
1055
1053
  // Required
1056
1054
  prompt: z8.string().min(1, "Missing prompt"),
1057
1055
  // Optional system prompt to append to the agent's system prompt
@@ -23962,7 +23960,87 @@ var stravaFirewall = {
23962
23960
  Authorization: "Bearer ${{ secrets.STRAVA_TOKEN }}"
23963
23961
  }
23964
23962
  },
23965
- permissions: []
23963
+ permissions: [
23964
+ {
23965
+ name: "activity:read",
23966
+ rules: [
23967
+ "GET /api/v3/activities/{id}",
23968
+ "GET /api/v3/activities/{id}/comments",
23969
+ "GET /api/v3/activities/{id}/kudos",
23970
+ "GET /api/v3/activities/{id}/laps",
23971
+ "GET /api/v3/activities/{id}/streams",
23972
+ "GET /api/v3/activities/{id}/zones",
23973
+ "GET /api/v3/athlete/activities"
23974
+ ]
23975
+ },
23976
+ {
23977
+ name: "activity:read_all",
23978
+ rules: [
23979
+ "GET /api/v3/activities/{id}",
23980
+ "GET /api/v3/activities/{id}/comments",
23981
+ "GET /api/v3/activities/{id}/kudos",
23982
+ "GET /api/v3/activities/{id}/laps",
23983
+ "GET /api/v3/activities/{id}/streams",
23984
+ "GET /api/v3/activities/{id}/zones",
23985
+ "GET /api/v3/athlete/activities"
23986
+ ]
23987
+ },
23988
+ {
23989
+ name: "activity:write",
23990
+ rules: [
23991
+ "POST /api/v3/activities",
23992
+ "PUT /api/v3/activities/{id}",
23993
+ "POST /api/v3/uploads",
23994
+ "GET /api/v3/uploads/{uploadId}"
23995
+ ]
23996
+ },
23997
+ {
23998
+ name: "profile:read_all",
23999
+ rules: ["GET /api/v3/athlete", "GET /api/v3/athlete/zones"]
24000
+ },
24001
+ {
24002
+ name: "profile:write",
24003
+ rules: ["PUT /api/v3/athlete", "PUT /api/v3/segments/{id}/starred"]
24004
+ },
24005
+ {
24006
+ name: "read",
24007
+ rules: [
24008
+ "GET /api/v3/athlete",
24009
+ "GET /api/v3/athlete/clubs",
24010
+ "GET /api/v3/athletes/{id}/routes",
24011
+ "GET /api/v3/athletes/{id}/stats",
24012
+ "GET /api/v3/clubs/{id}",
24013
+ "GET /api/v3/clubs/{id}/activities",
24014
+ "GET /api/v3/clubs/{id}/admins",
24015
+ "GET /api/v3/clubs/{id}/members",
24016
+ "GET /api/v3/gear/{id}",
24017
+ "GET /api/v3/routes/{id}",
24018
+ "GET /api/v3/routes/{id}/export_gpx",
24019
+ "GET /api/v3/routes/{id}/export_tcx",
24020
+ "GET /api/v3/routes/{id}/streams",
24021
+ "GET /api/v3/segment_efforts",
24022
+ "GET /api/v3/segment_efforts/{id}",
24023
+ "GET /api/v3/segments/explore",
24024
+ "GET /api/v3/segments/starred",
24025
+ "GET /api/v3/segments/{id}",
24026
+ "GET /api/v3/segments/{id}/streams"
24027
+ ]
24028
+ },
24029
+ {
24030
+ name: "read_all",
24031
+ rules: [
24032
+ "GET /api/v3/athletes/{id}/routes",
24033
+ "GET /api/v3/routes/{id}",
24034
+ "GET /api/v3/routes/{id}/export_gpx",
24035
+ "GET /api/v3/routes/{id}/export_tcx",
24036
+ "GET /api/v3/routes/{id}/streams",
24037
+ "GET /api/v3/segment_efforts/{id}/streams",
24038
+ "GET /api/v3/segments/starred",
24039
+ "GET /api/v3/segments/{id}",
24040
+ "GET /api/v3/segments/{id}/streams"
24041
+ ]
24042
+ }
24043
+ ]
23966
24044
  }
23967
24045
  ]
23968
24046
  };
@@ -27956,7 +28034,8 @@ var zeroRunRequestSchema = unifiedRunRequestSchema.omit({
27956
28034
  agentComposeId: true,
27957
28035
  appendSystemPrompt: true
27958
28036
  }).extend({
27959
- agentId: z31.string().optional()
28037
+ agentId: z31.string().optional(),
28038
+ modelProvider: z31.string().optional()
27960
28039
  });
27961
28040
  var c25 = initContract();
27962
28041
  var zeroRunsMainContract = c25.router({
@@ -31321,6 +31400,7 @@ function showNextSteps(result) {
31321
31400
 
31322
31401
  export {
31323
31402
  configureGlobalProxyFromEnv,
31403
+ decodeCliTokenPayload,
31324
31404
  decodeZeroTokenPayload,
31325
31405
  loadConfig,
31326
31406
  saveConfig,
@@ -31466,4 +31546,4 @@ export {
31466
31546
  pollEvents,
31467
31547
  showNextSteps
31468
31548
  };
31469
- //# sourceMappingURL=chunk-WBYVVABR.js.map
31549
+ //# sourceMappingURL=chunk-RLI2BL4P.js.map