@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.
- package/dist/build-info.d.ts +2 -2
- package/dist/build-info.js +2 -2
- package/dist/index.js +129 -111
- package/package.json +1 -1
package/dist/build-info.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.7.
|
|
2
|
-
export declare const BUILD_TIME = "2026-02-
|
|
1
|
+
export declare const VERSION = "0.7.17";
|
|
2
|
+
export declare const BUILD_TIME = "2026-02-21T15:55:59.051Z";
|
package/dist/build-info.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// AUTO-GENERATED — do not edit. Regenerated on every build.
|
|
2
|
-
export const VERSION = "0.7.
|
|
3
|
-
export const BUILD_TIME = "2026-02-
|
|
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: "
|
|
2576
|
-
description: "
|
|
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: "
|
|
2589
|
-
description: "
|
|
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
|
-
|
|
2597
|
+
preferredName: {
|
|
2598
2598
|
type: "string",
|
|
2599
|
-
description: "
|
|
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: "
|
|
2603
|
+
description: "Compact identity summary (optional)",
|
|
2614
2604
|
},
|
|
2615
|
-
|
|
2605
|
+
currentSeason: {
|
|
2616
2606
|
type: "string",
|
|
2617
|
-
description: "
|
|
2607
|
+
description: "Current life season/context (optional)",
|
|
2618
2608
|
},
|
|
2619
|
-
|
|
2609
|
+
strategicVision: {
|
|
2620
2610
|
type: "string",
|
|
2621
|
-
description: "
|
|
2611
|
+
description: "Current strategic life direction narrative (optional)",
|
|
2622
2612
|
},
|
|
2623
|
-
|
|
2624
|
-
type: "
|
|
2625
|
-
|
|
2613
|
+
values: {
|
|
2614
|
+
type: "array",
|
|
2615
|
+
items: { type: "string" },
|
|
2616
|
+
description: "Core values list (optional)",
|
|
2626
2617
|
},
|
|
2627
|
-
|
|
2618
|
+
strengths: {
|
|
2628
2619
|
type: "array",
|
|
2629
2620
|
items: { type: "string" },
|
|
2630
|
-
description: "
|
|
2621
|
+
description: "Perceived strengths (optional)",
|
|
2631
2622
|
},
|
|
2632
|
-
|
|
2623
|
+
growthEdges: {
|
|
2633
2624
|
type: "array",
|
|
2634
2625
|
items: { type: "string" },
|
|
2635
|
-
description: "
|
|
2626
|
+
description: "Growth edges / development areas (optional)",
|
|
2636
2627
|
},
|
|
2637
|
-
|
|
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: "
|
|
2640
|
+
description: "How the user responds best to accountability/coaching (optional)",
|
|
2640
2641
|
},
|
|
2641
|
-
|
|
2642
|
+
coachingPreferences: {
|
|
2642
2643
|
type: "string",
|
|
2643
|
-
description: "
|
|
2644
|
+
description: "Preferred coaching style and boundaries (optional)",
|
|
2644
2645
|
},
|
|
2645
|
-
|
|
2646
|
+
updatedBy: {
|
|
2646
2647
|
type: "string",
|
|
2647
|
-
enum: ["
|
|
2648
|
-
description: "
|
|
2648
|
+
enum: ["coach", "user", "system"],
|
|
2649
|
+
description: "Who is updating the profile (optional)",
|
|
2649
2650
|
},
|
|
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: {
|
|
2651
2661
|
type: "string",
|
|
2652
|
-
description: "
|
|
2662
|
+
description: "Override the default user ID (optional)",
|
|
2653
2663
|
},
|
|
2654
|
-
|
|
2664
|
+
assessmentType: {
|
|
2655
2665
|
type: "string",
|
|
2656
|
-
|
|
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: "
|
|
2671
|
-
description: "
|
|
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
|
-
|
|
2692
|
+
sessionId: {
|
|
2680
2693
|
type: "string",
|
|
2681
|
-
description: "
|
|
2694
|
+
description: "Related coaching session ID (optional)",
|
|
2682
2695
|
},
|
|
2683
|
-
|
|
2696
|
+
assessmentType: {
|
|
2684
2697
|
type: "string",
|
|
2685
|
-
|
|
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
|
-
|
|
2707
|
+
title: {
|
|
2688
2708
|
type: "string",
|
|
2689
|
-
description: "
|
|
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
|
-
|
|
2719
|
+
keyPatterns: {
|
|
2692
2720
|
type: "array",
|
|
2693
2721
|
items: { type: "string" },
|
|
2694
|
-
description: "
|
|
2722
|
+
description: "Key recurring patterns (optional)",
|
|
2695
2723
|
},
|
|
2696
|
-
|
|
2724
|
+
strengths: {
|
|
2697
2725
|
type: "array",
|
|
2698
2726
|
items: { type: "string" },
|
|
2699
|
-
description: "
|
|
2727
|
+
description: "Strengths surfaced in this diagnostic (optional)",
|
|
2700
2728
|
},
|
|
2701
|
-
|
|
2702
|
-
type: "
|
|
2703
|
-
|
|
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
|
-
|
|
2715
|
-
type: "
|
|
2716
|
-
|
|
2734
|
+
opportunities: {
|
|
2735
|
+
type: "array",
|
|
2736
|
+
items: { type: "string" },
|
|
2737
|
+
description: "Opportunities to leverage (optional)",
|
|
2717
2738
|
},
|
|
2718
|
-
|
|
2719
|
-
type: "
|
|
2720
|
-
|
|
2739
|
+
strategicFocus: {
|
|
2740
|
+
type: "array",
|
|
2741
|
+
items: { type: "string" },
|
|
2742
|
+
description: "Suggested focus areas for next horizon (optional)",
|
|
2721
2743
|
},
|
|
2722
|
-
|
|
2723
|
-
|
|
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
|
-
|
|
2749
|
+
createdBy: {
|
|
2737
2750
|
type: "string",
|
|
2738
|
-
|
|
2751
|
+
enum: ["coach", "user", "system"],
|
|
2752
|
+
description: "Who authored the diagnostic (optional)",
|
|
2739
2753
|
},
|
|
2740
2754
|
},
|
|
2741
|
-
required: ["
|
|
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
|
|
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: "
|
|
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
|
|
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,
|
|
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
|
|
4997
|
-
2. Call
|
|
4998
|
-
3. Call
|
|
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
|
-
- **
|
|
5002
|
-
- **Recent
|
|
5003
|
-
- **
|
|
5004
|
-
- **
|
|
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
|
|
5039
|
+
2. Call get_coach_diagnostics with limit=3 to understand current strategic focus
|
|
5024
5040
|
|
|
5025
|
-
Present action items grouped by
|
|
5026
|
-
- **
|
|
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.
|
|
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**:
|
|
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