@starascendin/lifeos-mcp 0.7.63 → 0.7.64
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 +29 -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-05-
|
|
1
|
+
export declare const VERSION = "0.7.64";
|
|
2
|
+
export declare const BUILD_TIME = "2026-05-17T14:08:51.738Z";
|
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-05-
|
|
2
|
+
export const VERSION = "0.7.64";
|
|
3
|
+
export const BUILD_TIME = "2026-05-17T14:08:51.738Z";
|
package/dist/index.js
CHANGED
|
@@ -4820,19 +4820,43 @@ const TOOLS = [
|
|
|
4820
4820
|
items: { type: "string" },
|
|
4821
4821
|
description: "Desired emotional states",
|
|
4822
4822
|
},
|
|
4823
|
-
|
|
4823
|
+
status: {
|
|
4824
|
+
type: "string",
|
|
4825
|
+
enum: ["ideation", "todo", "planned", "in_progress", "done"],
|
|
4826
|
+
description: "Vision lifecycle status",
|
|
4827
|
+
},
|
|
4824
4828
|
},
|
|
4825
4829
|
required: ["title", "description", "themes", "desiredFeelings"],
|
|
4826
4830
|
},
|
|
4827
4831
|
},
|
|
4832
|
+
{
|
|
4833
|
+
name: "set_ppv_vision_status",
|
|
4834
|
+
description: "Update a PPV vision lifecycle status.",
|
|
4835
|
+
inputSchema: {
|
|
4836
|
+
type: "object",
|
|
4837
|
+
properties: {
|
|
4838
|
+
userId: { type: "string", description: "Override user ID" },
|
|
4839
|
+
visionId: { type: "string", description: "PPV vision ID" },
|
|
4840
|
+
status: {
|
|
4841
|
+
type: "string",
|
|
4842
|
+
enum: ["ideation", "todo", "planned", "in_progress", "done"],
|
|
4843
|
+
description: "Vision lifecycle status",
|
|
4844
|
+
},
|
|
4845
|
+
},
|
|
4846
|
+
required: ["visionId", "status"],
|
|
4847
|
+
},
|
|
4848
|
+
},
|
|
4828
4849
|
{
|
|
4829
4850
|
name: "set_active_ppv_vision",
|
|
4830
|
-
description: "
|
|
4851
|
+
description: "Deprecated alias: move a PPV vision to in_progress without editing its content.",
|
|
4831
4852
|
inputSchema: {
|
|
4832
4853
|
type: "object",
|
|
4833
4854
|
properties: {
|
|
4834
4855
|
userId: { type: "string", description: "Override user ID" },
|
|
4835
|
-
visionId: {
|
|
4856
|
+
visionId: {
|
|
4857
|
+
type: "string",
|
|
4858
|
+
description: "PPV vision ID to move to in_progress",
|
|
4859
|
+
},
|
|
4836
4860
|
},
|
|
4837
4861
|
required: ["visionId"],
|
|
4838
4862
|
},
|
|
@@ -6566,6 +6590,8 @@ async function runDirectCliCommand(command) {
|
|
|
6566
6590
|
"vision-graph": "get_active_vision_graph",
|
|
6567
6591
|
seed: "seed_ppv_beijing_workspace",
|
|
6568
6592
|
vision: "upsert_ppv_vision",
|
|
6593
|
+
status: "set_ppv_vision_status",
|
|
6594
|
+
"set-status": "set_ppv_vision_status",
|
|
6569
6595
|
"activate-vision": "set_active_ppv_vision",
|
|
6570
6596
|
"set-active-vision": "set_active_ppv_vision",
|
|
6571
6597
|
identity: "upsert_ppv_identity",
|
package/package.json
CHANGED