@autohq/cli 0.1.491 → 0.1.492

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.
@@ -30866,7 +30866,7 @@ Object.assign(lookup, {
30866
30866
  // package.json
30867
30867
  var package_default = {
30868
30868
  name: "@autohq/cli",
30869
- version: "0.1.491",
30869
+ version: "0.1.492",
30870
30870
  license: "SEE LICENSE IN README.md",
30871
30871
  publishConfig: {
30872
30872
  access: "public"
@@ -34179,6 +34179,7 @@ var GITHUB_MCP_PROXY_TOOL_NAMES = [
34179
34179
  "delete_issue_comment",
34180
34180
  "download_comment_attachment",
34181
34181
  "enable_pull_request_auto_merge",
34182
+ "rerun_failed_jobs",
34182
34183
  "upsert_issue_comment"
34183
34184
  ];
34184
34185
  var GITHUB_MCP_SELECTABLE_TOOL_NAMES = [
@@ -34196,6 +34197,9 @@ var GITHUB_MCP_SECRETS_TOOLS = [
34196
34197
  var GITHUB_MCP_SECRETS_WRITE_TOOLS = [
34197
34198
  "actions_secret_write"
34198
34199
  ];
34200
+ var GITHUB_MCP_ACTIONS_WRITE_TOOLS = [
34201
+ "rerun_failed_jobs"
34202
+ ];
34199
34203
  var GITHUB_MCP_WRITE_TOOLS = [
34200
34204
  "actions_run_trigger",
34201
34205
  "add_comment_to_pending_review",
@@ -34241,6 +34245,9 @@ var githubMcpSecretsToolSet = new Set(
34241
34245
  var githubMcpSecretsWriteToolSet = new Set(
34242
34246
  GITHUB_MCP_SECRETS_WRITE_TOOLS
34243
34247
  );
34248
+ var githubMcpActionsWriteToolSet = new Set(
34249
+ GITHUB_MCP_ACTIONS_WRITE_TOOLS
34250
+ );
34244
34251
 
34245
34252
  // ../../packages/schemas/src/mounts.ts
34246
34253
  var AbsoluteMountPathSchema = external_exports.string().trim().min(1).refine((value2) => value2.startsWith("/"), {
@@ -34438,6 +34445,7 @@ var BINDING_TARGET_TYPES = [
34438
34445
  "chat.message",
34439
34446
  "agent.singleton",
34440
34447
  "linear.issue",
34448
+ "webhook.key",
34441
34449
  "auto.connection.authorization_attempt",
34442
34450
  "auto.session"
34443
34451
  ];
@@ -34447,6 +34455,7 @@ var TRIGGER_BINDING_TARGET_TYPES = [
34447
34455
  "slack.thread",
34448
34456
  "agent.singleton",
34449
34457
  "linear.issue",
34458
+ "webhook.key",
34450
34459
  "auto.session"
34451
34460
  ];
34452
34461
  var OWNER_RELEASABLE_HELD_BINDING_TARGET_TYPES = [
@@ -75662,6 +75671,13 @@ var ProjectUsageResponseSchema = external_exports.object({
75662
75671
  daily: external_exports.array(ProjectUsageDayPointSchema)
75663
75672
  });
75664
75673
 
75674
+ // ../../packages/schemas/src/webhook-endpoints.ts
75675
+ var WEBHOOK_BIND_KEY_MAX_LENGTH = 200;
75676
+ var WebhookBindKeySchema = external_exports.string().trim().min(1).max(WEBHOOK_BIND_KEY_MAX_LENGTH).regex(
75677
+ /^[A-Za-z0-9._~:/+=,-]+$/,
75678
+ "bindKey may contain only letters, numbers, and . _ ~ : / + = , -"
75679
+ );
75680
+
75665
75681
  // src/commands/agent-bridge/harness/agent-facing-auto-mcp.ts
75666
75682
  import { lstatSync, readFileSync as readFileSync2, realpathSync, statSync } from "fs";
75667
75683
  import {
package/dist/index.js CHANGED
@@ -17995,7 +17995,7 @@ var init_github_credentials = __esm({
17995
17995
  });
17996
17996
 
17997
17997
  // ../../packages/schemas/src/github-mcp-catalog.ts
17998
- var GITHUB_MCP_TOOL_NAMES, GITHUB_MCP_PROXY_TOOL_NAMES, GITHUB_MCP_SELECTABLE_TOOL_NAMES, GITHUB_MCP_MERGE_TOOLS, GITHUB_MCP_SECRETS_TOOLS, GITHUB_MCP_SECRETS_WRITE_TOOLS, GITHUB_MCP_WRITE_TOOLS, githubMcpToolNameSet, GITHUB_MCP_ATTRIBUTION_EXEMPT_PROXY_TOOLS, githubMcpWriteToolSet, githubMcpProxyToolSet, githubMcpMergeToolSet, githubMcpSecretsToolSet, githubMcpSecretsWriteToolSet;
17998
+ var GITHUB_MCP_TOOL_NAMES, GITHUB_MCP_PROXY_TOOL_NAMES, GITHUB_MCP_SELECTABLE_TOOL_NAMES, GITHUB_MCP_MERGE_TOOLS, GITHUB_MCP_SECRETS_TOOLS, GITHUB_MCP_SECRETS_WRITE_TOOLS, GITHUB_MCP_ACTIONS_WRITE_TOOLS, GITHUB_MCP_WRITE_TOOLS, githubMcpToolNameSet, GITHUB_MCP_ATTRIBUTION_EXEMPT_PROXY_TOOLS, githubMcpWriteToolSet, githubMcpProxyToolSet, githubMcpMergeToolSet, githubMcpSecretsToolSet, githubMcpSecretsWriteToolSet, githubMcpActionsWriteToolSet;
17999
17999
  var init_github_mcp_catalog = __esm({
18000
18000
  "../../packages/schemas/src/github-mcp-catalog.ts"() {
18001
18001
  "use strict";
@@ -18048,6 +18048,7 @@ var init_github_mcp_catalog = __esm({
18048
18048
  "delete_issue_comment",
18049
18049
  "download_comment_attachment",
18050
18050
  "enable_pull_request_auto_merge",
18051
+ "rerun_failed_jobs",
18051
18052
  "upsert_issue_comment"
18052
18053
  ];
18053
18054
  GITHUB_MCP_SELECTABLE_TOOL_NAMES = [
@@ -18065,6 +18066,9 @@ var init_github_mcp_catalog = __esm({
18065
18066
  GITHUB_MCP_SECRETS_WRITE_TOOLS = [
18066
18067
  "actions_secret_write"
18067
18068
  ];
18069
+ GITHUB_MCP_ACTIONS_WRITE_TOOLS = [
18070
+ "rerun_failed_jobs"
18071
+ ];
18068
18072
  GITHUB_MCP_WRITE_TOOLS = [
18069
18073
  "actions_run_trigger",
18070
18074
  "add_comment_to_pending_review",
@@ -18110,6 +18114,9 @@ var init_github_mcp_catalog = __esm({
18110
18114
  githubMcpSecretsWriteToolSet = new Set(
18111
18115
  GITHUB_MCP_SECRETS_WRITE_TOOLS
18112
18116
  );
18117
+ githubMcpActionsWriteToolSet = new Set(
18118
+ GITHUB_MCP_ACTIONS_WRITE_TOOLS
18119
+ );
18113
18120
  }
18114
18121
  });
18115
18122
 
@@ -18329,6 +18336,7 @@ var init_session_bindings = __esm({
18329
18336
  "chat.message",
18330
18337
  "agent.singleton",
18331
18338
  "linear.issue",
18339
+ "webhook.key",
18332
18340
  "auto.connection.authorization_attempt",
18333
18341
  "auto.session"
18334
18342
  ];
@@ -18338,6 +18346,7 @@ var init_session_bindings = __esm({
18338
18346
  "slack.thread",
18339
18347
  "agent.singleton",
18340
18348
  "linear.issue",
18349
+ "webhook.key",
18341
18350
  "auto.session"
18342
18351
  ];
18343
18352
  OWNER_RELEASABLE_HELD_BINDING_TARGET_TYPES = [
@@ -60234,6 +60243,20 @@ var init_usage = __esm({
60234
60243
  }
60235
60244
  });
60236
60245
 
60246
+ // ../../packages/schemas/src/webhook-endpoints.ts
60247
+ var WEBHOOK_BIND_KEY_MAX_LENGTH, WebhookBindKeySchema;
60248
+ var init_webhook_endpoints = __esm({
60249
+ "../../packages/schemas/src/webhook-endpoints.ts"() {
60250
+ "use strict";
60251
+ init_zod();
60252
+ WEBHOOK_BIND_KEY_MAX_LENGTH = 200;
60253
+ WebhookBindKeySchema = external_exports.string().trim().min(1).max(WEBHOOK_BIND_KEY_MAX_LENGTH).regex(
60254
+ /^[A-Za-z0-9._~:/+=,-]+$/,
60255
+ "bindKey may contain only letters, numbers, and . _ ~ : / + = , -"
60256
+ );
60257
+ }
60258
+ });
60259
+
60237
60260
  // ../../packages/schemas/src/index.ts
60238
60261
  var init_src = __esm({
60239
60262
  "../../packages/schemas/src/index.ts"() {
@@ -60299,6 +60322,7 @@ var init_src = __esm({
60299
60322
  init_url_slugs();
60300
60323
  init_usage();
60301
60324
  init_validation_diagnostics();
60325
+ init_webhook_endpoints();
60302
60326
  init_work_provenance();
60303
60327
  }
60304
60328
  });
@@ -63057,7 +63081,7 @@ var init_package = __esm({
63057
63081
  "package.json"() {
63058
63082
  package_default = {
63059
63083
  name: "@autohq/cli",
63060
- version: "0.1.491",
63084
+ version: "0.1.492",
63061
63085
  license: "SEE LICENSE IN README.md",
63062
63086
  publishConfig: {
63063
63087
  access: "public"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autohq/cli",
3
- "version": "0.1.491",
3
+ "version": "0.1.492",
4
4
  "license": "SEE LICENSE IN README.md",
5
5
  "publishConfig": {
6
6
  "access": "public"