@starascendin/lifeos-mcp 0.7.17 → 0.7.18

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.17";
2
- export declare const BUILD_TIME = "2026-02-21T15:55:59.051Z";
1
+ export declare const VERSION = "0.7.18";
2
+ export declare const BUILD_TIME = "2026-02-21T20:20:18.777Z";
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED — do not edit. Regenerated on every build.
2
- export const VERSION = "0.7.17";
3
- export const BUILD_TIME = "2026-02-21T15:55:59.051Z";
2
+ export const VERSION = "0.7.18";
3
+ export const BUILD_TIME = "2026-02-21T20:20:18.777Z";
package/dist/index.js CHANGED
@@ -648,7 +648,7 @@ const TOOLS = [
648
648
  },
649
649
  model: {
650
650
  type: "string",
651
- description: "AI model to use (optional, default: openai/gpt-4o-mini)",
651
+ description: "AI model to use (optional, default: google/gemini-3-flash)",
652
652
  },
653
653
  },
654
654
  required: ["date"],
@@ -670,7 +670,7 @@ const TOOLS = [
670
670
  },
671
671
  model: {
672
672
  type: "string",
673
- description: "AI model to use (optional, default: openai/gpt-4o-mini)",
673
+ description: "AI model to use (optional, default: google/gemini-3-flash)",
674
674
  },
675
675
  },
676
676
  required: ["weekStartDate"],
@@ -692,7 +692,7 @@ const TOOLS = [
692
692
  },
693
693
  model: {
694
694
  type: "string",
695
- description: "AI model to use (optional, default: openai/gpt-4o-mini)",
695
+ description: "AI model to use (optional, default: google/gemini-3-flash)",
696
696
  },
697
697
  },
698
698
  required: ["monthStartDate"],
@@ -3823,6 +3823,96 @@ const TOOLS = [
3823
3823
  properties: {},
3824
3824
  },
3825
3825
  },
3826
+ {
3827
+ name: "get_latest_strategic_focus_snapshot",
3828
+ description: "Get the latest strategist snapshot with prioritized pillar moves and do-now queue for Life Navigator.",
3829
+ inputSchema: {
3830
+ type: "object",
3831
+ properties: {
3832
+ userId: {
3833
+ type: "string",
3834
+ description: "Override the default user ID (optional)",
3835
+ },
3836
+ limit: {
3837
+ type: "number",
3838
+ description: "Max strategic entries to return (default 12, max 50)",
3839
+ },
3840
+ },
3841
+ },
3842
+ },
3843
+ {
3844
+ name: "refresh_strategic_focus_snapshot",
3845
+ description: "Force AI regeneration of strategist moves and optionally return the fresh latest snapshot in one call.",
3846
+ inputSchema: {
3847
+ type: "object",
3848
+ properties: {
3849
+ userId: {
3850
+ type: "string",
3851
+ description: "Override the default user ID (optional)",
3852
+ },
3853
+ model: {
3854
+ type: "string",
3855
+ description: "Optional model override for regeneration (default: google/gemini-3-flash)",
3856
+ },
3857
+ includeLatest: {
3858
+ type: "boolean",
3859
+ description: "Whether to include latest snapshot payload in response (default: true)",
3860
+ },
3861
+ limit: {
3862
+ type: "number",
3863
+ description: "When includeLatest is true, max strategic entries to return (default 12, max 50)",
3864
+ },
3865
+ },
3866
+ },
3867
+ },
3868
+ {
3869
+ name: "update_pillar_ai_suggested_move",
3870
+ description: "Update one pillar AI suggested move inside the latest strategic focus snapshot (without regenerating every pillar).",
3871
+ inputSchema: {
3872
+ type: "object",
3873
+ properties: {
3874
+ userId: {
3875
+ type: "string",
3876
+ description: "Override the default user ID (optional)",
3877
+ },
3878
+ pillarIdOrSlug: {
3879
+ type: "string",
3880
+ description: "Pillar ID or slug like 'social' (required)",
3881
+ },
3882
+ firstMove: {
3883
+ type: "string",
3884
+ description: "Executable move text to store for this pillar (required)",
3885
+ },
3886
+ focusText: {
3887
+ type: "string",
3888
+ description: "Optional broader focus text (defaults to firstMove)",
3889
+ },
3890
+ whyNow: {
3891
+ type: "string",
3892
+ description: "Optional why-now rationale",
3893
+ },
3894
+ doneWhen: {
3895
+ type: "string",
3896
+ description: "Optional completion criteria text",
3897
+ },
3898
+ evidence: {
3899
+ type: "array",
3900
+ items: { type: "string" },
3901
+ description: "Optional supporting evidence strings",
3902
+ },
3903
+ status: {
3904
+ type: "string",
3905
+ enum: ["pending", "in_progress", "completed", "deferred"],
3906
+ description: "Optional move status",
3907
+ },
3908
+ createIfMissing: {
3909
+ type: "boolean",
3910
+ description: "Create a new entry if this pillar doesn't exist in latest snapshot (default: true)",
3911
+ },
3912
+ },
3913
+ required: ["pillarIdOrSlug", "firstMove"],
3914
+ },
3915
+ },
3826
3916
  {
3827
3917
  name: "create_coaching_session_summary",
3828
3918
  description: "Record a completed coaching conversation summary from an external AI agent. Creates a coaching session record with summary, key insights, and action items in one call — without going through the interactive session flow. Use this after an AI coaching conversation to persist the session and any action items that emerged.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starascendin/lifeos-mcp",
3
- "version": "0.7.17",
3
+ "version": "0.7.18",
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",