@integrity-labs/agt-cli 0.28.860 → 0.28.861

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.
Files changed (25) hide show
  1. package/dist/bin/agt.js +5 -5
  2. package/dist/{chunk-MRDINJFN.js → chunk-G23CONQJ.js} +2 -2
  3. package/dist/{chunk-HKJLINLX.js → chunk-IQROQ3XJ.js} +382 -130
  4. package/dist/chunk-IQROQ3XJ.js.map +1 -0
  5. package/dist/{chunk-7F7DI322.js → chunk-USHD2L3F.js} +47 -10
  6. package/dist/chunk-USHD2L3F.js.map +1 -0
  7. package/dist/{claude-pair-runtime-YU6U3NCG.js → claude-pair-runtime-6FJOWTEX.js} +2 -2
  8. package/dist/lib/manager-worker.js +35 -16
  9. package/dist/lib/manager-worker.js.map +1 -1
  10. package/dist/mcp/direct-chat-channel.js +46 -9
  11. package/dist/mcp/index.js +46 -9
  12. package/dist/mcp/origami.js +46 -9
  13. package/dist/mcp/slack-channel.js +46 -9
  14. package/dist/mcp/telegram-channel.js +46 -9
  15. package/dist/{persistent-session-2HFQVRWH.js → persistent-session-6DET4JLF.js} +3 -3
  16. package/dist/{responsiveness-probe-2RCDUK7B.js → responsiveness-probe-ZNKOWUIE.js} +3 -3
  17. package/dist/{session-auth-dead-UNB2JGAH.js → session-auth-dead-XU7VC6HM.js} +2 -2
  18. package/package.json +1 -1
  19. package/dist/chunk-7F7DI322.js.map +0 -1
  20. package/dist/chunk-HKJLINLX.js.map +0 -1
  21. /package/dist/{chunk-MRDINJFN.js.map → chunk-G23CONQJ.js.map} +0 -0
  22. /package/dist/{claude-pair-runtime-YU6U3NCG.js.map → claude-pair-runtime-6FJOWTEX.js.map} +0 -0
  23. /package/dist/{persistent-session-2HFQVRWH.js.map → persistent-session-6DET4JLF.js.map} +0 -0
  24. /package/dist/{responsiveness-probe-2RCDUK7B.js.map → responsiveness-probe-ZNKOWUIE.js.map} +0 -0
  25. /package/dist/{session-auth-dead-UNB2JGAH.js.map → session-auth-dead-XU7VC6HM.js.map} +0 -0
@@ -6111,15 +6111,16 @@ var FLAG_REGISTRY = [
6111
6111
  // pre-flags env gate to migrate (ADR-0022).
6112
6112
  defaultValue: false
6113
6113
  },
6114
- {
6115
- key: "skill-draft-review-notify",
6116
- description: "Pending skill-draft review nudge (ENG-6505): when a skill lands as a status=draft awaiting operator review, send a low-severity informational notification to the right reviewer(s) by scope \u2014 agent-scoped \u2192 the agent's manager (reports_to_person), falling back to team owners/admins; team-scoped \u2192 team owners/admins; org-scoped \u2192 org owners/admins \u2014 with a deep link to the Pending Skills card. Distinct from (and never doubles up on) the HIGH+ SkillSpector security alert. Covers both the agent-authored (ENG-4589) and skill-dreaming (ENG-6500) draft paths. Boolean gate; ships dark \u2014 when off no nudge is sent, so the steady state until an org is armed is silence.",
6117
- flagType: "boolean",
6118
- // Declared safe value is `false` (no nudge). Fail-safe direction: a flag-DB
6119
- // read error must never start DMing humans on its own. No envVar — net-new
6120
- // control with no pre-flags env gate to migrate (ADR-0022).
6121
- defaultValue: false
6122
- },
6114
+ // ENG-9849 (ADR-0081 decision 5): `skill-draft-review-notify` was archived
6115
+ // here. Its rail — a plain-text Slack DM nudge with no channel concept, no
6116
+ // platform discriminator and no approval lifecycle is replaced by the
6117
+ // `skill.publish` approval verb, so skill review now has one rail rather than
6118
+ // two. Archived rather than deleted: migration 20260908000001 sets
6119
+ // `archived_at` on the prod row, which was globally `true` from 2026-06-21, so
6120
+ // the row stops resolving instead of silently continuing to evaluate against a
6121
+ // key no code reads. The reviewer resolution it owned survives in
6122
+ // `skill-review-recipients.ts` and is what the new rail falls back to when an
6123
+ // org has no `approval_routes` row.
6123
6124
  {
6124
6125
  key: "skill-fragments",
6125
6126
  description: "Agent-contributed additive skill fragments (ENG-6811, epic ENG-6805 P2a): when on, an agent can propose an additive fragment for a shared (team/org) skill via the skill_contribute_fragment MCP tool; accepted fragments compose into the parent skill's delivered body in one delimited region at /host/refresh. This is the per-org activation gate for the whole additive path - it gates BOTH the contribute tool (off = soft-refuse, no fragment is created) AND compose-at-refresh (off = agents receive the core body only), so flipping it off is a clean kill switch that reverts shared skills to operator-owned content. Boolean gate; ships dark.",
@@ -12098,6 +12099,42 @@ var SECRET_PATTERNS = [
12098
12099
  var DAILY_MEMORY_TTL_HOURS = 48;
12099
12100
  var DAILY_MEMORY_TTL_MS = DAILY_MEMORY_TTL_HOURS * 60 * 60 * 1e3;
12100
12101
 
12102
+ // ../../packages/core/dist/voice/grok-voices.js
12103
+ var GROK_VOICE_ORIGINAL = [
12104
+ { id: "eve", label: "Eve (Female)" },
12105
+ { id: "ara", label: "Ara (Female)" },
12106
+ { id: "rex", label: "Rex (Male)" },
12107
+ { id: "sal", label: "Sal (Neutral)" },
12108
+ { id: "leo", label: "Leo (Male)" }
12109
+ ];
12110
+ var GROK_VOICE_ADDED_2026_07 = [
12111
+ { id: "carina", label: "Carina" },
12112
+ { id: "zagan", label: "Zagan" },
12113
+ { id: "helix", label: "Helix" },
12114
+ { id: "orion", label: "Orion" },
12115
+ { id: "luna", label: "Luna" },
12116
+ { id: "iris", label: "Iris" },
12117
+ { id: "altair", label: "Altair" },
12118
+ { id: "zenith", label: "Zenith" },
12119
+ { id: "perseus", label: "Perseus" },
12120
+ { id: "helios", label: "Helios" },
12121
+ { id: "lux", label: "Lux" },
12122
+ { id: "kepler", label: "Kepler" },
12123
+ { id: "rigel", label: "Rigel" },
12124
+ { id: "cosmo", label: "Cosmo" },
12125
+ { id: "celeste", label: "Celeste" },
12126
+ { id: "ursa", label: "Ursa" },
12127
+ { id: "sirius", label: "Sirius" },
12128
+ { id: "lumen", label: "Lumen" },
12129
+ { id: "castor", label: "Castor" },
12130
+ { id: "naksh", label: "Naksh" },
12131
+ { id: "atlas", label: "Atlas" }
12132
+ ];
12133
+ var GROK_VOICE_OPTIONS = [
12134
+ ...GROK_VOICE_ORIGINAL,
12135
+ ...GROK_VOICE_ADDED_2026_07
12136
+ ];
12137
+
12101
12138
  // ../../packages/core/dist/drift/comparators.js
12102
12139
  function compareToolPolicy(expected, actual) {
12103
12140
  const findings = [];
@@ -14226,4 +14263,4 @@ export {
14226
14263
  peekCurrentSession,
14227
14264
  readDailySessionPin
14228
14265
  };
14229
- //# sourceMappingURL=chunk-7F7DI322.js.map
14266
+ //# sourceMappingURL=chunk-USHD2L3F.js.map