@starascendin/lifeos-mcp 0.7.0 → 0.7.1
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/build-info.d.ts +2 -2
- package/dist/build-info.js +2 -2
- package/dist/index.js +7 -3
- package/package.json +1 -1
package/dist/build-info.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.7.
|
|
2
|
-
export declare const BUILD_TIME = "2026-02-
|
|
1
|
+
export declare const VERSION = "0.7.1";
|
|
2
|
+
export declare const BUILD_TIME = "2026-02-15T19:30:56.379Z";
|
package/dist/build-info.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// AUTO-GENERATED — do not edit. Regenerated on every build.
|
|
2
|
-
export const VERSION = "0.7.
|
|
3
|
-
export const BUILD_TIME = "2026-02-
|
|
2
|
+
export const VERSION = "0.7.1";
|
|
3
|
+
export const BUILD_TIME = "2026-02-15T19:30:56.379Z";
|
package/dist/index.js
CHANGED
|
@@ -238,7 +238,7 @@ const TOOLS = [
|
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
240
|
name: "create_issue",
|
|
241
|
-
description: "Create a new task/issue.
|
|
241
|
+
description: "Create a new task/issue. Assign to a project (by key like 'KORT') and optionally a phase (by name like 'Building Foundation' or by ID). Set priority, due date, cycle, and initiative.",
|
|
242
242
|
inputSchema: {
|
|
243
243
|
type: "object",
|
|
244
244
|
properties: {
|
|
@@ -256,7 +256,7 @@ const TOOLS = [
|
|
|
256
256
|
},
|
|
257
257
|
projectIdOrKey: {
|
|
258
258
|
type: "string",
|
|
259
|
-
description: "Project ID or key like '
|
|
259
|
+
description: "Project ID or key like 'KORT'. Required if assigning to a phase by name.",
|
|
260
260
|
},
|
|
261
261
|
priority: {
|
|
262
262
|
type: "string",
|
|
@@ -271,9 +271,13 @@ const TOOLS = [
|
|
|
271
271
|
type: "string",
|
|
272
272
|
description: "Assign to a specific cycle (optional)",
|
|
273
273
|
},
|
|
274
|
+
phaseNameOrId: {
|
|
275
|
+
type: "string",
|
|
276
|
+
description: "Phase name (e.g. 'Building Foundation') or phase ID. Resolved within the project specified by projectIdOrKey. Preferred over phaseId.",
|
|
277
|
+
},
|
|
274
278
|
phaseId: {
|
|
275
279
|
type: "string",
|
|
276
|
-
description: "
|
|
280
|
+
description: "Phase ID (deprecated, use phaseNameOrId instead)",
|
|
277
281
|
},
|
|
278
282
|
initiativeId: {
|
|
279
283
|
type: "string",
|
package/package.json
CHANGED