@integrity-labs/agt-cli 0.28.660 → 0.28.662

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/mcp/index.js CHANGED
@@ -37309,6 +37309,12 @@ function describeFeatureRequestResult(resp) {
37309
37309
  isError: false
37310
37310
  };
37311
37311
  }
37312
+ if (resp.status === "catalogue_match") {
37313
+ return {
37314
+ text: `Not filed \u2014 we already sell this. ${resp.message ?? ""}`.trim(),
37315
+ isError: false
37316
+ };
37317
+ }
37312
37318
  return {
37313
37319
  text: `Could not submit the feature request${resp.message ? `: ${resp.message}` : ""}. Tell your operator what you need and don't keep retrying.`,
37314
37320
  isError: true
@@ -44635,6 +44641,9 @@ server.tool(
44635
44641
  provider: external_exports.string().max(120).optional().describe(
44636
44642
  'For feature_type="integration": the name of the service/provider requested (e.g. "Notion", "QuickBooks"). Omit for other types.'
44637
44643
  ),
44644
+ acknowledged_catalogue_alternative: external_exports.boolean().optional().describe(
44645
+ "ENG-9246. Leave this unset on a first attempt. If your request is declined because Augmented already sells the capability, the reply names the integration and the request_integration_access call to make instead \u2014 do that. Only set this to true, and say why in the description, when the customer genuinely needs a DIFFERENT vendor rather than the capability itself. It does not make a stronger case; it just records that you checked."
44646
+ ),
44638
44647
  requester_email: external_exports.string().email().max(320).optional().describe(
44639
44648
  "The email address of the end user who asked for this, so Augmented Team can email them when it is resolved. Only include an email the user has given you and agreed to be contacted at - do NOT guess or invent one. Omit if you don't have their consent or an address."
44640
44649
  ),
@@ -44658,7 +44667,8 @@ server.tool(
44658
44667
  description: params.description,
44659
44668
  ...params.provider ? { provider: params.provider } : {},
44660
44669
  ...params.requester_email ? { requester_email: params.requester_email } : {},
44661
- ...params.requester_user_id ? { requester_user_id: params.requester_user_id } : {}
44670
+ ...params.requester_user_id ? { requester_user_id: params.requester_user_id } : {},
44671
+ ...params.acknowledged_catalogue_alternative ? { acknowledged_catalogue_alternative: true } : {}
44662
44672
  });
44663
44673
  } catch (err) {
44664
44674
  return {
@@ -43,8 +43,8 @@ import {
43
43
  writeDirectChatSessionState,
44
44
  writeEgressAllowlist,
45
45
  writePersistentClaudeWrapper
46
- } from "./chunk-Y63W2XP5.js";
47
- import "./chunk-VR3VB3FR.js";
46
+ } from "./chunk-5JAUM7J2.js";
47
+ import "./chunk-SU2J2QRH.js";
48
48
  import "./chunk-XWVM4KPK.js";
49
49
  export {
50
50
  EGRESS_BASELINE_DOMAINS,
@@ -92,4 +92,4 @@ export {
92
92
  writeEgressAllowlist,
93
93
  writePersistentClaudeWrapper
94
94
  };
95
- //# sourceMappingURL=persistent-session-ADS4LIGF.js.map
95
+ //# sourceMappingURL=persistent-session-WOZN2ORO.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-Y63W2XP5.js";
4
- import "./chunk-VR3VB3FR.js";
3
+ } from "./chunk-5JAUM7J2.js";
4
+ import "./chunk-SU2J2QRH.js";
5
5
  import "./chunk-XWVM4KPK.js";
6
6
 
7
7
  // src/lib/responsiveness-probe.ts
@@ -727,4 +727,4 @@ export {
727
727
  readAndResetSlackReplyBindingClassifications,
728
728
  readAndResetSlackReplyTargetClassifications
729
729
  };
730
- //# sourceMappingURL=responsiveness-probe-EII7QAGR.js.map
730
+ //# sourceMappingURL=responsiveness-probe-APGLAESO.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  sessionTranscriptDir
3
- } from "./chunk-VR3VB3FR.js";
3
+ } from "./chunk-SU2J2QRH.js";
4
4
 
5
5
  // src/lib/session-auth-dead.ts
6
6
  import { closeSync, openSync, readSync, readdirSync, statSync } from "fs";
@@ -203,4 +203,4 @@ export {
203
203
  decideSessionAuthState,
204
204
  probeSessionAuth
205
205
  };
206
- //# sourceMappingURL=session-auth-dead-TY2WU55Z.js.map
206
+ //# sourceMappingURL=session-auth-dead-SMMFC3UF.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.660",
3
+ "version": "0.28.662",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {