@autohq/cli 0.1.681 → 0.1.683
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/dist/agent-bridge.js +1 -1
- package/dist/index.js +26 -11
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -33218,7 +33218,7 @@ function bootstrapAdditionalData(input) {
|
|
|
33218
33218
|
// package.json
|
|
33219
33219
|
var package_default = {
|
|
33220
33220
|
name: "@autohq/cli",
|
|
33221
|
-
version: "0.1.
|
|
33221
|
+
version: "0.1.683",
|
|
33222
33222
|
license: "SEE LICENSE IN README.md",
|
|
33223
33223
|
publishConfig: {
|
|
33224
33224
|
access: "public"
|
package/dist/index.js
CHANGED
|
@@ -20358,7 +20358,7 @@ function normalizePersistedTaskEraLocalAutoTool(value) {
|
|
|
20358
20358
|
} = tool.capabilities;
|
|
20359
20359
|
return { ...tool, capabilities };
|
|
20360
20360
|
}
|
|
20361
|
-
var REMOTE_MCP_TRANSPORTS, LOCAL_TOOL_IMPLEMENTATIONS, BILLING_CAPABILITY_LEVELS, BillingCapabilityLevelSchema, PROJECT_MEMBER_CAPABILITY_LEVELS, ProjectMemberCapabilityLevelSchema, WAITLIST_REPORTING_CAPABILITY_LEVELS, WaitlistReportingCapabilityLevelSchema, RUNTIME_CAPABILITY_LEVELS, RuntimeCapabilityLevelSchema, CONNECTION_CAPABILITY_LEVELS, ConnectionCapabilityLevelSchema, SECRET_CAPABILITY_LEVELS, SecretCapabilityLevelSchema, WEBHOOK_CAPABILITY_LEVELS, WebhookCapabilityLevelSchema, BillingCapabilitySchema, ProjectMemberCapabilitySchema, WaitlistReportingCapabilitySchema, RuntimeCapabilitySchema, ConnectionCapabilitySchema, SecretCapabilitySchema, WebhookCapabilitySchema, LocalAutoToolCapabilitiesSchema, SecretReferenceSchema, NoToolAuthSchema, OptionalConnectionField, McpOAuthToolAuthSchema, ConnectionToolAuthSchema, ConnectionsToolAuthSchema, ConnectionBackedToolSchema, ToolAliasSchema, RemoteMcpToolSchema, LocalAutoToolSchema, LocalPingToolSchema, LocalChatToolSchema, LocalToolSchema, PersistedLocalToolSchema, GithubToolSchema, ToolSpecSchema, AgentToolConnectRequestSchema, AgentToolConnectResponseSchema, AgentToolConnectCompleteResponseSchema, InlineAgentToolSchema, AgentToolRefSchema, AgentToolsSchema;
|
|
20361
|
+
var REMOTE_MCP_TRANSPORTS, LOCAL_TOOL_IMPLEMENTATIONS, BILLING_CAPABILITY_LEVELS, BillingCapabilityLevelSchema, PROJECT_MEMBER_CAPABILITY_LEVELS, ProjectMemberCapabilityLevelSchema, WAITLIST_REPORTING_CAPABILITY_LEVELS, WaitlistReportingCapabilityLevelSchema, RUNTIME_CAPABILITY_LEVELS, RuntimeCapabilityLevelSchema, CONNECTION_CAPABILITY_LEVELS, ConnectionCapabilityLevelSchema, SECRET_CAPABILITY_LEVELS, SecretCapabilityLevelSchema, WEBHOOK_CAPABILITY_LEVELS, WebhookCapabilityLevelSchema, BillingCapabilitySchema, ProjectMemberCapabilitySchema, WaitlistReportingCapabilitySchema, RuntimeCapabilitySchema, ConnectionCapabilitySchema, SecretCapabilitySchema, WebhookCapabilitySchema, LocalAutoToolCapabilitiesSchema, SecretReferenceSchema, NoToolAuthSchema, OptionalConnectionField, McpOAuthToolAuthSchema, ConnectionToolAuthSchema, ConnectionsToolAuthSchema, ConnectionMcpToolNameSchema, ConnectionMcpToolAllowlistSchema, ConnectionBackedToolSchema, ToolAliasSchema, RemoteMcpToolSchema, LocalAutoToolSchema, LocalPingToolSchema, LocalChatToolSchema, LocalToolSchema, PersistedLocalToolSchema, GithubToolSchema, ToolSpecSchema, AgentToolConnectRequestSchema, AgentToolConnectResponseSchema, AgentToolConnectCompleteResponseSchema, InlineAgentToolSchema, AgentToolRefSchema, AgentToolsSchema;
|
|
20362
20362
|
var init_tools = __esm({
|
|
20363
20363
|
"../../packages/schemas/src/tools.ts"() {
|
|
20364
20364
|
"use strict";
|
|
@@ -20453,9 +20453,24 @@ var init_tools = __esm({
|
|
|
20453
20453
|
connections: external_exports.array(ProviderConnectionReferenceSchema).min(1),
|
|
20454
20454
|
...OptionalConnectionField
|
|
20455
20455
|
});
|
|
20456
|
+
ConnectionMcpToolNameSchema = external_exports.string().trim().min(1, "Connection-backed MCP tool names must not be empty");
|
|
20457
|
+
ConnectionMcpToolAllowlistSchema = external_exports.array(ConnectionMcpToolNameSchema).min(1, "Connection-backed MCP tool allowlists must name at least one tool").superRefine((tools, context) => {
|
|
20458
|
+
const seen = /* @__PURE__ */ new Set();
|
|
20459
|
+
for (const [index, tool] of tools.entries()) {
|
|
20460
|
+
if (seen.has(tool)) {
|
|
20461
|
+
context.addIssue({
|
|
20462
|
+
code: external_exports.ZodIssueCode.custom,
|
|
20463
|
+
message: "Connection-backed MCP tool names must be unique after trimming",
|
|
20464
|
+
path: [index]
|
|
20465
|
+
});
|
|
20466
|
+
}
|
|
20467
|
+
seen.add(tool);
|
|
20468
|
+
}
|
|
20469
|
+
});
|
|
20456
20470
|
ConnectionBackedToolSchema = ProviderConnectionReferenceSchema.extend({
|
|
20457
20471
|
kind: external_exports.literal("connection"),
|
|
20458
20472
|
description: external_exports.string().trim().min(1).optional(),
|
|
20473
|
+
tools: ConnectionMcpToolAllowlistSchema.optional(),
|
|
20459
20474
|
...OptionalConnectionField
|
|
20460
20475
|
});
|
|
20461
20476
|
ToolAliasSchema = ResourceNameSchema.refine(
|
|
@@ -101726,16 +101741,16 @@ var init_catalog = __esm({
|
|
|
101726
101741
|
username: "butcher",
|
|
101727
101742
|
avatarAsset: "butcher.png",
|
|
101728
101743
|
category: "quality",
|
|
101729
|
-
oneLiner: "
|
|
101730
|
-
description: "A
|
|
101744
|
+
oneLiner: "Retires stale feature-flag branches only when PostHog and code evidence agree.",
|
|
101745
|
+
description: "A weekly feature-flag cleanup automation that reads PostHog rollout and activity evidence, proves every repository reference, and opens one focused code-cleanup PR only when behavior can stay identical. Missing telemetry, partial provider reads, active flags, and ambiguous references produce a clean no-op; PostHog provider state is never changed.",
|
|
101731
101746
|
harness: "codex",
|
|
101732
|
-
model: "gpt-
|
|
101747
|
+
model: "gpt-6-astra",
|
|
101733
101748
|
reasoningEffort: "xhigh",
|
|
101734
101749
|
triggers: [
|
|
101735
101750
|
{
|
|
101736
101751
|
kind: "schedule",
|
|
101737
|
-
title: "Monday
|
|
101738
|
-
description: "Each Monday it
|
|
101752
|
+
title: "Monday feature-flag census",
|
|
101753
|
+
description: "Each Monday it compares PostHog rollout state with repository references and opens at most one safe cleanup PR.",
|
|
101739
101754
|
availability: "core"
|
|
101740
101755
|
},
|
|
101741
101756
|
{
|
|
@@ -101746,14 +101761,14 @@ var init_catalog = __esm({
|
|
|
101746
101761
|
},
|
|
101747
101762
|
{
|
|
101748
101763
|
kind: "slack",
|
|
101749
|
-
title: "
|
|
101750
|
-
description: "Auto can connect Slack so
|
|
101764
|
+
title: "Cleanup report",
|
|
101765
|
+
description: "Auto can connect Slack so scheduled cleanup and no-op results are reported to a configured channel.",
|
|
101751
101766
|
availability: "optional",
|
|
101752
101767
|
connection: "slack"
|
|
101753
101768
|
}
|
|
101754
101769
|
],
|
|
101755
101770
|
requires: ["github"],
|
|
101756
|
-
optionalConnections: ["slack"],
|
|
101771
|
+
optionalConnections: ["posthog", "slack"],
|
|
101757
101772
|
variables: ["repoFullName", "githubConnection"]
|
|
101758
101773
|
},
|
|
101759
101774
|
{
|
|
@@ -102147,7 +102162,7 @@ var init_catalog = __esm({
|
|
|
102147
102162
|
},
|
|
102148
102163
|
{
|
|
102149
102164
|
id: "butcher",
|
|
102150
|
-
roleLine: "
|
|
102165
|
+
roleLine: "Retires stale feature-flag branches after PostHog and code evidence agree."
|
|
102151
102166
|
},
|
|
102152
102167
|
{
|
|
102153
102168
|
id: "janitor",
|
|
@@ -105302,7 +105317,7 @@ var init_package = __esm({
|
|
|
105302
105317
|
"package.json"() {
|
|
105303
105318
|
package_default = {
|
|
105304
105319
|
name: "@autohq/cli",
|
|
105305
|
-
version: "0.1.
|
|
105320
|
+
version: "0.1.683",
|
|
105306
105321
|
license: "SEE LICENSE IN README.md",
|
|
105307
105322
|
publishConfig: {
|
|
105308
105323
|
access: "public"
|