@meltstudio/meltctl 5.0.4 → 5.1.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/README.md +1 -1
- package/dist/index.js +4 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ npm install -g @meltstudio/meltctl
|
|
|
19
19
|
# Authenticate (required)
|
|
20
20
|
meltctl login
|
|
21
21
|
|
|
22
|
-
#
|
|
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
|
|
7453
|
+
CLI_VERSION = "5.1.0";
|
|
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-
|
|
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);
|
|
@@ -55049,7 +55049,7 @@ Mandatory caller behavior: present the feature's name + id + every phase it curr
|
|
|
55049
55049
|
"update_feature",
|
|
55050
55050
|
{
|
|
55051
55051
|
title: "Update feature",
|
|
55052
|
-
description: "Patches fields on an existing feature. Pass only the fields you want to change. Common uses: advancing current_stage as work progresses, flipping status to in_progress/done, setting starting_point. The PM should review the proposed change before this is called \u2014 this is a write operation. Per-phase target stage + Linear epic are NOT set here \u2014 they live on the phase membership; use update_phase_feature for those.",
|
|
55052
|
+
description: "Patches fields on an existing feature. Pass only the fields you want to change. Common uses: advancing current_stage as work progresses, flipping status to in_progress/done, setting starting_point. Setting status here also updates the status the roadmap shows for the feature in its PRIMARY active phase (that per-phase status is what the board renders). To set status for a specific non-primary phase, use update_phase_feature with that phaseId instead. The PM should review the proposed change before this is called \u2014 this is a write operation. Per-phase target stage + Linear epic are NOT set here \u2014 they live on the phase membership; use update_phase_feature for those.",
|
|
55053
55053
|
inputSchema: {
|
|
55054
55054
|
id: external_exports.string().uuid().describe("Feature id from list_features or create_feature."),
|
|
55055
55055
|
name: external_exports.string().min(1).optional(),
|
|
@@ -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-
|
|
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