@integrity-labs/agt-cli 0.28.231 → 0.28.233

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.
@@ -5240,6 +5240,53 @@ var INTEGRATION_REGISTRY = [
5240
5240
  ]
5241
5241
  }
5242
5242
  },
5243
+ {
5244
+ // Seed-catalog toolkit (composed by the ultimate-app-coder bundle). Registered
5245
+ // here only so the manager's ensureToolkitCli installs the binary via the
5246
+ // failure-surfacing cli_tool path (not a customer-installable native -> no
5247
+ // `installable`). Single source for the install; the seed integration no
5248
+ // longer carries an on_install for it.
5249
+ id: "greenlight",
5250
+ name: "Greenlight (App Store Compliance)",
5251
+ category: "code",
5252
+ 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",
5253
+ supported_auth_types: ["none"],
5254
+ capabilities: [
5255
+ { id: "greenlight:scan", name: "Scan for compliance", description: "Scan app source, privacy manifests, and binaries for App Store rejection risks", access: "read" }
5256
+ ],
5257
+ cli_tool: {
5258
+ package: "greenlight",
5259
+ binary: "greenlight",
5260
+ env_key: "",
5261
+ // Revyl greenlight is a Go binary. Prefer the Homebrew tap (macOS, and
5262
+ // Linuxbrew when present); fall back to `go install` where Go is on the
5263
+ // host. Exits non-zero when neither is available so the manager records
5264
+ // the failure instead of masking it.
5265
+ installer: "script",
5266
+ 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'
5267
+ },
5268
+ docs_url: "https://github.com/RevylAI/greenlight"
5269
+ },
5270
+ {
5271
+ // Seed-catalog toolkit (composed by the ultimate-app-coder bundle). Registered
5272
+ // here only for the cli_tool install path; not a customer-installable native.
5273
+ id: "expo",
5274
+ name: "Expo (EAS CLI)",
5275
+ category: "code",
5276
+ description: "Expo Application Services (EAS) CLI - build, submit, and update iOS and Android apps in the cloud",
5277
+ supported_auth_types: ["api_key"],
5278
+ capabilities: [
5279
+ { id: "expo:read", name: "Read builds", description: "Read EAS build and update status and history", access: "read" },
5280
+ { id: "expo:ship", name: "Build and ship", description: "Trigger cloud builds, submit to the app stores, and publish OTA updates", access: "write" }
5281
+ ],
5282
+ cli_tool: {
5283
+ package: "eas-cli",
5284
+ binary: "eas",
5285
+ env_key: "EXPO_TOKEN",
5286
+ installer: "npm"
5287
+ },
5288
+ docs_url: "https://docs.expo.dev/eas/"
5289
+ },
5243
5290
  {
5244
5291
  id: "custom",
5245
5292
  name: "Custom Integration",
@@ -7147,6 +7194,18 @@ var FLAG_REGISTRY = [
7147
7194
  // shared skills on its own. No envVar - net-new control (ADR-0022).
7148
7195
  defaultValue: false
7149
7196
  },
7197
+ {
7198
+ key: "skills-marketplace",
7199
+ 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.",
7200
+ flagType: "boolean",
7201
+ // PUBLIC (ADR-0022 §2): the webapp reads it via GET /flags to decide whether to render
7202
+ // the Marketplace panels (mirrors projects-menu / direct-chat-drawer). Declared safe
7203
+ // value is `false`: publishing a skill to other orgs is outward-facing IP exposure, so
7204
+ // the fail-safe / absent-flag direction is "nothing is published or importable". No
7205
+ // envVar - net-new control with no pre-flags env gate to migrate.
7206
+ defaultValue: false,
7207
+ public: true
7208
+ },
7150
7209
  {
7151
7210
  key: "channel-quarantine-mode",
7152
7211
  description: "Optional-channel quarantine (ENG-5932): off = disabled, shadow = log matches only, enforce = quarantine.",
@@ -9009,4 +9068,4 @@ export {
9009
9068
  stopAllSessionsAndWait,
9010
9069
  getProjectDir
9011
9070
  };
9012
- //# sourceMappingURL=chunk-X4FOPVGZ.js.map
9071
+ //# sourceMappingURL=chunk-LTBALKME.js.map