@integrity-labs/agt-cli 0.28.232 → 0.28.234

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.
@@ -1493,12 +1493,12 @@ function generateSlackAppManifest(input) {
1493
1493
  display_name: botDisplayName,
1494
1494
  always_online: true
1495
1495
  },
1496
- // ENG-4596: register the /kill + /unkill slash commands when the
1497
- // caller passed a URL AND the app requested the `commands` scope.
1498
- // Slack rejects manifests where slash_commands is non-empty without
1499
- // the matching scope, so the scope check is a guard.
1496
+ // ENG-4596: register the per-agent slash commands when the caller
1497
+ // passed a URL AND the app requested the `commands` scope. Slack
1498
+ // rejects manifests where slash_commands is non-empty without the
1499
+ // matching scope, so the scope check is a guard.
1500
1500
  //
1501
- // ENG-5150: also register /restart. The slash_commands envelope handler
1501
+ // ENG-5150: register /restart. The slash_commands envelope handler
1502
1502
  // in packages/mcp/src/slack-channel.ts already routes it; without the
1503
1503
  // manifest entry Slack treats typed `/restart` as a plain message and
1504
1504
  // posts it to the channel before the bot can intercept it.
@@ -1511,26 +1511,11 @@ function generateSlackAppManifest(input) {
1511
1511
  //
1512
1512
  // ENG-6044: the per-agent commands carry the agent code-name suffix
1513
1513
  // (/status-don, /help-don) so multiple agents in one workspace don't
1514
- // register colliding names; /kill + /unkill stay generic
1515
- // (thread-wide semantics). /debug is renamed /investigate-<code-name>
1514
+ // register colliding names. /debug is renamed /investigate-<code-name>
1516
1515
  // in the same move; the envelope handler still routes legacy names
1517
1516
  // (including the pre-ENG-6233 /agent-status-<code>) during migration.
1518
1517
  ...slash_command_url && scopes.includes("commands") ? {
1519
1518
  slash_commands: [
1520
- {
1521
- command: "/kill",
1522
- url: slash_command_url,
1523
- description: "Silence all agents in this thread (6h soft TTL).",
1524
- usage_hint: "invoke as a thread reply",
1525
- should_escape: false
1526
- },
1527
- {
1528
- command: "/unkill",
1529
- url: slash_command_url,
1530
- description: "Resume agents in this thread.",
1531
- usage_hint: "invoke as a thread reply",
1532
- should_escape: false
1533
- },
1534
1519
  {
1535
1520
  command: agentSlashCommand("/status", agent_code_name),
1536
1521
  url: slash_command_url,
@@ -5240,6 +5225,53 @@ var INTEGRATION_REGISTRY = [
5240
5225
  ]
5241
5226
  }
5242
5227
  },
5228
+ {
5229
+ // Seed-catalog toolkit (composed by the ultimate-app-coder bundle). Registered
5230
+ // here only so the manager's ensureToolkitCli installs the binary via the
5231
+ // failure-surfacing cli_tool path (not a customer-installable native -> no
5232
+ // `installable`). Single source for the install; the seed integration no
5233
+ // longer carries an on_install for it.
5234
+ id: "greenlight",
5235
+ name: "Greenlight (App Store Compliance)",
5236
+ category: "code",
5237
+ description: "Apple App Store pre-submission compliance scanner by Revyl - scans app source, privacy manifests, binaries, and App Store Connect status for App Review rejection risks",
5238
+ supported_auth_types: ["none"],
5239
+ capabilities: [
5240
+ { id: "greenlight:scan", name: "Scan for compliance", description: "Scan app source, privacy manifests, and binaries for App Store rejection risks", access: "read" }
5241
+ ],
5242
+ cli_tool: {
5243
+ package: "greenlight",
5244
+ binary: "greenlight",
5245
+ env_key: "",
5246
+ // Revyl greenlight is a Go binary. Prefer the Homebrew tap (macOS, and
5247
+ // Linuxbrew when present); fall back to `go install` where Go is on the
5248
+ // host. Exits non-zero when neither is available so the manager records
5249
+ // the failure instead of masking it.
5250
+ installer: "script",
5251
+ script: 'if command -v brew >/dev/null 2>&1; then brew install revylai/tap/greenlight; elif command -v go >/dev/null 2>&1; then go install github.com/RevylAI/greenlight/cmd/greenlight@latest; else echo "greenlight: no supported installer (need brew or go)" >&2; exit 1; fi'
5252
+ },
5253
+ docs_url: "https://github.com/RevylAI/greenlight"
5254
+ },
5255
+ {
5256
+ // Seed-catalog toolkit (composed by the ultimate-app-coder bundle). Registered
5257
+ // here only for the cli_tool install path; not a customer-installable native.
5258
+ id: "expo",
5259
+ name: "Expo (EAS CLI)",
5260
+ category: "code",
5261
+ description: "Expo Application Services (EAS) CLI - build, submit, and update iOS and Android apps in the cloud",
5262
+ supported_auth_types: ["api_key"],
5263
+ capabilities: [
5264
+ { id: "expo:read", name: "Read builds", description: "Read EAS build and update status and history", access: "read" },
5265
+ { id: "expo:ship", name: "Build and ship", description: "Trigger cloud builds, submit to the app stores, and publish OTA updates", access: "write" }
5266
+ ],
5267
+ cli_tool: {
5268
+ package: "eas-cli",
5269
+ binary: "eas",
5270
+ env_key: "EXPO_TOKEN",
5271
+ installer: "npm"
5272
+ },
5273
+ docs_url: "https://docs.expo.dev/eas/"
5274
+ },
5243
5275
  {
5244
5276
  id: "custom",
5245
5277
  name: "Custom Integration",
@@ -7147,6 +7179,18 @@ var FLAG_REGISTRY = [
7147
7179
  // shared skills on its own. No envVar - net-new control (ADR-0022).
7148
7180
  defaultValue: false
7149
7181
  },
7182
+ {
7183
+ key: "skills-marketplace",
7184
+ description: "Cross-org skills marketplace: an org publishes a skill (agent proposes via skill_publish_to_marketplace, org owner/admin approves) so agents in OTHER orgs can browse the listing and import a copy into their own draft -> SkillSpector scan -> Pending-review -> publish funnel. Per-org activation gate for the whole feature: it gates the propose tool + the /marketplace publish/browse/import routes + the webapp marketplace UI. Off = propose/import soft-refuse and browse returns nothing, so no org content crosses an org boundary. Boolean gate; ships dark - flip on per org from the admin Feature Flags page.",
7185
+ flagType: "boolean",
7186
+ // PUBLIC (ADR-0022 §2): the webapp reads it via GET /flags to decide whether to render
7187
+ // the Marketplace panels (mirrors projects-menu / direct-chat-drawer). Declared safe
7188
+ // value is `false`: publishing a skill to other orgs is outward-facing IP exposure, so
7189
+ // the fail-safe / absent-flag direction is "nothing is published or importable". No
7190
+ // envVar - net-new control with no pre-flags env gate to migrate.
7191
+ defaultValue: false,
7192
+ public: true
7193
+ },
7150
7194
  {
7151
7195
  key: "channel-quarantine-mode",
7152
7196
  description: "Optional-channel quarantine (ENG-5932): off = disabled, shadow = log matches only, enforce = quarantine.",
@@ -9009,4 +9053,4 @@ export {
9009
9053
  stopAllSessionsAndWait,
9010
9054
  getProjectDir
9011
9055
  };
9012
- //# sourceMappingURL=chunk-X4FOPVGZ.js.map
9056
+ //# sourceMappingURL=chunk-PYVEJMY2.js.map