@autohq/cli 0.1.684 → 0.1.686
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 +32 -3
- package/dist/index.js +1040 -314
- 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.686",
|
|
33222
33222
|
license: "SEE LICENSE IN README.md",
|
|
33223
33223
|
publishConfig: {
|
|
33224
33224
|
access: "public"
|
|
@@ -37857,7 +37857,12 @@ var SessionSpendCapStatusSchema = external_exports.object({
|
|
|
37857
37857
|
|
|
37858
37858
|
// ../../packages/schemas/src/tools.ts
|
|
37859
37859
|
var REMOTE_MCP_TRANSPORTS = ["streamable_http"];
|
|
37860
|
-
var LOCAL_TOOL_IMPLEMENTATIONS = [
|
|
37860
|
+
var LOCAL_TOOL_IMPLEMENTATIONS = [
|
|
37861
|
+
"auto",
|
|
37862
|
+
"chat",
|
|
37863
|
+
"pagerduty",
|
|
37864
|
+
"ping"
|
|
37865
|
+
];
|
|
37861
37866
|
var BILLING_CAPABILITY_LEVELS = ["none", "read", "write"];
|
|
37862
37867
|
var BillingCapabilityLevelSchema = external_exports.enum(BILLING_CAPABILITY_LEVELS);
|
|
37863
37868
|
var PROJECT_MEMBER_CAPABILITY_LEVELS = ["none", "read"];
|
|
@@ -38048,9 +38053,33 @@ var LocalChatToolSchema = external_exports.object({
|
|
|
38048
38053
|
ConnectionsToolAuthSchema
|
|
38049
38054
|
])
|
|
38050
38055
|
});
|
|
38056
|
+
var LocalPagerDutyToolSchema = external_exports.object({
|
|
38057
|
+
kind: external_exports.literal("local"),
|
|
38058
|
+
implementation: external_exports.literal("pagerduty"),
|
|
38059
|
+
description: external_exports.string().trim().min(1).optional(),
|
|
38060
|
+
capabilities: external_exports.object({
|
|
38061
|
+
addNote: external_exports.literal("supported").default("supported"),
|
|
38062
|
+
acknowledge: external_exports.literal("supported").default("supported"),
|
|
38063
|
+
pageOrEscalate: external_exports.literal("unsupported").default("unsupported")
|
|
38064
|
+
}).strict().default({
|
|
38065
|
+
addNote: "supported",
|
|
38066
|
+
acknowledge: "supported",
|
|
38067
|
+
pageOrEscalate: "unsupported"
|
|
38068
|
+
}),
|
|
38069
|
+
auth: ProviderConnectionReferenceSchema.extend({
|
|
38070
|
+
kind: external_exports.literal("connection"),
|
|
38071
|
+
provider: external_exports.literal("pagerduty"),
|
|
38072
|
+
...OptionalConnectionField
|
|
38073
|
+
})
|
|
38074
|
+
});
|
|
38051
38075
|
var LocalToolSchema = external_exports.discriminatedUnion(
|
|
38052
38076
|
"implementation",
|
|
38053
|
-
[
|
|
38077
|
+
[
|
|
38078
|
+
LocalAutoToolSchema,
|
|
38079
|
+
LocalChatToolSchema,
|
|
38080
|
+
LocalPagerDutyToolSchema,
|
|
38081
|
+
LocalPingToolSchema
|
|
38082
|
+
],
|
|
38054
38083
|
{
|
|
38055
38084
|
error: `Unsupported local tool implementation. Supported implementations: ${LOCAL_TOOL_IMPLEMENTATIONS.join(", ")}`
|
|
38056
38085
|
}
|