@starascendin/lifeos-mcp 0.7.65 → 0.7.66

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.
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.7.65";
2
- export declare const BUILD_TIME = "2026-05-17T14:10:05.245Z";
1
+ export declare const VERSION = "0.7.66";
2
+ export declare const BUILD_TIME = "2026-05-17T15:34:44.520Z";
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED — do not edit. Regenerated on every build.
2
- export const VERSION = "0.7.65";
3
- export const BUILD_TIME = "2026-05-17T14:10:05.245Z";
2
+ export const VERSION = "0.7.66";
3
+ export const BUILD_TIME = "2026-05-17T15:34:44.520Z";
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. For identity changes, call upsert_ppv_identity.
5598
- 6. For pillars, call create_ppv_pillar or update_ppv_pillar. Link only existing LifeOS project IDs from get_ppv_workspace.projects.
5599
- 7. For execution, call create_ppv_weekly_action or update_ppv_weekly_action.
5600
- 8. For learning loops, call create_ppv_reflection and create_ppv_adjustment.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starascendin/lifeos-mcp",
3
- "version": "0.7.65",
3
+ "version": "0.7.66",
4
4
  "description": "MCP server for LifeOS Project Management - manage projects, tasks, notes, and contacts via AI assistants",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",