@integrity-labs/agt-cli 0.28.59 → 0.28.61

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-ZNOAT5RQ.js";
40
+ } from "../chunk-VB5YVGY3.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-OEZEWEEG.js";
67
+ } from "../chunk-BJ26X4HJ.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.59" : "dev";
4780
+ var cliVersion = true ? "0.28.61" : "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.59" : "dev";
5794
+ var cliVersion2 = true ? "0.28.61" : "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) => {
@@ -1050,6 +1050,24 @@ var FLAG_REGISTRY = [
1050
1050
  // AGT_MEMORY_EXTRACTION_ENABLED set keeps that value until the env is retired.
1051
1051
  envVar: "AGT_MEMORY_EXTRACTION_ENABLED"
1052
1052
  },
1053
+ {
1054
+ key: "skill-dreaming",
1055
+ description: "Memory-driven skill improvement (ENG-6500): the nightly dreaming cron analyzes each agent's promoted agent_memories against its in-scope skills (agent/team/org/global) and auto-drafts concrete skill improvements as status=draft skill_definitions. Drafts carry their evidence memories + rationale + confidence as provenance and flow through the existing scan \u2192 Pending-Skills review \u2192 publish funnel \u2014 never auto-published. Boolean gate; ships dark \u2014 when off the cron drafts nothing, so 0 skill-dreaming drafts is the expected steady state until an org is armed from the admin Feature Flags page.",
1056
+ flagType: "boolean",
1057
+ // Declared safe value is `false` (no drafting). Fail-safe direction: a
1058
+ // flag-DB read error must never start writing draft skills on its own. No
1059
+ // envVar — this is a net-new control with no pre-flags env gate to migrate.
1060
+ defaultValue: false
1061
+ },
1062
+ {
1063
+ key: "skill-draft-review-notify",
1064
+ 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.",
1065
+ flagType: "boolean",
1066
+ // Declared safe value is `false` (no nudge). Fail-safe direction: a flag-DB
1067
+ // read error must never start DMing humans on its own. No envVar — net-new
1068
+ // control with no pre-flags env gate to migrate (ADR-0022).
1069
+ defaultValue: false
1070
+ },
1053
1071
  {
1054
1072
  key: "channel-quarantine-mode",
1055
1073
  description: "Optional-channel quarantine (ENG-5932): off = disabled, shadow = log matches only, enforce = quarantine.",
@@ -1110,6 +1128,21 @@ var FLAG_REGISTRY = [
1110
1128
  // flag, not an operator gate). Ships dark (default false).
1111
1129
  public: true,
1112
1130
  defaultValue: false
1131
+ },
1132
+ {
1133
+ key: "platform-maintenance-mode",
1134
+ description: 'Platform-wide maintenance mode (ENG-6506): when on, every agent across every team/org auto-replies to admitted human inbound with a "we are offline for maintenance" notice instead of dispatching to the agent \u2014 for whole-platform downtime such as DB upgrades. Read host-side per inbound from the flags cache (no MCP restart). Boolean gate; ships dark \u2014 when off, channels behave exactly as today. (Proactive "back online" follow-up is the ENG-6508 fast-follow, not this flag.)',
1135
+ flagType: "boolean",
1136
+ // Declared safe value is `false` (normal operation). Fail-safe direction: a
1137
+ // flag-DB read error or absent flag map must never silence the fleet on its
1138
+ // own — agents stay responsive unless an operator deliberately flips this on
1139
+ // from the admin Feature Flags page. No envVar: net-new control, no
1140
+ // pre-flags env gate to migrate.
1141
+ defaultValue: false,
1142
+ // Flipping this takes the ENTIRE fleet offline to end users; a mis-flip is a
1143
+ // platform-wide availability incident, so mutations require explicit
1144
+ // confirmation (the admin flip-reach modal).
1145
+ sensitive: true
1113
1146
  }
1114
1147
  ];
1115
1148
  var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
@@ -5498,4 +5531,4 @@ export {
5498
5531
  parseEnvIntegrations,
5499
5532
  probeMcpEnvSubstitution
5500
5533
  };
5501
- //# sourceMappingURL=chunk-OEZEWEEG.js.map
5534
+ //# sourceMappingURL=chunk-BJ26X4HJ.js.map