@uzysjung/agent-harness 26.87.0 → 26.88.1
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/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Coding agents keep getting stronger out of the box — piling on skills and MCPs
|
|
|
10
10
|
|
|
11
11
|

|
|
12
12
|
|
|
13
|
-
> **What "vetted" means** — ≥ 1000 GitHub stars + active maintenance + a Docker install-verification run (49/
|
|
13
|
+
> **What "vetted" means** — ≥ 1000 GitHub stars + active maintenance + a Docker install-verification run (49/58 assets green today), re-checked monthly by a CI cron ([catalog-verify](docs/COMPATIBILITY.md), [trust-tier-drift](.github/workflows/)). It is **not** a line-by-line security audit or a prompt-injection scan of asset contents. npm/npx assets are version-pinned; **plugin/skill assets resolve to upstream HEAD (not commit-pinned yet)**. Treat installed assets like any third-party dependency — see [SECURITY.md](SECURITY.md).
|
|
14
14
|
|
|
15
15
|
🇰🇷 [한국어](./README.ko.md)
|
|
16
16
|
|
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.
|
|
702
|
+
version: "26.88.1",
|
|
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) {
|