@starascendin/lifeos-mcp 0.7.18 → 0.7.20

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.18";
2
- export declare const BUILD_TIME = "2026-02-21T20:20:18.777Z";
1
+ export declare const VERSION = "0.7.20";
2
+ export declare const BUILD_TIME = "2026-02-21T21:33:04.388Z";
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED — do not edit. Regenerated on every build.
2
- export const VERSION = "0.7.18";
3
- export const BUILD_TIME = "2026-02-21T20:20:18.777Z";
2
+ export const VERSION = "0.7.20";
3
+ export const BUILD_TIME = "2026-02-21T21:33:04.388Z";
package/dist/index.js CHANGED
@@ -2570,354 +2570,6 @@ const TOOLS = [
2570
2570
  },
2571
2571
  },
2572
2572
  },
2573
- // ==================== COACHING Tools ====================
2574
- {
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
- inputSchema: {
2578
- type: "object",
2579
- properties: {
2580
- userId: {
2581
- type: "string",
2582
- description: "Override the default user ID (optional)",
2583
- },
2584
- },
2585
- },
2586
- },
2587
- {
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
- inputSchema: {
2591
- type: "object",
2592
- properties: {
2593
- userId: {
2594
- type: "string",
2595
- description: "Override the default user ID (optional)",
2596
- },
2597
- preferredName: {
2598
- type: "string",
2599
- description: "Preferred name or nickname (optional)",
2600
- },
2601
- identitySummary: {
2602
- type: "string",
2603
- description: "Compact identity summary (optional)",
2604
- },
2605
- currentSeason: {
2606
- type: "string",
2607
- description: "Current life season/context (optional)",
2608
- },
2609
- strategicVision: {
2610
- type: "string",
2611
- description: "Current strategic life direction narrative (optional)",
2612
- },
2613
- values: {
2614
- type: "array",
2615
- items: { type: "string" },
2616
- description: "Core values list (optional)",
2617
- },
2618
- strengths: {
2619
- type: "array",
2620
- items: { type: "string" },
2621
- description: "Perceived strengths (optional)",
2622
- },
2623
- growthEdges: {
2624
- type: "array",
2625
- items: { type: "string" },
2626
- description: "Growth edges / development areas (optional)",
2627
- },
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: {
2639
- type: "string",
2640
- description: "How the user responds best to accountability/coaching (optional)",
2641
- },
2642
- coachingPreferences: {
2643
- type: "string",
2644
- description: "Preferred coaching style and boundaries (optional)",
2645
- },
2646
- updatedBy: {
2647
- type: "string",
2648
- enum: ["coach", "user", "system"],
2649
- description: "Who is updating the profile (optional)",
2650
- },
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: {
2661
- type: "string",
2662
- description: "Override the default user ID (optional)",
2663
- },
2664
- assessmentType: {
2665
- type: "string",
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)",
2678
- },
2679
- },
2680
- },
2681
- },
2682
- {
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.",
2685
- inputSchema: {
2686
- type: "object",
2687
- properties: {
2688
- userId: {
2689
- type: "string",
2690
- description: "Override the default user ID (optional)",
2691
- },
2692
- sessionId: {
2693
- type: "string",
2694
- description: "Related coaching session ID (optional)",
2695
- },
2696
- assessmentType: {
2697
- type: "string",
2698
- enum: [
2699
- "baseline",
2700
- "session_reflection",
2701
- "weekly_review",
2702
- "monthly_review",
2703
- "pattern_alert",
2704
- ],
2705
- description: "Diagnostic type (required)",
2706
- },
2707
- title: {
2708
- type: "string",
2709
- description: "Diagnostic title (required)",
2710
- },
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: {
2720
- type: "array",
2721
- items: { type: "string" },
2722
- description: "Key recurring patterns (optional)",
2723
- },
2724
- strengths: {
2725
- type: "array",
2726
- items: { type: "string" },
2727
- description: "Strengths surfaced in this diagnostic (optional)",
2728
- },
2729
- risks: {
2730
- type: "array",
2731
- items: { type: "string" },
2732
- description: "Risks or derailers (optional)",
2733
- },
2734
- opportunities: {
2735
- type: "array",
2736
- items: { type: "string" },
2737
- description: "Opportunities to leverage (optional)",
2738
- },
2739
- strategicFocus: {
2740
- type: "array",
2741
- items: { type: "string" },
2742
- description: "Suggested focus areas for next horizon (optional)",
2743
- },
2744
- sourceNotes: {
2745
- type: "array",
2746
- items: { type: "string" },
2747
- description: "Supporting citations/notes (optional)",
2748
- },
2749
- createdBy: {
2750
- type: "string",
2751
- enum: ["coach", "user", "system"],
2752
- description: "Who authored the diagnostic (optional)",
2753
- },
2754
- },
2755
- required: ["assessmentType", "title", "summary"],
2756
- },
2757
- },
2758
- {
2759
- name: "get_coaching_sessions",
2760
- description: "List coaching sessions, optionally filtered by coach profile or status. Returns session summaries, titles, and timing.",
2761
- inputSchema: {
2762
- type: "object",
2763
- properties: {
2764
- userId: {
2765
- type: "string",
2766
- description: "Override the default user ID (optional)",
2767
- },
2768
- coachProfileId: {
2769
- type: "string",
2770
- description: "Filter by coaching profile ID (optional)",
2771
- },
2772
- status: {
2773
- type: "string",
2774
- enum: ["active", "summarizing", "completed"],
2775
- description: "Filter by session status (optional)",
2776
- },
2777
- limit: {
2778
- type: "number",
2779
- description: "Max results (default 20, max 100)",
2780
- },
2781
- },
2782
- },
2783
- },
2784
- {
2785
- name: "get_coaching_session",
2786
- description: "Get a single coaching session with full details: summary, key insights, and action items generated during the session.",
2787
- inputSchema: {
2788
- type: "object",
2789
- properties: {
2790
- userId: {
2791
- type: "string",
2792
- description: "Override the default user ID (optional)",
2793
- },
2794
- sessionId: {
2795
- type: "string",
2796
- description: "Coaching session ID (required)",
2797
- },
2798
- },
2799
- required: ["sessionId"],
2800
- },
2801
- },
2802
- {
2803
- name: "get_coaching_action_items",
2804
- description: "List coaching action items across all coaches or filtered by coach/status. Shows text, priority, due dates, and completion status.",
2805
- inputSchema: {
2806
- type: "object",
2807
- properties: {
2808
- userId: {
2809
- type: "string",
2810
- description: "Override the default user ID (optional)",
2811
- },
2812
- coachProfileId: {
2813
- type: "string",
2814
- description: "Filter by coaching profile ID (optional)",
2815
- },
2816
- status: {
2817
- type: "string",
2818
- enum: ["pending", "in_progress", "completed", "cancelled"],
2819
- description: "Filter by status (optional)",
2820
- },
2821
- limit: {
2822
- type: "number",
2823
- description: "Max results (default 50, max 100)",
2824
- },
2825
- },
2826
- },
2827
- },
2828
- {
2829
- name: "create_coaching_action_item",
2830
- description: "Create a new coaching action item linked to a session and coach profile.",
2831
- inputSchema: {
2832
- type: "object",
2833
- properties: {
2834
- userId: {
2835
- type: "string",
2836
- description: "Override the default user ID (optional)",
2837
- },
2838
- sessionId: {
2839
- type: "string",
2840
- description: "Coaching session ID that created this item (required)",
2841
- },
2842
- coachProfileId: {
2843
- type: "string",
2844
- description: "Coaching profile ID (required)",
2845
- },
2846
- text: {
2847
- type: "string",
2848
- description: "Action item text (required)",
2849
- },
2850
- priority: {
2851
- type: "string",
2852
- enum: ["high", "medium", "low"],
2853
- description: "Priority level (optional)",
2854
- },
2855
- dueDate: {
2856
- type: "string",
2857
- description: "Due date in ISO format (optional)",
2858
- },
2859
- },
2860
- required: ["sessionId", "coachProfileId", "text"],
2861
- },
2862
- },
2863
- {
2864
- name: "update_coaching_action_item",
2865
- description: "Update a coaching action item's text, status, priority, due date, or notes.",
2866
- inputSchema: {
2867
- type: "object",
2868
- properties: {
2869
- userId: {
2870
- type: "string",
2871
- description: "Override the default user ID (optional)",
2872
- },
2873
- actionItemId: {
2874
- type: "string",
2875
- description: "Action item ID (required)",
2876
- },
2877
- text: {
2878
- type: "string",
2879
- description: "Updated text (optional)",
2880
- },
2881
- status: {
2882
- type: "string",
2883
- enum: ["pending", "in_progress", "completed", "cancelled"],
2884
- description: "Updated status (optional)",
2885
- },
2886
- priority: {
2887
- type: "string",
2888
- enum: ["high", "medium", "low"],
2889
- description: "Updated priority (optional)",
2890
- },
2891
- dueDate: {
2892
- type: "string",
2893
- description: "Updated due date in ISO format (optional)",
2894
- },
2895
- notes: {
2896
- type: "string",
2897
- description: "Additional notes (optional)",
2898
- },
2899
- },
2900
- required: ["actionItemId"],
2901
- },
2902
- },
2903
- {
2904
- name: "delete_coaching_action_item",
2905
- description: "Delete a coaching action item.",
2906
- inputSchema: {
2907
- type: "object",
2908
- properties: {
2909
- userId: {
2910
- type: "string",
2911
- description: "Override the default user ID (optional)",
2912
- },
2913
- actionItemId: {
2914
- type: "string",
2915
- description: "Action item ID to delete (required)",
2916
- },
2917
- },
2918
- required: ["actionItemId"],
2919
- },
2920
- },
2921
2573
  // ==================== LIFE DIRECTION: PILLARS ====================
2922
2574
  {
2923
2575
  name: "get_pillars",
@@ -3464,74 +3116,6 @@ const TOOLS = [
3464
3116
  required: ["northStarId"],
3465
3117
  },
3466
3118
  },
3467
- // ==================== LIFE DIRECTION: COACH WORKING MEMORY ====================
3468
- {
3469
- name: "get_working_memory",
3470
- description: "Get the coach's persistent working memory about the user. This is accumulated knowledge organized by sections: core_struggles, values, triggers, breakthroughs, personality, communication_style, patterns, energy_sources, relationships, context. The coach should read this at the start of every session.",
3471
- inputSchema: {
3472
- type: "object",
3473
- properties: {
3474
- userId: {
3475
- type: "string",
3476
- description: "Override the default user ID (optional)",
3477
- },
3478
- section: {
3479
- type: "string",
3480
- enum: [
3481
- "core_struggles",
3482
- "values",
3483
- "triggers",
3484
- "breakthroughs",
3485
- "personality",
3486
- "communication_style",
3487
- "patterns",
3488
- "energy_sources",
3489
- "relationships",
3490
- "context",
3491
- ],
3492
- description: "Get a specific section only (optional, returns all if omitted)",
3493
- },
3494
- },
3495
- },
3496
- },
3497
- {
3498
- name: "update_working_memory",
3499
- description: "Update a section of the coach's working memory. This is an upsert — creates the section if it doesn't exist, updates it if it does. The coach should update this when it learns something meaningful about the user during a session. Content should be markdown. Only update sections where you have genuine new insight.",
3500
- inputSchema: {
3501
- type: "object",
3502
- properties: {
3503
- userId: {
3504
- type: "string",
3505
- description: "Override the default user ID (optional)",
3506
- },
3507
- section: {
3508
- type: "string",
3509
- enum: [
3510
- "core_struggles",
3511
- "values",
3512
- "triggers",
3513
- "breakthroughs",
3514
- "personality",
3515
- "communication_style",
3516
- "patterns",
3517
- "energy_sources",
3518
- "relationships",
3519
- "context",
3520
- ],
3521
- description: "Which section to update (required)",
3522
- },
3523
- content: {
3524
- type: "string",
3525
- description: "The updated content for this section in markdown. Should be cumulative — include previous knowledge plus new insights (required)",
3526
- },
3527
- confidence: {
3528
- type: "number",
3529
- description: "How confident the coach is in this assessment, 0-100 (optional)",
3530
- },
3531
- },
3532
- required: ["section", "content"],
3533
- },
3534
- },
3535
3119
  // ==================== HABIT TRACKER ====================
3536
3120
  {
3537
3121
  name: "get_habits",
@@ -3817,156 +3401,12 @@ const TOOLS = [
3817
3401
  // ==================== Life Direction Composite Tools ====================
3818
3402
  {
3819
3403
  name: "get_life_direction_summary",
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.",
3404
+ description: "START HERE for life direction overview. Returns a comprehensive snapshot in one call: North Stars, Pillars + pulse, and active Curiosities.",
3821
3405
  inputSchema: {
3822
3406
  type: "object",
3823
3407
  properties: {},
3824
3408
  },
3825
3409
  },
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
- },
3916
- {
3917
- name: "create_coaching_session_summary",
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.",
3919
- inputSchema: {
3920
- type: "object",
3921
- properties: {
3922
- coachProfileId: {
3923
- type: "string",
3924
- description: "Coach profile ID (optional — will use coachSlug or default profile if omitted)",
3925
- },
3926
- coachSlug: {
3927
- type: "string",
3928
- description: "Coach profile slug like 'life-coach' (optional — used if coachProfileId not provided)",
3929
- },
3930
- title: {
3931
- type: "string",
3932
- description: "Session title summarizing the conversation topic",
3933
- },
3934
- summary: {
3935
- type: "string",
3936
- description: "Full summary of the coaching conversation in markdown",
3937
- },
3938
- keyInsights: {
3939
- type: "array",
3940
- items: { type: "string" },
3941
- description: "Key insights that emerged during the conversation",
3942
- },
3943
- moodAtStart: {
3944
- type: "string",
3945
- description: "User's mood/energy at the start of the conversation (optional)",
3946
- },
3947
- actionItems: {
3948
- type: "array",
3949
- items: {
3950
- type: "object",
3951
- properties: {
3952
- text: {
3953
- type: "string",
3954
- description: "The action item text",
3955
- },
3956
- priority: {
3957
- type: "string",
3958
- enum: ["high", "medium", "low"],
3959
- description: "Priority level (optional, default: none)",
3960
- },
3961
- },
3962
- required: ["text"],
3963
- },
3964
- description: "Action items that emerged from the conversation",
3965
- },
3966
- },
3967
- required: ["title", "summary"],
3968
- },
3969
- },
3970
3410
  // ==================== LLM Council Tools ====================
3971
3411
  {
3972
3412
  name: "llm_council_deliberate",
@@ -4315,33 +3755,6 @@ const PROMPTS = [
4315
3755
  },
4316
3756
  ],
4317
3757
  },
4318
- {
4319
- name: "coaching-overview",
4320
- description: "Strategic coaching dashboard: profile state, recent diagnostics, session momentum, and active action items.",
4321
- arguments: [],
4322
- },
4323
- {
4324
- name: "coaching-action-items",
4325
- description: "Review and manage strategic coaching action items. Can mark items complete.",
4326
- arguments: [
4327
- {
4328
- name: "action",
4329
- description: "Optional: 'complete <item reference>' to mark an action item as done",
4330
- required: false,
4331
- },
4332
- ],
4333
- },
4334
- {
4335
- name: "coaching-session-review",
4336
- description: "Deep-dive into a specific coaching session's summary, insights, and action plan.",
4337
- arguments: [
4338
- {
4339
- name: "session",
4340
- description: "Session ID or coach slug to find the most recent session (optional, defaults to most recent)",
4341
- required: false,
4342
- },
4343
- ],
4344
- },
4345
3758
  {
4346
3759
  name: "habit-check",
4347
3760
  description: "Daily habit check-in: review today's habits, mark completions, celebrate streaks.",
@@ -5089,80 +4502,6 @@ Convert all amounts from cents to dollars. Format as currency.`,
5089
4502
  },
5090
4503
  ];
5091
4504
  },
5092
- "coaching-overview": () => {
5093
- return [
5094
- {
5095
- role: "user",
5096
- content: {
5097
- type: "text",
5098
- text: `Show me a coaching dashboard. Use the LifeOS MCP tools:
5099
-
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
5104
-
5105
- Present a coaching overview:
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
5111
-
5112
- Keep it concise and actionable.`,
5113
- },
5114
- },
5115
- ];
5116
- },
5117
- "coaching-action-items": (args) => {
5118
- const actionClause = args.action
5119
- ? `\n\nThe user wants to: ${args.action}. If this references completing an item, call update_coaching_action_item with status "completed".`
5120
- : "";
5121
- return [
5122
- {
5123
- role: "user",
5124
- content: {
5125
- type: "text",
5126
- text: `Review my coaching action items. Use the LifeOS MCP tools:
5127
-
5128
- 1. Call get_coaching_action_items to get all action items
5129
- 2. Call get_coach_diagnostics with limit=3 to understand current strategic focus
5130
-
5131
- Present action items grouped by strategic theme:
5132
- - **By Focus Area**: Group by likely strategic area based on item text + latest diagnostics
5133
- - **Overdue**: Highlight any items past their due date
5134
- - **Summary**: Total pending, in-progress, completed counts
5135
- - **Suggestions**: Which items to prioritize next${actionClause}`,
5136
- },
5137
- },
5138
- ];
5139
- },
5140
- "coaching-session-review": (args) => {
5141
- const sessionClause = args.session
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.`
5143
- : "Call get_coaching_sessions with limit=1 to get the most recent session.";
5144
- return [
5145
- {
5146
- role: "user",
5147
- content: {
5148
- type: "text",
5149
- text: `Review a coaching session in depth. Use the LifeOS MCP tools:
5150
-
5151
- 1. ${sessionClause}
5152
- 2. Call get_coaching_session with the session ID for full details including summary and action items
5153
-
5154
- Present a session review:
5155
- - **Session Info**: Date, duration, mood at start
5156
- - **Summary**: The session's AI-generated summary
5157
- - **Key Insights**: List all key insights from the session
5158
- - **Action Items**: All action items with their current status
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.`,
5162
- },
5163
- },
5164
- ];
5165
- },
5166
4505
  "habit-check": (args) => {
5167
4506
  const habitsClause = args.habits
5168
4507
  ? `The user wants to check in these specific habits: ${args.habits}. Use check_in_habit to mark them as completed.`
@@ -5206,7 +4545,6 @@ Tone: Direct, accountability-focused. Celebrate completed habits, flag pending o
5206
4545
  3. HEALTH: Call get_health_sleep, get_health_readiness, get_health_activity (1 day each) for Oura Ring data
5207
4546
  4. AGENDA: Call get_daily_agenda for today's schedule and tasks
5208
4547
  5. INITIATIVES: Call get_initiatives to check yearly goal progress
5209
- 6. ACTION ITEMS: Call get_coaching_action_items for pending coaching items
5210
4548
 
5211
4549
  ${dateClause}
5212
4550
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starascendin/lifeos-mcp",
3
- "version": "0.7.18",
3
+ "version": "0.7.20",
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",