@integrity-labs/agt-cli 0.28.157 → 0.28.159

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 CHANGED
@@ -37,7 +37,7 @@ import {
37
37
  success,
38
38
  table,
39
39
  warn
40
- } from "../chunk-6VSS55A2.js";
40
+ } from "../chunk-PGW3CTYR.js";
41
41
  import {
42
42
  CHANNEL_REGISTRY,
43
43
  DEPLOYMENT_TEMPLATES,
@@ -64,7 +64,7 @@ import {
64
64
  renderTemplate,
65
65
  resolveChannels,
66
66
  serializeManifestForSlackCli
67
- } from "../chunk-TLX6ORJ5.js";
67
+ } from "../chunk-SAAK2IP4.js";
68
68
 
69
69
  // src/bin/agt.ts
70
70
  import { join as join22 } from "path";
@@ -4777,7 +4777,7 @@ import { execFileSync, execSync } from "child_process";
4777
4777
  import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
4778
4778
  import chalk18 from "chalk";
4779
4779
  import ora16 from "ora";
4780
- var cliVersion = true ? "0.28.157" : "dev";
4780
+ var cliVersion = true ? "0.28.159" : "dev";
4781
4781
  async function fetchLatestVersion() {
4782
4782
  const host2 = getHost();
4783
4783
  if (!host2) return null;
@@ -5791,7 +5791,7 @@ function handleError(err) {
5791
5791
  }
5792
5792
 
5793
5793
  // src/bin/agt.ts
5794
- var cliVersion2 = true ? "0.28.157" : "dev";
5794
+ var cliVersion2 = true ? "0.28.159" : "dev";
5795
5795
  var program = new Command();
5796
5796
  program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
5797
5797
  program.hook("preAction", async (thisCommand, actionCommand) => {
@@ -22,7 +22,7 @@ import {
22
22
  resolveConnectivityProbe,
23
23
  worseConnectivityOutcome,
24
24
  wrapScheduledTaskPrompt
25
- } from "./chunk-TLX6ORJ5.js";
25
+ } from "./chunk-SAAK2IP4.js";
26
26
 
27
27
  // ../../packages/core/dist/integrations/registry.js
28
28
  var INTEGRATION_REGISTRY = [
@@ -240,6 +240,32 @@ var INTEGRATION_REGISTRY = [
240
240
  envDefaults: { ANCHOR_BROWSER_SESSION_ID: "" }
241
241
  }
242
242
  },
243
+ {
244
+ id: "deck",
245
+ name: "Deck",
246
+ category: "workspace-productivity",
247
+ description: "Computer-use agents that operate any software through real interfaces (no API required) and return schema-validated results. Higher-level alternative to Anchor Browser: Deck owns the auth lifecycle (encrypted credential vault, login, MFA, CAPTCHA) and provisions isolated desktop sessions on demand.",
248
+ // Deck is REST-only (base https://api.deck.co/v2, Bearer `sk_live_` account
249
+ // key) — it ships NO MCP server, so unlike anchor-browser there is no
250
+ // `remoteMcp`/`nativeMcp` drop-in. Per-agent isolation is modelled on
251
+ // Deck's first-class resources: the control plane holds one account key
252
+ // (stored per-row as the `api_key` credential, same shape as anchor) and
253
+ // provisions one Deck agent (`agt_`) + vault credential (`cred_`) per
254
+ // Augmented agent via POST /:id/provision-deck. Those ids land in
255
+ // `agent_integrations.config` (deck_agent_id / deck_credential_id), so
256
+ // revocation + audit happen at the per-agent Deck-resource level without a
257
+ // distinct API key per agent (Deck exposes no key-minting admin API).
258
+ // The agent-facing tool surface is a follow-up (Deck has no MCP), so this
259
+ // entry is catalog + provisioning only for now.
260
+ supported_auth_types: ["api_key"],
261
+ capabilities: [
262
+ { 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" },
263
+ { 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" },
264
+ { id: "deck:observe", name: "Observe Sessions", description: "Read isolated session state, screenshots, and agent-reasoning artifacts (get_session)", access: "read" }
265
+ ],
266
+ docs_url: "https://docs.deck.co/",
267
+ beta: true
268
+ },
243
269
  {
244
270
  id: "postiz",
245
271
  name: "Postiz",
@@ -3646,14 +3672,18 @@ to add it yourself. After working, prefer a text reply via slack.reply over a re
3646
3672
 
3647
3673
  **When a thread message is not for you, do nothing.** If a message in a thread
3648
3674
  is addressed to a different user (different @-mention), is part of a conversation
3649
- between others, or arrives via auto-follow with no relevance to you \u2014 silently
3650
- skip it. No reaction. No reply. Adding \u274C in this case is wrong: it tells the
3651
- user "execution failed" when in fact you correctly identified the message wasn't
3652
- yours to handle. "Silently skip" means write nothing too: do not end your turn
3653
- with a line narrating that you're standing down or staying silent. Per the
3654
- delivery rule above, the reply-recovery net can post that trailing text to the
3655
- thread as if it were your reply, so a stand-down narration becomes the very noise
3656
- you were avoiding. Decide internally and leave no channel-facing text.
3675
+ between others, or arrives via auto-follow with no relevance to you \u2014 skip it
3676
+ and do not post a text reply. Whether you also mark it with a "seen, skipping"
3677
+ reaction is governed by your Slack MCP server's own instructions, which reflect
3678
+ the current channel policy: if it tells you to react when you skip, do that; if
3679
+ it doesn't, skip with no reaction at all. Follow that guidance rather than
3680
+ assuming either way here. The one reaction that is always wrong in this case is
3681
+ \u274C: it tells the user "execution failed" when in fact you correctly identified
3682
+ the message wasn't yours to handle. Skipping also means writing nothing: do not
3683
+ end your turn with a line narrating that you're standing down or staying silent.
3684
+ Per the delivery rule above, the reply-recovery net can post that trailing text
3685
+ to the thread as if it were your reply, so a stand-down narration becomes the
3686
+ very noise you were avoiding. Decide internally and leave no channel-facing text.
3657
3687
  ` : ""}
3658
3688
  ## Governance
3659
3689
 
@@ -7894,7 +7924,7 @@ function requireHost() {
7894
7924
  }
7895
7925
 
7896
7926
  // src/lib/api-client.ts
7897
- var agtCliVersion = true ? "0.28.157" : "dev";
7927
+ var agtCliVersion = true ? "0.28.159" : "dev";
7898
7928
  var lastConfigHash = null;
7899
7929
  function setConfigHash(hash) {
7900
7930
  lastConfigHash = hash && hash.length > 0 ? hash : null;
@@ -9199,4 +9229,4 @@ export {
9199
9229
  managerInstallSystemUnitCommand,
9200
9230
  managerUninstallSystemUnitCommand
9201
9231
  };
9202
- //# sourceMappingURL=chunk-6VSS55A2.js.map
9232
+ //# sourceMappingURL=chunk-PGW3CTYR.js.map