@starascendin/lifeos-mcp 0.7.16 → 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.16";
2
- export declare const BUILD_TIME = "2026-02-21T03:17:47.042Z";
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.16";
3
- export const BUILD_TIME = "2026-02-21T03:17:47.042Z";
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"],
@@ -2572,8 +2572,8 @@ const TOOLS = [
2572
2572
  },
2573
2573
  // ==================== COACHING Tools ====================
2574
2574
  {
2575
- name: "get_coaching_profiles",
2576
- description: "List all AI coaching profiles (coach personas). Each profile defines a coaching methodology, focus areas, and which LifeOS tools the coach can use.",
2575
+ name: "get_coach_profile",
2576
+ description: "Get the strategic coach profile: durable context about who you are, your values, strengths, constraints, and current life season.",
2577
2577
  inputSchema: {
2578
2578
  type: "object",
2579
2579
  properties: {
@@ -2585,8 +2585,8 @@ const TOOLS = [
2585
2585
  },
2586
2586
  },
2587
2587
  {
2588
- name: "get_coaching_profile",
2589
- description: "Get a single coaching profile by ID or slug with full details including instructions and enabled tools.",
2588
+ name: "upsert_coach_profile",
2589
+ description: "Create or update the strategic coach profile. Use this when the coach learns durable truths that should persist across sessions.",
2590
2590
  inputSchema: {
2591
2591
  type: "object",
2592
2592
  properties: {
@@ -2594,81 +2594,94 @@ const TOOLS = [
2594
2594
  type: "string",
2595
2595
  description: "Override the default user ID (optional)",
2596
2596
  },
2597
- profileIdOrSlug: {
2597
+ preferredName: {
2598
2598
  type: "string",
2599
- description: "Profile ID or slug like 'executive-coach' (required)",
2599
+ description: "Preferred name or nickname (optional)",
2600
2600
  },
2601
- },
2602
- required: ["profileIdOrSlug"],
2603
- },
2604
- },
2605
- {
2606
- name: "create_coaching_profile",
2607
- description: "Create a new AI coaching profile with a unique slug, system prompt, focus areas, and tool access.",
2608
- inputSchema: {
2609
- type: "object",
2610
- properties: {
2611
- userId: {
2601
+ identitySummary: {
2612
2602
  type: "string",
2613
- description: "Override the default user ID (optional)",
2603
+ description: "Compact identity summary (optional)",
2614
2604
  },
2615
- name: {
2605
+ currentSeason: {
2616
2606
  type: "string",
2617
- description: "Coach display name (required)",
2607
+ description: "Current life season/context (optional)",
2618
2608
  },
2619
- slug: {
2609
+ strategicVision: {
2620
2610
  type: "string",
2621
- description: "Unique slug like 'executive-coach' (required)",
2611
+ description: "Current strategic life direction narrative (optional)",
2622
2612
  },
2623
- instructions: {
2624
- type: "string",
2625
- description: "System prompt / coaching methodology (required)",
2613
+ values: {
2614
+ type: "array",
2615
+ items: { type: "string" },
2616
+ description: "Core values list (optional)",
2626
2617
  },
2627
- focusAreas: {
2618
+ strengths: {
2628
2619
  type: "array",
2629
2620
  items: { type: "string" },
2630
- description: "Focus areas like ['career', 'leadership'] (required)",
2621
+ description: "Perceived strengths (optional)",
2631
2622
  },
2632
- enabledTools: {
2623
+ growthEdges: {
2633
2624
  type: "array",
2634
2625
  items: { type: "string" },
2635
- description: "LifeOS tool names this coach can use (required)",
2626
+ description: "Growth edges / development areas (optional)",
2636
2627
  },
2637
- model: {
2628
+ constraints: {
2629
+ type: "array",
2630
+ items: { type: "string" },
2631
+ description: "Active constraints and tradeoffs (optional)",
2632
+ },
2633
+ decisionHeuristics: {
2634
+ type: "array",
2635
+ items: { type: "string" },
2636
+ description: "Decision principles to use as guardrails (optional)",
2637
+ },
2638
+ motivationStyle: {
2638
2639
  type: "string",
2639
- description: "LLM model ID, e.g. 'anthropic/claude-sonnet-4-5-20250929' (required)",
2640
+ description: "How the user responds best to accountability/coaching (optional)",
2640
2641
  },
2641
- greeting: {
2642
+ coachingPreferences: {
2642
2643
  type: "string",
2643
- description: "Opening greeting for new sessions (optional)",
2644
+ description: "Preferred coaching style and boundaries (optional)",
2644
2645
  },
2645
- sessionCadence: {
2646
+ updatedBy: {
2646
2647
  type: "string",
2647
- enum: ["daily", "weekly", "biweekly", "monthly", "ad_hoc"],
2648
- description: "Suggested session cadence (optional)",
2648
+ enum: ["coach", "user", "system"],
2649
+ description: "Who is updating the profile (optional)",
2649
2650
  },
2650
- color: {
2651
+ },
2652
+ },
2653
+ },
2654
+ {
2655
+ name: "get_coach_diagnostics",
2656
+ description: "Get strategic diagnostic history (time-series assessments) so the coach can see patterns and trajectory over time.",
2657
+ inputSchema: {
2658
+ type: "object",
2659
+ properties: {
2660
+ userId: {
2651
2661
  type: "string",
2652
- description: "Hex color for UI (optional)",
2662
+ description: "Override the default user ID (optional)",
2653
2663
  },
2654
- icon: {
2664
+ assessmentType: {
2655
2665
  type: "string",
2656
- description: "Emoji icon (optional)",
2666
+ enum: [
2667
+ "baseline",
2668
+ "session_reflection",
2669
+ "weekly_review",
2670
+ "monthly_review",
2671
+ "pattern_alert",
2672
+ ],
2673
+ description: "Filter by diagnostic type (optional)",
2674
+ },
2675
+ limit: {
2676
+ type: "number",
2677
+ description: "Max results (default 20, max 100)",
2657
2678
  },
2658
2679
  },
2659
- required: [
2660
- "name",
2661
- "slug",
2662
- "instructions",
2663
- "focusAreas",
2664
- "enabledTools",
2665
- "model",
2666
- ],
2667
2680
  },
2668
2681
  },
2669
2682
  {
2670
- name: "update_coaching_profile",
2671
- description: "Update a coaching profile's settings.",
2683
+ name: "create_coach_diagnostic",
2684
+ description: "Create a strategic diagnostic snapshot. Use this to persist synthesized patterns, risks, opportunities, and strategic focus after coaching sessions.",
2672
2685
  inputSchema: {
2673
2686
  type: "object",
2674
2687
  properties: {
@@ -2676,69 +2689,70 @@ const TOOLS = [
2676
2689
  type: "string",
2677
2690
  description: "Override the default user ID (optional)",
2678
2691
  },
2679
- profileId: {
2692
+ sessionId: {
2680
2693
  type: "string",
2681
- description: "Coaching profile ID (required)",
2694
+ description: "Related coaching session ID (optional)",
2682
2695
  },
2683
- name: {
2696
+ assessmentType: {
2684
2697
  type: "string",
2685
- description: "Updated name (optional)",
2698
+ enum: [
2699
+ "baseline",
2700
+ "session_reflection",
2701
+ "weekly_review",
2702
+ "monthly_review",
2703
+ "pattern_alert",
2704
+ ],
2705
+ description: "Diagnostic type (required)",
2686
2706
  },
2687
- instructions: {
2707
+ title: {
2688
2708
  type: "string",
2689
- description: "Updated system prompt (optional)",
2709
+ description: "Diagnostic title (required)",
2690
2710
  },
2691
- focusAreas: {
2711
+ summary: {
2712
+ type: "string",
2713
+ description: "Diagnostic summary in markdown/plain text (required)",
2714
+ },
2715
+ confidence: {
2716
+ type: "number",
2717
+ description: "Confidence score, usually 0-100 (optional)",
2718
+ },
2719
+ keyPatterns: {
2692
2720
  type: "array",
2693
2721
  items: { type: "string" },
2694
- description: "Updated focus areas (optional)",
2722
+ description: "Key recurring patterns (optional)",
2695
2723
  },
2696
- enabledTools: {
2724
+ strengths: {
2697
2725
  type: "array",
2698
2726
  items: { type: "string" },
2699
- description: "Updated enabled tools (optional)",
2727
+ description: "Strengths surfaced in this diagnostic (optional)",
2700
2728
  },
2701
- model: {
2702
- type: "string",
2703
- description: "Updated model (optional)",
2704
- },
2705
- greeting: {
2706
- type: "string",
2707
- description: "Updated greeting (optional)",
2708
- },
2709
- sessionCadence: {
2710
- type: "string",
2711
- enum: ["daily", "weekly", "biweekly", "monthly", "ad_hoc"],
2712
- description: "Updated cadence (optional)",
2729
+ risks: {
2730
+ type: "array",
2731
+ items: { type: "string" },
2732
+ description: "Risks or derailers (optional)",
2713
2733
  },
2714
- color: {
2715
- type: "string",
2716
- description: "Updated color (optional)",
2734
+ opportunities: {
2735
+ type: "array",
2736
+ items: { type: "string" },
2737
+ description: "Opportunities to leverage (optional)",
2717
2738
  },
2718
- icon: {
2719
- type: "string",
2720
- description: "Updated icon (optional)",
2739
+ strategicFocus: {
2740
+ type: "array",
2741
+ items: { type: "string" },
2742
+ description: "Suggested focus areas for next horizon (optional)",
2721
2743
  },
2722
- },
2723
- required: ["profileId"],
2724
- },
2725
- },
2726
- {
2727
- name: "delete_coaching_profile",
2728
- description: "Delete a coaching profile and cascade-delete all related sessions and action items.",
2729
- inputSchema: {
2730
- type: "object",
2731
- properties: {
2732
- userId: {
2733
- type: "string",
2734
- description: "Override the default user ID (optional)",
2744
+ sourceNotes: {
2745
+ type: "array",
2746
+ items: { type: "string" },
2747
+ description: "Supporting citations/notes (optional)",
2735
2748
  },
2736
- profileId: {
2749
+ createdBy: {
2737
2750
  type: "string",
2738
- description: "Coaching profile ID to delete (required)",
2751
+ enum: ["coach", "user", "system"],
2752
+ description: "Who authored the diagnostic (optional)",
2739
2753
  },
2740
2754
  },
2741
- required: ["profileId"],
2755
+ required: ["assessmentType", "title", "summary"],
2742
2756
  },
2743
2757
  },
2744
2758
  {
@@ -3803,12 +3817,102 @@ const TOOLS = [
3803
3817
  // ==================== Life Direction Composite Tools ====================
3804
3818
  {
3805
3819
  name: "get_life_direction_summary",
3806
- description: "START HERE for any coaching or life direction session. Returns a comprehensive snapshot of the user's current life direction state in one call: North Stars (active/exploring visions), Pillars (core life areas with latest pulse ratings), active Curiosities (top 10), pending Action Items from coaching, and all Working Memory sections. This replaces the need to call get_north_stars, get_pillars, get_pillar_pulse_latest, get_curiosities, get_coaching_action_items, and get_working_memory separately.",
3820
+ description: "START HERE for strategic coaching. Returns a comprehensive snapshot in one call: North Stars, Pillars + pulse, active Curiosities, pending coaching action items, working memory sections, strategic coach profile, and recent diagnostics.",
3807
3821
  inputSchema: {
3808
3822
  type: "object",
3809
3823
  properties: {},
3810
3824
  },
3811
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
+ },
3812
3916
  {
3813
3917
  name: "create_coaching_session_summary",
3814
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.",
@@ -4213,12 +4317,12 @@ const PROMPTS = [
4213
4317
  },
4214
4318
  {
4215
4319
  name: "coaching-overview",
4216
- description: "Dashboard of coaching profiles, recent sessions, and pending action items across all coaches.",
4320
+ description: "Strategic coaching dashboard: profile state, recent diagnostics, session momentum, and active action items.",
4217
4321
  arguments: [],
4218
4322
  },
4219
4323
  {
4220
4324
  name: "coaching-action-items",
4221
- description: "Review and manage coaching action items across all coaches. Can mark items complete.",
4325
+ description: "Review and manage strategic coaching action items. Can mark items complete.",
4222
4326
  arguments: [
4223
4327
  {
4224
4328
  name: "action",
@@ -4229,7 +4333,7 @@ const PROMPTS = [
4229
4333
  },
4230
4334
  {
4231
4335
  name: "coaching-session-review",
4232
- description: "Deep-dive into a specific coaching session's summary, key insights, and action items.",
4336
+ description: "Deep-dive into a specific coaching session's summary, insights, and action plan.",
4233
4337
  arguments: [
4234
4338
  {
4235
4339
  name: "session",
@@ -4993,15 +5097,17 @@ Convert all amounts from cents to dollars. Format as currency.`,
4993
5097
  type: "text",
4994
5098
  text: `Show me a coaching dashboard. Use the LifeOS MCP tools:
4995
5099
 
4996
- 1. Call get_coaching_profiles to list all coach personas
4997
- 2. Call get_coaching_sessions with limit=10 for recent sessions across all coaches
4998
- 3. Call get_coaching_action_items with status "pending" for outstanding action items
5100
+ 1. Call get_coach_profile for durable profile context
5101
+ 2. Call get_coach_diagnostics with limit=5 for recent strategic assessments
5102
+ 3. Call get_coaching_sessions with limit=10 for recent session history
5103
+ 4. Call get_coaching_action_items with status "pending" for outstanding action items
4999
5104
 
5000
5105
  Present a coaching overview:
5001
- - **Coaches**: List each coach profile with name, focus areas, and session cadence
5002
- - **Recent Sessions**: Show recent sessions grouped by coach, with title, date, and status
5003
- - **Pending Action Items**: Count of pending items per coach, with the top 3 most urgent items shown
5004
- - **Insights**: Which coaches are most active, any overdue action items, suggested next sessions
5106
+ - **Profile**: Who the user is right now (season, values, strengths, constraints)
5107
+ - **Recent Diagnostics**: Main patterns, risks, opportunities, and strategic focus areas
5108
+ - **Session Momentum**: Recent session cadence and any gaps
5109
+ - **Pending Action Items**: Most urgent next actions and likely blockers
5110
+ - **Strategic Guidance**: What to focus on this week vs this month
5005
5111
 
5006
5112
  Keep it concise and actionable.`,
5007
5113
  },
@@ -5020,10 +5126,10 @@ Keep it concise and actionable.`,
5020
5126
  text: `Review my coaching action items. Use the LifeOS MCP tools:
5021
5127
 
5022
5128
  1. Call get_coaching_action_items to get all action items
5023
- 2. Call get_coaching_profiles to get coach names for grouping
5129
+ 2. Call get_coach_diagnostics with limit=3 to understand current strategic focus
5024
5130
 
5025
- Present action items grouped by coach:
5026
- - **Per Coach**: Show coach name, then list action items with status, priority, due date
5131
+ Present action items grouped by strategic theme:
5132
+ - **By Focus Area**: Group by likely strategic area based on item text + latest diagnostics
5027
5133
  - **Overdue**: Highlight any items past their due date
5028
5134
  - **Summary**: Total pending, in-progress, completed counts
5029
5135
  - **Suggestions**: Which items to prioritize next${actionClause}`,
@@ -5033,7 +5139,7 @@ Present action items grouped by coach:
5033
5139
  },
5034
5140
  "coaching-session-review": (args) => {
5035
5141
  const sessionClause = args.session
5036
- ? `Look up session: "${args.session}". If it looks like an ID, call get_coaching_session directly. If it looks like a coach slug, call get_coaching_profile first, then get_coaching_sessions filtered by that coach to find the most recent one.`
5142
+ ? `Look up session: "${args.session}". If it looks like an ID, call get_coaching_session directly. Otherwise call get_coaching_sessions with limit=10 and pick the closest title/date match.`
5037
5143
  : "Call get_coaching_sessions with limit=1 to get the most recent session.";
5038
5144
  return [
5039
5145
  {
@@ -5046,11 +5152,13 @@ Present action items grouped by coach:
5046
5152
  2. Call get_coaching_session with the session ID for full details including summary and action items
5047
5153
 
5048
5154
  Present a session review:
5049
- - **Session Info**: Coach name, date, duration, mood at start
5155
+ - **Session Info**: Date, duration, mood at start
5050
5156
  - **Summary**: The session's AI-generated summary
5051
5157
  - **Key Insights**: List all key insights from the session
5052
5158
  - **Action Items**: All action items with their current status
5053
- - **Follow-up**: Suggest what to discuss in the next session based on insights and pending items`,
5159
+ - **Follow-up**: Suggest what to discuss in the next session based on insights and pending items
5160
+
5161
+ If the session summary reveals a durable pattern shift, recommend creating a new diagnostic via create_coach_diagnostic.`,
5054
5162
  },
5055
5163
  },
5056
5164
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starascendin/lifeos-mcp",
3
- "version": "0.7.16",
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",