@meltstudio/meltctl 4.165.0 → 4.166.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 +23 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ var CLI_VERSION;
14
14
  var init_version = __esm({
15
15
  "src/utils/version.ts"() {
16
16
  "use strict";
17
- CLI_VERSION = "4.165.0";
17
+ CLI_VERSION = "4.166.0";
18
18
  }
19
19
  });
20
20
 
@@ -1527,6 +1527,15 @@ var ISSUE_RULES = [
1527
1527
  howToFix: "Run a backlog-seeding session and add features to the active phase before the team starts",
1528
1528
  scope: "project"
1529
1529
  },
1530
+ {
1531
+ id: "roadmap.closed-phase-open-work",
1532
+ dimension: "roadmap",
1533
+ severity: "medium",
1534
+ label: "Closed phase has unfinished features",
1535
+ category: "gaps",
1536
+ howToFix: "A closed phase still has features that aren't done/canceled. Decide per feature: mark it done in that phase if the work landed (update_phase_feature), or move it to an active phase if it's still in flight. (#446 stage 7)",
1537
+ scope: "project"
1538
+ },
1530
1539
  // Delivery — Board
1531
1540
  {
1532
1541
  id: "board.no-mapping",
@@ -4495,6 +4504,15 @@ var ISSUE_RULES2 = [
4495
4504
  howToFix: "Run a backlog-seeding session and add features to the active phase before the team starts",
4496
4505
  scope: "project"
4497
4506
  },
4507
+ {
4508
+ id: "roadmap.closed-phase-open-work",
4509
+ dimension: "roadmap",
4510
+ severity: "medium",
4511
+ label: "Closed phase has unfinished features",
4512
+ category: "gaps",
4513
+ howToFix: "A closed phase still has features that aren't done/canceled. Decide per feature: mark it done in that phase if the work landed (update_phase_feature), or move it to an active phase if it's still in flight. (#446 stage 7)",
4514
+ scope: "project"
4515
+ },
4498
4516
  // Delivery — Board
4499
4517
  {
4500
4518
  id: "board.no-mapping",
@@ -5051,7 +5069,7 @@ Mandatory caller behavior: present the phase's name + id + active/closed status
5051
5069
  "update_phase_feature",
5052
5070
  {
5053
5071
  title: "Update phase-feature membership",
5054
- description: "Edits the per-phase intent for a feature in a phase: targetStage (what this phase aims to bring the feature to), phaseDescription (PM-authored note about what this jump means in this phase), linearEpicUrl (per-phase Linear epic). The same feature can have different per-phase targets \u2014 e.g. 'prototype' in phase 1, 'MVP' in phase 2. Use after assign_feature_to_phase when the PM wants per-membership values different from the feature-row defaults. The PM should review the proposed change before this is called \u2014 this is a write operation. Pass linearEpicUrl=null to clear the per-phase Linear link.",
5072
+ description: "Edits the per-phase intent for a feature in a phase: targetStage (what this phase aims to bring the feature to), phaseDescription (PM-authored note about what this jump means in this phase), linearEpicUrl (per-phase Linear epic), status (per-phase status \u2014 a feature can be done in one phase and in_progress in another). The same feature can have different per-phase values across phases. Use after assign_feature_to_phase when the PM wants per-membership values different from the feature-row defaults. The PM should review the proposed change before this is called \u2014 this is a write operation. Pass linearEpicUrl=null to clear the per-phase Linear link.",
5055
5073
  inputSchema: {
5056
5074
  phaseId: z3.string().uuid().describe("Phase id from list_phases."),
5057
5075
  featureId: z3.string().uuid().describe("Feature id of the membership to edit."),
@@ -5063,6 +5081,9 @@ Mandatory caller behavior: present the phase's name + id + active/closed status
5063
5081
  ),
5064
5082
  linearEpicUrl: z3.string().url().nullable().optional().describe(
5065
5083
  "Per-phase Linear epic URL. Each phase's work on a feature can be its own epic. Pass null to clear."
5084
+ ),
5085
+ status: z3.enum(["not_started", "in_progress", "done", "canceled"]).optional().describe(
5086
+ "Per-phase status (#446 stage 7). Lets a feature be 'done' in a closed phase while still 'in_progress' in the active phase. Use this to resolve the close-phase warning when work for that phase is actually complete."
5066
5087
  )
5067
5088
  }
5068
5089
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "4.165.0",
3
+ "version": "4.166.0",
4
4
  "description": "AI-first development tools for teams - set up AGENTS.md, Claude Code, Cursor, and OpenCode standards",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",