@starascendin/lifeos-mcp 0.7.65 → 0.7.67
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 +33 -4
- 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.67";
|
|
2
|
+
export declare const BUILD_TIME = "2026-05-17T16:11:21.616Z";
|
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.67";
|
|
3
|
+
export const BUILD_TIME = "2026-05-17T16:11:21.616Z";
|
package/dist/index.js
CHANGED
|
@@ -4900,6 +4900,30 @@ const TOOLS = [
|
|
|
4900
4900
|
required: ["visionId"],
|
|
4901
4901
|
},
|
|
4902
4902
|
},
|
|
4903
|
+
{
|
|
4904
|
+
name: "archive_ppv_vision",
|
|
4905
|
+
description: "Archive a PPV vision and automatically move active status to another remaining vision if needed.",
|
|
4906
|
+
inputSchema: {
|
|
4907
|
+
type: "object",
|
|
4908
|
+
properties: {
|
|
4909
|
+
userId: { type: "string", description: "Override user ID" },
|
|
4910
|
+
visionId: { type: "string", description: "PPV vision ID to archive" },
|
|
4911
|
+
},
|
|
4912
|
+
required: ["visionId"],
|
|
4913
|
+
},
|
|
4914
|
+
},
|
|
4915
|
+
{
|
|
4916
|
+
name: "delete_ppv_vision",
|
|
4917
|
+
description: "Delete a PPV vision and cascade-delete its identity, pillars, weekly actions, reflections, and adjustments.",
|
|
4918
|
+
inputSchema: {
|
|
4919
|
+
type: "object",
|
|
4920
|
+
properties: {
|
|
4921
|
+
userId: { type: "string", description: "Override user ID" },
|
|
4922
|
+
visionId: { type: "string", description: "PPV vision ID to delete" },
|
|
4923
|
+
},
|
|
4924
|
+
required: ["visionId"],
|
|
4925
|
+
},
|
|
4926
|
+
},
|
|
4903
4927
|
{
|
|
4904
4928
|
name: "upsert_ppv_identity",
|
|
4905
4929
|
description: "Create or update the identity that naturally lives a PPV vision.",
|
|
@@ -5594,10 +5618,13 @@ Use the LifeOS MCP PPV tools:
|
|
|
5594
5618
|
2. If there is no vision and the user wants the example, call seed_ppv_beijing_workspace.
|
|
5595
5619
|
3. For vision changes, call upsert_ppv_vision.
|
|
5596
5620
|
4. If the user wants to change a vision lifecycle without editing content, call set_ppv_vision_status.
|
|
5597
|
-
5.
|
|
5598
|
-
6.
|
|
5599
|
-
7.
|
|
5600
|
-
8. For
|
|
5621
|
+
5. If the user wants to switch between existing visions without editing content, call set_active_ppv_vision.
|
|
5622
|
+
6. If the user wants to hide a vision but preserve its record, call archive_ppv_vision.
|
|
5623
|
+
7. If the user wants to permanently remove a vision and its PPV subcomponents, call delete_ppv_vision.
|
|
5624
|
+
8. For identity work, call upsert_ppv_identity.
|
|
5625
|
+
9. For pillars, call create_ppv_pillar or update_ppv_pillar. Link only existing LifeOS project IDs from get_ppv_workspace.projects.
|
|
5626
|
+
10. For execution, call create_ppv_weekly_action or update_ppv_weekly_action.
|
|
5627
|
+
11. For learning loops, call create_ppv_reflection and create_ppv_adjustment.
|
|
5601
5628
|
|
|
5602
5629
|
Keep the system simple:
|
|
5603
5630
|
- Vision is directional and experiential, not a task list.
|
|
@@ -6633,6 +6660,8 @@ async function runDirectCliCommand(command) {
|
|
|
6633
6660
|
"set-status": "set_ppv_vision_status",
|
|
6634
6661
|
"activate-vision": "set_active_ppv_vision",
|
|
6635
6662
|
"set-active-vision": "set_active_ppv_vision",
|
|
6663
|
+
"archive-vision": "archive_ppv_vision",
|
|
6664
|
+
"delete-vision": "delete_ppv_vision",
|
|
6636
6665
|
identity: "upsert_ppv_identity",
|
|
6637
6666
|
pillar: "create_ppv_pillar",
|
|
6638
6667
|
"update-pillar": "update_ppv_pillar",
|
package/package.json
CHANGED