@mutmutco/hub 4.5.30 → 4.5.31
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.cjs +3 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1079,6 +1079,7 @@ async function runMaintenance(product, args, dependencies) {
|
|
|
1079
1079
|
const quiet = args.includes("--quiet");
|
|
1080
1080
|
const dryRun = args.includes("--dry-run");
|
|
1081
1081
|
const installed = args.includes("install");
|
|
1082
|
+
const verbose = !quiet && !json && args.includes("--verbose");
|
|
1082
1083
|
const render = dependencies.render;
|
|
1083
1084
|
const env = render?.env ?? process.env;
|
|
1084
1085
|
const tty = render?.tty ?? Boolean(process.stdout.isTTY);
|
|
@@ -1114,7 +1115,7 @@ async function runMaintenance(product, args, dependencies) {
|
|
|
1114
1115
|
phaseStarted.delete(event.id);
|
|
1115
1116
|
if (active === event.id) active = void 0;
|
|
1116
1117
|
}
|
|
1117
|
-
if (
|
|
1118
|
+
if (verbose && event.state === "running" && event.detail) run?.relay(event.detail, "stderr", false);
|
|
1118
1119
|
const measured = event.measured;
|
|
1119
1120
|
const measure = measured?.kind === "percent" ? `${Math.max(0, Math.min(100, Math.round(measured.percent)))}%` : measured?.kind === "bytes" ? `${measured.done}/${measured.total} B` : measured?.kind === "count" ? `${measured.done}${measured.total === void 0 ? "" : `/${measured.total}`}` : event.measure;
|
|
1120
1121
|
const facts = {
|
|
@@ -2381,7 +2382,7 @@ function ensureClaudeMarketplace(env) {
|
|
|
2381
2382
|
}
|
|
2382
2383
|
var CLAUDE_PACKAGE = "@mutmutco/claude-plugin";
|
|
2383
2384
|
var CLAUDE_MANIFEST = ".claude-plugin/plugin.json";
|
|
2384
|
-
var CLAUDE_TREE_MARKERS = [".claude-plugin/plugin.json"];
|
|
2385
|
+
var CLAUDE_TREE_MARKERS = [".claude-plugin/plugin.json", "skills/bootstrap/SKILL.md"];
|
|
2385
2386
|
function claudePluginsRoot(env) {
|
|
2386
2387
|
return (0, import_node_path9.join)(claudeHomeDir(env), "plugins");
|
|
2387
2388
|
}
|
package/package.json
CHANGED