@integrity-labs/agt-cli 0.28.525 → 0.28.526

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
@@ -40,7 +40,7 @@ import {
40
40
  success,
41
41
  table,
42
42
  warn
43
- } from "../chunk-NFBAZOKX.js";
43
+ } from "../chunk-ONTG4Z5K.js";
44
44
  import {
45
45
  AnchorSessionClient,
46
46
  CHANNEL_REGISTRY,
@@ -71,7 +71,7 @@ import {
71
71
  requiredMcpWildcard,
72
72
  resolveChannels,
73
73
  serializeManifestForSlackCli
74
- } from "../chunk-LBSV575W.js";
74
+ } from "../chunk-Z4P4VEDU.js";
75
75
  import "../chunk-XWVM4KPK.js";
76
76
 
77
77
  // src/bin/agt.ts
@@ -4834,7 +4834,7 @@ import { execFileSync, execSync } from "child_process";
4834
4834
  import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
4835
4835
  import chalk18 from "chalk";
4836
4836
  import ora16 from "ora";
4837
- var cliVersion = true ? "0.28.525" : "dev";
4837
+ var cliVersion = true ? "0.28.526" : "dev";
4838
4838
  async function fetchLatestVersion() {
4839
4839
  const host2 = getHost();
4840
4840
  if (!host2) return null;
@@ -6006,7 +6006,7 @@ function handleError(err) {
6006
6006
  }
6007
6007
 
6008
6008
  // src/bin/agt.ts
6009
- var cliVersion2 = true ? "0.28.525" : "dev";
6009
+ var cliVersion2 = true ? "0.28.526" : "dev";
6010
6010
  var program = new Command();
6011
6011
  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");
6012
6012
  program.hook("preAction", async (thisCommand, actionCommand) => {
@@ -42,7 +42,7 @@ import {
42
42
  resolveConnectivityProbe,
43
43
  worseConnectivityOutcome,
44
44
  wrapScheduledTaskPrompt
45
- } from "./chunk-LBSV575W.js";
45
+ } from "./chunk-Z4P4VEDU.js";
46
46
  import {
47
47
  parsePsRows
48
48
  } from "./chunk-XWVM4KPK.js";
@@ -5317,7 +5317,7 @@ function exchangeFailureKind(err) {
5317
5317
  }
5318
5318
 
5319
5319
  // src/lib/api-client.ts
5320
- var agtCliVersion = true ? "0.28.525" : "dev";
5320
+ var agtCliVersion = true ? "0.28.526" : "dev";
5321
5321
  var lastConfigHash = null;
5322
5322
  function setConfigHash(hash) {
5323
5323
  lastConfigHash = hash && hash.length > 0 ? hash : null;
@@ -8629,4 +8629,4 @@ export {
8629
8629
  managerInstallSystemUnitCommand,
8630
8630
  managerUninstallSystemUnitCommand
8631
8631
  };
8632
- //# sourceMappingURL=chunk-NFBAZOKX.js.map
8632
+ //# sourceMappingURL=chunk-ONTG4Z5K.js.map
@@ -5240,6 +5240,35 @@ var OAUTH_PROVIDERS = {
5240
5240
  field: "thumbnail",
5241
5241
  pattern: "^\\s*https?://",
5242
5242
  message: "thumbnail takes a relative path inside Kajabi storage, not an external URL. Kajabi accepts a URL here, returns 200 and never ingests it, so the image would silently stay broken. Upload the asset to Kajabi first and pass the storage path it returns."
5243
+ },
5244
+ // CS-1554: `search_contacts` accepts `tag_id`, does not apply it, and
5245
+ // returns the FULL unfiltered contact list with `filters_applied: null`.
5246
+ // Reported first-hand from a live client site (DTI) while auditing which
5247
+ // contacts carried an opt-in tag. Corroborating evidence: Kajabi's own
5248
+ // REST reference filters contacts with `filter[has_tag_id]`, not a bare
5249
+ // `tag_id` — so the argument is dropped as unrecognised and the response
5250
+ // says so, if you read `filters_applied`.
5251
+ //
5252
+ // Worse than the thumbnail case it sits next to. A broken image is
5253
+ // visible; an unfiltered list that reads as filtered produces a confident
5254
+ // wrong ANSWER, which a human then acts on. That is the same shape as the
5255
+ // incident in CS-1554 where the agent told the customer content did not
5256
+ // exist when it did.
5257
+ //
5258
+ // Any value at all is refused: the field is not partially supported, it
5259
+ // is inert. `[\s\S]` matches every stringified scalar including 0 and
5260
+ // false, which a `.`-style pattern anchored on truthiness would miss.
5261
+ //
5262
+ // NOT REPRODUCED BY ME — I have no Kajabi connection. This rests on the
5263
+ // CS-1554 first-hand report plus the REST reference. The file's own bar is
5264
+ // "provably wrong, never a guess", so a reviewer with a live Kajabi
5265
+ // connection should confirm before this merges. If `tag_id` DOES filter
5266
+ // for some tenant, drop this rule and keep the scalar fix.
5267
+ {
5268
+ tool: "search_contacts",
5269
+ field: "tag_id",
5270
+ pattern: "[\\s\\S]",
5271
+ message: "tag_id is accepted by Kajabi and never applied \u2014 the call returns the FULL contact list with filters_applied: null, which reads as a filtered result and is not one. There is no working tag filter on this tool today. Use list_tags plus the per-contact tag data to determine membership, and treat any tag audit built on search_contacts(tag_id) as unfiltered."
5243
5272
  }
5244
5273
  ]
5245
5274
  },
@@ -15364,4 +15393,4 @@ export {
15364
15393
  stopAllSessionsAndWait,
15365
15394
  getProjectDir
15366
15395
  };
15367
- //# sourceMappingURL=chunk-LBSV575W.js.map
15396
+ //# sourceMappingURL=chunk-Z4P4VEDU.js.map