@integrity-labs/agt-cli 0.28.171 → 0.28.172
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/bin/agt.js +4 -4
- package/dist/{chunk-XJIHUCCF.js → chunk-N25WAF7G.js} +2 -2
- package/dist/{chunk-76XB2I4P.js → chunk-OMC7BHRP.js} +9 -1
- package/dist/chunk-OMC7BHRP.js.map +1 -0
- package/dist/{chunk-CPB4L4TB.js → chunk-XGTHOGKA.js} +14 -12
- package/dist/chunk-XGTHOGKA.js.map +1 -0
- package/dist/{claude-pair-runtime-37H4BVQC.js → claude-pair-runtime-XIVBNVSR.js} +2 -2
- package/dist/lib/manager-worker.js +8 -8
- package/dist/mcp/direct-chat-channel.js +40 -1
- package/dist/mcp/slack-channel.js +43 -2
- package/dist/mcp/teams-channel.js +43 -2
- package/dist/mcp/telegram-channel.js +43 -2
- package/dist/{persistent-session-DUKYMEOQ.js → persistent-session-4HC7YFSU.js} +3 -3
- package/dist/{responsiveness-probe-G5VMYV73.js → responsiveness-probe-W4PCY6HC.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-76XB2I4P.js.map +0 -1
- package/dist/chunk-CPB4L4TB.js.map +0 -1
- /package/dist/{chunk-XJIHUCCF.js.map → chunk-N25WAF7G.js.map} +0 -0
- /package/dist/{claude-pair-runtime-37H4BVQC.js.map → claude-pair-runtime-XIVBNVSR.js.map} +0 -0
- /package/dist/{persistent-session-DUKYMEOQ.js.map → persistent-session-4HC7YFSU.js.map} +0 -0
- /package/dist/{responsiveness-probe-G5VMYV73.js.map → responsiveness-probe-W4PCY6HC.js.map} +0 -0
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
resolveConnectivityProbe,
|
|
17
17
|
worseConnectivityOutcome,
|
|
18
18
|
wrapScheduledTaskPrompt
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-OMC7BHRP.js";
|
|
20
20
|
|
|
21
21
|
// ../../packages/core/dist/provisioning/mcp-config-guards.js
|
|
22
22
|
import { chmodSync, existsSync, readFileSync, renameSync, writeFileSync, unlinkSync } from "fs";
|
|
@@ -1719,20 +1719,22 @@ var INTEGRATION_REGISTRY = [
|
|
|
1719
1719
|
id: "deck",
|
|
1720
1720
|
name: "Deck",
|
|
1721
1721
|
category: "workspace-productivity",
|
|
1722
|
-
description: "Computer-use agents that operate any software through real
|
|
1722
|
+
description: "Computer-use agents that operate any software through its real interface (no API required) and return schema-validated results. A higher-level alternative to Anchor Browser: Deck owns the auth lifecycle (encrypted credential vault, login, MFA, CAPTCHA) and provisions isolated desktop sessions on demand. Augmented Team manages Deck access for you and gives each agent its own isolated Deck workspace, so there is no credential to enter.",
|
|
1723
1723
|
// Deck is REST-only (base https://api.deck.co/v2, Bearer `sk_live_` account
|
|
1724
1724
|
// key) — it ships NO MCP server, so unlike anchor-browser there is no
|
|
1725
|
-
// `remoteMcp`/`nativeMcp` drop-in
|
|
1726
|
-
//
|
|
1727
|
-
//
|
|
1728
|
-
//
|
|
1729
|
-
//
|
|
1725
|
+
// `remoteMcp`/`nativeMcp` drop-in; the agent-facing tools are brokered
|
|
1726
|
+
// server-side (deck-broker.ts). Deck is the first PREMIUM integration:
|
|
1727
|
+
// Augmented owns ONE Deck account that every customer agent's runs bill back
|
|
1728
|
+
// to (per-org charging is tracked in ENG-6920, not yet live), so the account
|
|
1729
|
+
// key is a single platform-held secret (`DECK_ACCOUNT_KEY`), NOT a per-agent
|
|
1730
|
+
// credential. Auth type is therefore `none` — customers never enter a key.
|
|
1731
|
+
// Per-agent isolation is modelled on Deck's first-class resources: that one
|
|
1732
|
+
// key provisions one Deck agent (`agt_`) + vault credential (`cred_`) per
|
|
1733
|
+
// Augmented agent via POST /:id/provision-deck; the ids land in
|
|
1730
1734
|
// `agent_integrations.config` (deck_agent_id / deck_credential_id), so
|
|
1731
1735
|
// revocation + audit happen at the per-agent Deck-resource level without a
|
|
1732
1736
|
// distinct API key per agent (Deck exposes no key-minting admin API).
|
|
1733
|
-
|
|
1734
|
-
// entry is catalog + provisioning only for now.
|
|
1735
|
-
supported_auth_types: ["api_key"],
|
|
1737
|
+
supported_auth_types: ["none"],
|
|
1736
1738
|
capabilities: [
|
|
1737
1739
|
{ id: "deck:provision", name: "Provision Agent Access", description: "Provision a per-agent Deck agent and vault credential under the account key (create_agent, create_credential)", access: "admin" },
|
|
1738
1740
|
{ id: "deck:run", name: "Run Tasks", description: "Submit tasks to the agent and read schema-validated structured results (run_task, get_task_run)", access: "write" },
|
|
@@ -5956,7 +5958,7 @@ function requireHost() {
|
|
|
5956
5958
|
}
|
|
5957
5959
|
|
|
5958
5960
|
// src/lib/api-client.ts
|
|
5959
|
-
var agtCliVersion = true ? "0.28.
|
|
5961
|
+
var agtCliVersion = true ? "0.28.172" : "dev";
|
|
5960
5962
|
var lastConfigHash = null;
|
|
5961
5963
|
function setConfigHash(hash) {
|
|
5962
5964
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -7261,4 +7263,4 @@ export {
|
|
|
7261
7263
|
managerInstallSystemUnitCommand,
|
|
7262
7264
|
managerUninstallSystemUnitCommand
|
|
7263
7265
|
};
|
|
7264
|
-
//# sourceMappingURL=chunk-
|
|
7266
|
+
//# sourceMappingURL=chunk-XGTHOGKA.js.map
|