@meltstudio/meltctl 5.0.4 → 5.0.5

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
@@ -19,7 +19,7 @@ npm install -g @meltstudio/meltctl
19
19
  # Authenticate (required)
20
20
  meltctl login
21
21
 
22
- # Fetch latest templates to a temp dir (used by /melt-dev-update)
22
+ # Print the repo-migration playbook (legacy /melt-update path)
23
23
  meltctl project templates
24
24
 
25
25
  # Submit daily standup report
package/dist/index.js CHANGED
@@ -7450,7 +7450,7 @@ var CLI_VERSION;
7450
7450
  var init_version = __esm({
7451
7451
  "src/utils/version.ts"() {
7452
7452
  "use strict";
7453
- CLI_VERSION = "5.0.4";
7453
+ CLI_VERSION = "5.0.5";
7454
7454
  }
7455
7455
  });
7456
7456
 
@@ -26490,7 +26490,7 @@ async function templatesCommand() {
26490
26490
  source_default.bold.yellow("\u26A0 The per-repo Melt skill model has been retired (company-wide)."),
26491
26491
  "This command now hands back MIGRATION INSTRUCTIONS, not a template refresh.",
26492
26492
  `\u2192 Follow ${source_default.cyan("MIGRATION.md")} in the directory printed below to migrate this repo now.`,
26493
- ` (In Claude Code with the org skills, ${source_default.cyan("/melt-dev-update")} does the same migration.)`,
26493
+ ` (In Claude Code with the org skills, ${source_default.cyan("/melt-dev-setup")} does the same migration.)`,
26494
26494
  ""
26495
26495
  ].join("\n");
26496
26496
  console.error(notice);
@@ -55427,7 +55427,6 @@ ${source_default.dim(" /melt-dev-debug Systematically investigate an
55427
55427
  ${source_default.dim(" /melt-dev-tech-audit Run a project compliance audit")}
55428
55428
  ${source_default.dim(" /melt-dev-ux-audit Review UI against usability heuristics")}
55429
55429
  ${source_default.dim(" /melt-dev-security-audit Run a security posture audit across the platform")}
55430
- ${source_default.dim(" /melt-dev-update Refresh AGENTS.md + MCP config to the latest")}
55431
55430
  ${source_default.dim(" /melt-dev-help Answer questions about the development playbook")}
55432
55431
 
55433
55432
  ${source_default.bold("Admin Commands")} ${source_default.dim("(used by skills and team managers):")}
@@ -55474,11 +55473,10 @@ ${source_default.dim("Project scaffolding now lives in the Melt dev skills (run
55474
55473
  ${source_default.dim("auto-distributed via the Anthropic org Skills registry):")}
55475
55474
  ${source_default.dim(" /melt-dev-setup Analyze the project, write AGENTS.md, and propose MCP config")}
55476
55475
  ${source_default.dim(" /melt-dev-link Connect and verify ticket tracker + browser testing")}
55477
- ${source_default.dim(" /melt-dev-update Refresh AGENTS.md + MCP config to the latest")}
55478
55476
  `
55479
55477
  );
55480
55478
  project.command("templates").description(
55481
- "write the repo-migration playbook to a temp dir (the /melt-update \u2192 /melt-dev-* path); /melt-dev-update does the same"
55479
+ "write the repo-migration playbook to a temp dir (the /melt-update \u2192 /melt-dev-* path); /melt-dev-setup does the same"
55482
55480
  ).action(async () => {
55483
55481
  await templatesCommand();
55484
55482
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "5.0.4",
3
+ "version": "5.0.5",
4
4
  "description": "AI-first development tooling for Melt teams — companion CLI for the org-distributed Claude Code dev skills",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",