@integrity-labs/agt-cli 0.28.277 → 0.28.279

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
@@ -22223,7 +22223,7 @@ server.tool(
22223
22223
  );
22224
22224
  server.tool(
22225
22225
  "request_feature",
22226
- 'Send a feature request to Augmented Team support \u2014 most often to ask for a NEW third-party integration that is not in your toolkit yet (set feature_type="integration" and put the service name in provider). Also accepts general product feedback (other feature_type values). Use this when a user needs a capability you do not have and that you cannot configure yourself. Do not use it for things you can already do or set up.',
22226
+ 'Send a feature request to Augmented Team support \u2014 most often to ask for a NEW third-party integration that is not in your toolkit yet (set feature_type="integration" and put the service name in provider). Also accepts general product feedback (other feature_type values). Use this when a user needs a capability you do not have and that you cannot configure yourself. Do not use it for things you can already do or set up. If the request came from a specific end user, you can pass their requester_email (only with their consent) so Augmented Team can email them directly when it is resolved.',
22227
22227
  {
22228
22228
  feature_type: external_exports.enum(FEATURE_REQUEST_TYPES).describe(
22229
22229
  'What kind of request this is. Use "integration" to ask for a new third-party integration/toolkit; otherwise: tool, channel, capability, bug, or other.'
@@ -22234,6 +22234,12 @@ server.tool(
22234
22234
  ),
22235
22235
  provider: external_exports.string().max(120).optional().describe(
22236
22236
  'For feature_type="integration": the name of the service/provider requested (e.g. "Notion", "QuickBooks"). Omit for other types.'
22237
+ ),
22238
+ requester_email: external_exports.string().email().max(320).optional().describe(
22239
+ "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."
22240
+ ),
22241
+ requester_user_id: external_exports.string().uuid().optional().describe(
22242
+ "Optional Augmented Team user id (UUID) of the requester, used to look up their email for the resolved-notification when you have an id but not an address. Omit unless you know the actual Augmented user id."
22237
22243
  )
22238
22244
  },
22239
22245
  async (params) => {
@@ -22250,7 +22256,9 @@ server.tool(
22250
22256
  feature_type: params.feature_type,
22251
22257
  title: params.title,
22252
22258
  description: params.description,
22253
- ...params.provider ? { provider: params.provider } : {}
22259
+ ...params.provider ? { provider: params.provider } : {},
22260
+ ...params.requester_email ? { requester_email: params.requester_email } : {},
22261
+ ...params.requester_user_id ? { requester_user_id: params.requester_user_id } : {}
22254
22262
  });
22255
22263
  } catch (err) {
22256
22264
  return {
@@ -39680,6 +39680,13 @@ var FLAG_REGISTRY = [
39680
39680
  defaultValue: false,
39681
39681
  envVar: "AGT_CONNECTIVITY_PROBE_ENABLED"
39682
39682
  },
39683
+ {
39684
+ key: "bind-remediation",
39685
+ description: "Host-side bind-remediation self-heal (ENG-6203): when ON, after a hot-reload MCP restart fails to bind its tools across the bounded verify attempts, the manager forces ONE more gated re-respawn (breaker-capped) so the ensure-pass re-reads .mcp.json and binds the tools, instead of leaving the live session on its pre-restart tool set. ENG-7575 layers a first-connect backoff on top (defer the re-respawn while a freshly-added integration is still transient_error). Migrated from the raw AGT_BIND_REMEDIATION_ENABLED env gate to this registry flag (ENG-7586, ADR-0022) so it can be flipped centrally/staged like connectivity-probe; the env var is retained as the highest-precedence operator override (env override > flag value > this default). Boolean gate; ships dark.",
39686
+ flagType: "boolean",
39687
+ defaultValue: false,
39688
+ envVar: "AGT_BIND_REMEDIATION_ENABLED"
39689
+ },
39683
39690
  {
39684
39691
  key: "session-tool-probe",
39685
39692
  description: `Host-side live-session tool-bind probe (ENG-7053 / ENG-7220): when ON, the manager periodically checks whether each integration's MCP tools are actually bound in the running agent session (stdio child alive / remote MCP answers tools/list) and reports a bound|missing|unreachable|unknown verdict to /host/session-tool-bind. This is the signal the Add Integration modal polls to confirm a newly-added integration came online after the agent's next restart, rather than resolving at "credentials verified". Observational only (no auto rebind). Boolean gate; ships dark. AGT_SESSION_TOOL_PROBE_ENABLED is the highest-precedence operator override; precedence is env override > flag value > this default.`,
@@ -36,7 +36,7 @@ import {
36
36
  writeDirectChatSessionState,
37
37
  writeEgressAllowlist,
38
38
  writePersistentClaudeWrapper
39
- } from "./chunk-THMHJITM.js";
39
+ } from "./chunk-7USLYY43.js";
40
40
  import "./chunk-XWVM4KPK.js";
41
41
  export {
42
42
  EGRESS_BASELINE_DOMAINS,
@@ -77,4 +77,4 @@ export {
77
77
  writeEgressAllowlist,
78
78
  writePersistentClaudeWrapper
79
79
  };
80
- //# sourceMappingURL=persistent-session-SDDSZN5E.js.map
80
+ //# sourceMappingURL=persistent-session-SZ4TUGED.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  paneLogPath
3
- } from "./chunk-THMHJITM.js";
3
+ } from "./chunk-7USLYY43.js";
4
4
  import "./chunk-XWVM4KPK.js";
5
5
 
6
6
  // src/lib/responsiveness-probe.ts
@@ -418,4 +418,4 @@ export {
418
418
  readAndResetSlackReplyBindingClassifications,
419
419
  readAndResetSlackReplyTargetClassifications
420
420
  };
421
- //# sourceMappingURL=responsiveness-probe-ODKT4WUR.js.map
421
+ //# sourceMappingURL=responsiveness-probe-MKFZAUV5.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integrity-labs/agt-cli",
3
- "version": "0.28.277",
3
+ "version": "0.28.279",
4
4
  "description": "Augmented Team CLI — agent provisioning and management",
5
5
  "type": "module",
6
6
  "engines": {