@meltstudio/meltctl 4.155.1 → 4.157.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 -6
- 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.157.0";
|
|
18
18
|
}
|
|
19
19
|
});
|
|
20
20
|
|
|
@@ -4961,7 +4961,7 @@ var createFeatureInputSchema = z4.object({
|
|
|
4961
4961
|
currentStage: z4.enum(STAGE_VALUES).optional(),
|
|
4962
4962
|
targetStage: z4.enum(STAGE_VALUES).optional(),
|
|
4963
4963
|
status: z4.string().optional(),
|
|
4964
|
-
|
|
4964
|
+
clientNotes: z4.string().optional(),
|
|
4965
4965
|
createdAt: z4.string().datetime().optional(),
|
|
4966
4966
|
phaseId: z4.string().uuid().optional(),
|
|
4967
4967
|
phaseIds: z4.array(z4.string().uuid()).optional()
|
|
@@ -4975,7 +4975,7 @@ var updateFeatureInputSchema = z4.object({
|
|
|
4975
4975
|
currentStage: z4.enum(STAGE_VALUES).optional(),
|
|
4976
4976
|
targetStage: z4.enum(STAGE_VALUES).optional(),
|
|
4977
4977
|
status: z4.string().optional(),
|
|
4978
|
-
|
|
4978
|
+
clientNotes: z4.string().optional(),
|
|
4979
4979
|
linearEpicUrl: z4.string().url().nullable().optional()
|
|
4980
4980
|
});
|
|
4981
4981
|
function registerFeatureTools(server, getClient2) {
|
|
@@ -4983,7 +4983,7 @@ function registerFeatureTools(server, getClient2) {
|
|
|
4983
4983
|
"list_features",
|
|
4984
4984
|
{
|
|
4985
4985
|
title: "List features",
|
|
4986
|
-
description: "Lists features on the project. Each entry has id, name, category, description, current_stage, target_stage, status, prd_path,
|
|
4986
|
+
description: "Lists features on the project. Each entry has id, name, category, description, current_stage, target_stage, status, prd_path, client_notes, and Linear epic url if synced. Optional filters narrow server-side: phaseId returns only features assigned to that phase; status / category / currentStage / targetStage filter on the matching column.",
|
|
4987
4987
|
inputSchema: {
|
|
4988
4988
|
projectId: z4.number().int().positive(),
|
|
4989
4989
|
phaseId: z4.string().uuid().optional().describe("Limit to features assigned to this phase (phase_features join)."),
|
|
@@ -5009,7 +5009,7 @@ function registerFeatureTools(server, getClient2) {
|
|
|
5009
5009
|
currentStage: z4.enum(STAGE_VALUES).optional().describe(`Default idea. ${STAGE_DESC}`),
|
|
5010
5010
|
targetStage: z4.enum(STAGE_VALUES).optional().describe(`Default mv. ${STAGE_DESC}`),
|
|
5011
5011
|
status: z4.string().optional().describe("Default not_started. Common values: not_started, in_progress, done."),
|
|
5012
|
-
|
|
5012
|
+
clientNotes: z4.string().optional().describe("Free-text. What blockers from the client side, if any."),
|
|
5013
5013
|
createdAt: z4.string().datetime().optional().describe(
|
|
5014
5014
|
"ISO 8601 timestamp. Backdates the row's createdAt \u2014 only set this when migrating an existing roadmap that has a real historical creation date. Otherwise omit and the server stamps now()."
|
|
5015
5015
|
),
|
|
@@ -5059,7 +5059,7 @@ Mandatory caller behavior: present the feature's name + id + every phase it curr
|
|
|
5059
5059
|
currentStage: z4.enum(STAGE_VALUES).optional().describe(STAGE_DESC),
|
|
5060
5060
|
targetStage: z4.enum(STAGE_VALUES).optional().describe(STAGE_DESC),
|
|
5061
5061
|
status: z4.string().optional().describe("Common values: not_started, in_progress, done."),
|
|
5062
|
-
|
|
5062
|
+
clientNotes: z4.string().optional(),
|
|
5063
5063
|
linearEpicUrl: z4.string().url().nullable().optional().describe(
|
|
5064
5064
|
"Linear epic URL for the feature. Pass null to clear. Setting this also marks the feature as synced (synced_to_linear_at = now); clearing it also clears that timestamp."
|
|
5065
5065
|
)
|
package/package.json
CHANGED