@meltstudio/meltctl 4.158.0 → 4.159.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 +13 -3
- 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.159.0";
|
|
18
18
|
}
|
|
19
19
|
});
|
|
20
20
|
|
|
@@ -4769,7 +4769,7 @@ function registerProjectTools(server, getClient2) {
|
|
|
4769
4769
|
"get_project_settings",
|
|
4770
4770
|
{
|
|
4771
4771
|
title: "Get project settings",
|
|
4772
|
-
description: 'Returns the project\'s PM-skills settings: cadence (weekly/biweekly/monthly), start_day, demo_day, team_size, velocity_override, Linear workspace, Notion URLs, code repo path, tech-support contact, default language, project glossary, project stage. Includes a `warnings` array flagging settings whose absence breaks downstream behavior (e.g., "calculator: missing teamSize"). Returns sensible defaults if no settings row exists yet (cadence=weekly, start_day=Monday, demo_day=Friday, defaultLanguage=English).',
|
|
4772
|
+
description: 'Returns the project\'s PM-skills settings: cadence (weekly/biweekly/monthly), start_day, demo_day, team_size, velocity_override, Linear workspace, Notion URLs, code repo path, tech-support contact, default language, project glossary, project stage, default jump duration weeks. Includes a `warnings` array flagging settings whose absence breaks downstream behavior (e.g., "calculator: missing teamSize"). Returns sensible defaults if no settings row exists yet (cadence=weekly, start_day=Monday, demo_day=Friday, defaultLanguage=English, defaultJumpDurationWeeks=1).',
|
|
4773
4773
|
inputSchema: {
|
|
4774
4774
|
projectId: z22.number().int().positive().describe("Strapi project id from list_projects.")
|
|
4775
4775
|
}
|
|
@@ -4805,6 +4805,9 @@ function registerProjectTools(server, getClient2) {
|
|
|
4805
4805
|
projectGlossary: z22.string().nullable().optional().describe(
|
|
4806
4806
|
"Free-text project glossary surfaced to skills as context. Pass null to clear."
|
|
4807
4807
|
),
|
|
4808
|
+
defaultJumpDurationWeeks: z22.number().positive().optional().describe(
|
|
4809
|
+
"Project-wide default weeks per maturity jump. New phases inherit this on insert; PMs override per phase via update_phase. Used by the maturity-jumps calculator: total_jumps \xD7 jumpDurationWeeks \xD7 teamSize = total_weeks. Tighter values (0.25-0.5) model fast iteration; longer values (2-3) model robust hardening. NOT NULL with default 1; omit to leave the existing value in place."
|
|
4810
|
+
),
|
|
4808
4811
|
projectStage: z22.enum(PROJECT_STAGE_VALUES).nullable().optional().describe(
|
|
4809
4812
|
"Canonical PM-owned project stage that drives audit calibration: prototype | early_revenue | growth | scale. The server stamps projectStageSetBy + projectStageSetAt automatically. Pass null to clear."
|
|
4810
4813
|
)
|
|
@@ -4857,7 +4860,8 @@ var createPhaseInputSchema = z3.object({
|
|
|
4857
4860
|
targetShape: z3.enum(SHAPE_VALUES).default("walking"),
|
|
4858
4861
|
isPrimary: z3.boolean().optional(),
|
|
4859
4862
|
createdAt: z3.string().datetime().optional(),
|
|
4860
|
-
closedAt: z3.string().datetime().nullable().optional()
|
|
4863
|
+
closedAt: z3.string().datetime().nullable().optional(),
|
|
4864
|
+
jumpDurationWeeks: z3.number().positive().optional()
|
|
4861
4865
|
});
|
|
4862
4866
|
function registerPhaseTools(server, getClient2) {
|
|
4863
4867
|
server.registerTool(
|
|
@@ -4889,6 +4893,9 @@ function registerPhaseTools(server, getClient2) {
|
|
|
4889
4893
|
),
|
|
4890
4894
|
closedAt: z3.string().datetime().nullable().optional().describe(
|
|
4891
4895
|
"ISO 8601 timestamp. When set, the phase is created as historical (isActive=false, isPrimary=false). Use to backfill phases that closed months ago."
|
|
4896
|
+
),
|
|
4897
|
+
jumpDurationWeeks: z3.number().positive().optional().describe(
|
|
4898
|
+
"Override the project default jump duration for this phase, in weeks. Tighter (0.25-0.5) for fast iteration / proof-of-concept; longer (2-3) for hardening. Omit to inherit pm_project_settings.defaultJumpDurationWeeks."
|
|
4892
4899
|
)
|
|
4893
4900
|
}
|
|
4894
4901
|
},
|
|
@@ -4926,6 +4933,9 @@ function registerPhaseTools(server, getClient2) {
|
|
|
4926
4933
|
),
|
|
4927
4934
|
closedAt: z3.string().datetime().nullable().optional().describe(
|
|
4928
4935
|
"ISO 8601 timestamp or null. When set non-null, forces isActive=false + isPrimary=false. When null, clears the closed-at stamp."
|
|
4936
|
+
),
|
|
4937
|
+
jumpDurationWeeks: z3.number().positive().optional().describe(
|
|
4938
|
+
"Override the project default jump duration for this phase, in weeks. Tighter (0.25-0.5) for fast iteration / proof-of-concept; longer (2-3) for hardening. The audit will eventually flag mismatches between jump duration and per-feature target stages."
|
|
4929
4939
|
)
|
|
4930
4940
|
}
|
|
4931
4941
|
},
|
package/package.json
CHANGED