@meltstudio/meltctl 4.128.0 → 4.129.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/dist/index.js +6 -5
- 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.
|
|
17
|
+
CLI_VERSION = "4.129.0";
|
|
18
18
|
}
|
|
19
19
|
});
|
|
20
20
|
|
|
@@ -4025,6 +4025,7 @@ function registerPhaseTools(server, getClient2) {
|
|
|
4025
4025
|
}
|
|
4026
4026
|
var STAGE_VALUES = ["idea", "poc", "pt", "mv", "mk", "ma", "mbi"];
|
|
4027
4027
|
var STAGE_DESC = "idea | poc | pt | mv | mk | ma | mbi. The 7 maturity stages from the workflow doc \u2014 pick the one that matches where the work *looks like* it is right now (or where it should land for target).";
|
|
4028
|
+
var PRD_PATH_DESC = "http(s) URL pointing to the PRD (Notion, Google Doc, etc.). Omit if there is no PRD yet \u2014 relative paths or plain text are rejected.";
|
|
4028
4029
|
async function listFeatures(client, input3) {
|
|
4029
4030
|
return safe(() => client.pm.listFeatures(input3.projectId));
|
|
4030
4031
|
}
|
|
@@ -4040,7 +4041,7 @@ var createFeatureInputSchema = z4.object({
|
|
|
4040
4041
|
name: z4.string().min(1),
|
|
4041
4042
|
category: z4.string().min(1),
|
|
4042
4043
|
description: z4.string().optional(),
|
|
4043
|
-
prdPath: z4.string().optional(),
|
|
4044
|
+
prdPath: z4.string().url().optional(),
|
|
4044
4045
|
currentStage: z4.enum(STAGE_VALUES).optional(),
|
|
4045
4046
|
targetStage: z4.enum(STAGE_VALUES).optional(),
|
|
4046
4047
|
status: z4.string().optional(),
|
|
@@ -4051,7 +4052,7 @@ var updateFeatureInputSchema = z4.object({
|
|
|
4051
4052
|
name: z4.string().min(1).optional(),
|
|
4052
4053
|
category: z4.string().min(1).optional(),
|
|
4053
4054
|
description: z4.string().optional(),
|
|
4054
|
-
prdPath: z4.string().optional(),
|
|
4055
|
+
prdPath: z4.string().url().optional(),
|
|
4055
4056
|
currentStage: z4.enum(STAGE_VALUES).optional(),
|
|
4056
4057
|
targetStage: z4.enum(STAGE_VALUES).optional(),
|
|
4057
4058
|
status: z4.string().optional(),
|
|
@@ -4080,7 +4081,7 @@ function registerFeatureTools(server, getClient2) {
|
|
|
4080
4081
|
name: z4.string().min(1),
|
|
4081
4082
|
category: z4.string().min(1).describe('Roadmap grouping, e.g. "Frontend & UI", "API & Data", "Ops".'),
|
|
4082
4083
|
description: z4.string().optional().describe("One-sentence summary for the roadmap row."),
|
|
4083
|
-
prdPath: z4.string().optional().describe(
|
|
4084
|
+
prdPath: z4.string().url().optional().describe(PRD_PATH_DESC),
|
|
4084
4085
|
currentStage: z4.enum(STAGE_VALUES).optional().describe(`Default idea. ${STAGE_DESC}`),
|
|
4085
4086
|
targetStage: z4.enum(STAGE_VALUES).optional().describe(`Default mv. ${STAGE_DESC}`),
|
|
4086
4087
|
status: z4.string().optional().describe("Default not_started. Common values: not_started, in_progress, done."),
|
|
@@ -4099,7 +4100,7 @@ function registerFeatureTools(server, getClient2) {
|
|
|
4099
4100
|
name: z4.string().min(1).optional(),
|
|
4100
4101
|
category: z4.string().min(1).optional(),
|
|
4101
4102
|
description: z4.string().optional(),
|
|
4102
|
-
prdPath: z4.string().optional(),
|
|
4103
|
+
prdPath: z4.string().url().optional().describe(PRD_PATH_DESC),
|
|
4103
4104
|
currentStage: z4.enum(STAGE_VALUES).optional().describe(STAGE_DESC),
|
|
4104
4105
|
targetStage: z4.enum(STAGE_VALUES).optional().describe(STAGE_DESC),
|
|
4105
4106
|
status: z4.string().optional().describe("Common values: not_started, in_progress, done."),
|
package/package.json
CHANGED