@starascendin/lifeos-mcp 0.7.16 → 0.7.17

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.17";
2
+ export declare const BUILD_TIME = "2026-02-21T15:55:59.051Z";
@@ -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.17";
3
+ export const BUILD_TIME = "2026-02-21T15:55:59.051Z";
package/dist/index.js CHANGED
@@ -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)",
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)",
2690
2718
  },
2691
- focusAreas: {
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,7 +3817,7 @@ 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: {},
@@ -4213,12 +4227,12 @@ const PROMPTS = [
4213
4227
  },
4214
4228
  {
4215
4229
  name: "coaching-overview",
4216
- description: "Dashboard of coaching profiles, recent sessions, and pending action items across all coaches.",
4230
+ description: "Strategic coaching dashboard: profile state, recent diagnostics, session momentum, and active action items.",
4217
4231
  arguments: [],
4218
4232
  },
4219
4233
  {
4220
4234
  name: "coaching-action-items",
4221
- description: "Review and manage coaching action items across all coaches. Can mark items complete.",
4235
+ description: "Review and manage strategic coaching action items. Can mark items complete.",
4222
4236
  arguments: [
4223
4237
  {
4224
4238
  name: "action",
@@ -4229,7 +4243,7 @@ const PROMPTS = [
4229
4243
  },
4230
4244
  {
4231
4245
  name: "coaching-session-review",
4232
- description: "Deep-dive into a specific coaching session's summary, key insights, and action items.",
4246
+ description: "Deep-dive into a specific coaching session's summary, insights, and action plan.",
4233
4247
  arguments: [
4234
4248
  {
4235
4249
  name: "session",
@@ -4993,15 +5007,17 @@ Convert all amounts from cents to dollars. Format as currency.`,
4993
5007
  type: "text",
4994
5008
  text: `Show me a coaching dashboard. Use the LifeOS MCP tools:
4995
5009
 
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
5010
+ 1. Call get_coach_profile for durable profile context
5011
+ 2. Call get_coach_diagnostics with limit=5 for recent strategic assessments
5012
+ 3. Call get_coaching_sessions with limit=10 for recent session history
5013
+ 4. Call get_coaching_action_items with status "pending" for outstanding action items
4999
5014
 
5000
5015
  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
5016
+ - **Profile**: Who the user is right now (season, values, strengths, constraints)
5017
+ - **Recent Diagnostics**: Main patterns, risks, opportunities, and strategic focus areas
5018
+ - **Session Momentum**: Recent session cadence and any gaps
5019
+ - **Pending Action Items**: Most urgent next actions and likely blockers
5020
+ - **Strategic Guidance**: What to focus on this week vs this month
5005
5021
 
5006
5022
  Keep it concise and actionable.`,
5007
5023
  },
@@ -5020,10 +5036,10 @@ Keep it concise and actionable.`,
5020
5036
  text: `Review my coaching action items. Use the LifeOS MCP tools:
5021
5037
 
5022
5038
  1. Call get_coaching_action_items to get all action items
5023
- 2. Call get_coaching_profiles to get coach names for grouping
5039
+ 2. Call get_coach_diagnostics with limit=3 to understand current strategic focus
5024
5040
 
5025
- Present action items grouped by coach:
5026
- - **Per Coach**: Show coach name, then list action items with status, priority, due date
5041
+ Present action items grouped by strategic theme:
5042
+ - **By Focus Area**: Group by likely strategic area based on item text + latest diagnostics
5027
5043
  - **Overdue**: Highlight any items past their due date
5028
5044
  - **Summary**: Total pending, in-progress, completed counts
5029
5045
  - **Suggestions**: Which items to prioritize next${actionClause}`,
@@ -5033,7 +5049,7 @@ Present action items grouped by coach:
5033
5049
  },
5034
5050
  "coaching-session-review": (args) => {
5035
5051
  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.`
5052
+ ? `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
5053
  : "Call get_coaching_sessions with limit=1 to get the most recent session.";
5038
5054
  return [
5039
5055
  {
@@ -5046,11 +5062,13 @@ Present action items grouped by coach:
5046
5062
  2. Call get_coaching_session with the session ID for full details including summary and action items
5047
5063
 
5048
5064
  Present a session review:
5049
- - **Session Info**: Coach name, date, duration, mood at start
5065
+ - **Session Info**: Date, duration, mood at start
5050
5066
  - **Summary**: The session's AI-generated summary
5051
5067
  - **Key Insights**: List all key insights from the session
5052
5068
  - **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`,
5069
+ - **Follow-up**: Suggest what to discuss in the next session based on insights and pending items
5070
+
5071
+ If the session summary reveals a durable pattern shift, recommend creating a new diagnostic via create_coach_diagnostic.`,
5054
5072
  },
5055
5073
  },
5056
5074
  ];
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.17",
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",