@meltstudio/meltctl 5.0.5 → 5.2.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.
Files changed (2) hide show
  1. package/dist/index.js +12 -2
  2. package/package.json +1 -1
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.5";
7453
+ CLI_VERSION = "5.2.0";
7454
7454
  }
7455
7455
  });
7456
7456
 
@@ -27188,6 +27188,11 @@ function createPmResource(config2) {
27188
27188
  const res = await apiFetch(config2, `/pm/features/${id}`);
27189
27189
  return unwrap("get feature", res);
27190
27190
  },
27191
+ /** Every project's primary active phase, for the cross-project overview. */
27192
+ async listActivePhases() {
27193
+ const res = await apiFetch(config2, `/pm/active-phases`);
27194
+ return unwrap("list active phases", res);
27195
+ },
27191
27196
  async createFeature(input) {
27192
27197
  const res = await apiFetch(config2, `/pm/features`, {
27193
27198
  method: "POST",
@@ -53430,6 +53435,11 @@ function createPmResource2(config2) {
53430
53435
  const res = await apiFetch2(config2, `/pm/features/${id}`);
53431
53436
  return unwrap2("get feature", res);
53432
53437
  },
53438
+ /** Every project's primary active phase, for the cross-project overview. */
53439
+ async listActivePhases() {
53440
+ const res = await apiFetch2(config2, `/pm/active-phases`);
53441
+ return unwrap2("list active phases", res);
53442
+ },
53433
53443
  async createFeature(input) {
53434
53444
  const res = await apiFetch2(config2, `/pm/features`, {
53435
53445
  method: "POST",
@@ -55049,7 +55059,7 @@ Mandatory caller behavior: present the feature's name + id + every phase it curr
55049
55059
  "update_feature",
55050
55060
  {
55051
55061
  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.",
55062
+ 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
55063
  inputSchema: {
55054
55064
  id: external_exports.string().uuid().describe("Feature id from list_features or create_feature."),
55055
55065
  name: external_exports.string().min(1).optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "5.0.5",
3
+ "version": "5.2.0",
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",