@uzysjung/agent-harness 26.87.0 → 26.88.0

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/index.js CHANGED
@@ -699,7 +699,7 @@ var cac = (name = "") => new CAC(name);
699
699
  // package.json
700
700
  var package_default = {
701
701
  name: "@uzysjung/agent-harness",
702
- version: "26.87.0",
702
+ version: "26.88.0",
703
703
  description: "Curate vetted AI-coding skills & plugins by your tech stack \u2014 install only what you need, across Claude Code, Codex, OpenCode & Antigravity",
704
704
  type: "module",
705
705
  publishConfig: {
@@ -3363,6 +3363,23 @@ function renderFinalSummary(log, spec, report, fromWizard) {
3363
3363
  )
3364
3364
  );
3365
3365
  }
3366
+ const nonClaudeCli = spec.cli.filter((b2) => b2 !== "claude");
3367
+ if (nonClaudeCli.length > 0) {
3368
+ const claudeOnlyPlugins = EXTERNAL_ASSETS.filter(
3369
+ (a) => a.method.kind === "plugin" && isAssetSelected(a.id, spec)
3370
+ );
3371
+ if (claudeOnlyPlugins.length > 0) {
3372
+ log("");
3373
+ log(
3374
+ infoRow(
3375
+ "NOTE",
3376
+ c.dim(
3377
+ `${claudeOnlyPlugins.length} plugin asset${claudeOnlyPlugins.length > 1 ? "s" : ""} are Claude Code-only \u2014 not installed for ${nonClaudeCli.map((b2) => CLI_SUMMARY_LABELS[b2]).join("/")}: ${claudeOnlyPlugins.map((a) => a.id).join(", ")}`
3378
+ )
3379
+ )
3380
+ );
3381
+ }
3382
+ }
3366
3383
  if (!fromWizard) {
3367
3384
  const optIn = experimentalOptInCandidates(spec);
3368
3385
  if (optIn.length > 0) {