@starascendin/lifeos-mcp 0.7.12 → 0.7.14
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 +81 -0
- 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-20T20:
|
|
1
|
+
export declare const VERSION = "0.7.14";
|
|
2
|
+
export declare const BUILD_TIME = "2026-02-20T20:56:47.104Z";
|
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-20T20:
|
|
2
|
+
export const VERSION = "0.7.14";
|
|
3
|
+
export const BUILD_TIME = "2026-02-20T20:56:47.104Z";
|
package/dist/index.js
CHANGED
|
@@ -3432,6 +3432,24 @@ const TOOLS = [
|
|
|
3432
3432
|
required: ["northStarId"],
|
|
3433
3433
|
},
|
|
3434
3434
|
},
|
|
3435
|
+
{
|
|
3436
|
+
name: "get_north_star_revisions",
|
|
3437
|
+
description: "Get the revision history for a North Star vision. Each revision is a full snapshot of the previous state before an update was made. Use this to see how a vision has evolved over time.",
|
|
3438
|
+
inputSchema: {
|
|
3439
|
+
type: "object",
|
|
3440
|
+
properties: {
|
|
3441
|
+
userId: {
|
|
3442
|
+
type: "string",
|
|
3443
|
+
description: "Override the default user ID (optional)",
|
|
3444
|
+
},
|
|
3445
|
+
northStarId: {
|
|
3446
|
+
type: "string",
|
|
3447
|
+
description: "North Star ID (required)",
|
|
3448
|
+
},
|
|
3449
|
+
},
|
|
3450
|
+
required: ["northStarId"],
|
|
3451
|
+
},
|
|
3452
|
+
},
|
|
3435
3453
|
// ==================== LIFE DIRECTION: COACH WORKING MEMORY ====================
|
|
3436
3454
|
{
|
|
3437
3455
|
name: "get_working_memory",
|
|
@@ -3782,6 +3800,69 @@ const TOOLS = [
|
|
|
3782
3800
|
},
|
|
3783
3801
|
},
|
|
3784
3802
|
},
|
|
3803
|
+
// ==================== Life Direction Composite Tools ====================
|
|
3804
|
+
{
|
|
3805
|
+
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.",
|
|
3807
|
+
inputSchema: {
|
|
3808
|
+
type: "object",
|
|
3809
|
+
properties: {},
|
|
3810
|
+
},
|
|
3811
|
+
},
|
|
3812
|
+
{
|
|
3813
|
+
name: "create_coaching_session_summary",
|
|
3814
|
+
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.",
|
|
3815
|
+
inputSchema: {
|
|
3816
|
+
type: "object",
|
|
3817
|
+
properties: {
|
|
3818
|
+
coachProfileId: {
|
|
3819
|
+
type: "string",
|
|
3820
|
+
description: "Coach profile ID (optional — will use coachSlug or default profile if omitted)",
|
|
3821
|
+
},
|
|
3822
|
+
coachSlug: {
|
|
3823
|
+
type: "string",
|
|
3824
|
+
description: "Coach profile slug like 'life-coach' (optional — used if coachProfileId not provided)",
|
|
3825
|
+
},
|
|
3826
|
+
title: {
|
|
3827
|
+
type: "string",
|
|
3828
|
+
description: "Session title summarizing the conversation topic",
|
|
3829
|
+
},
|
|
3830
|
+
summary: {
|
|
3831
|
+
type: "string",
|
|
3832
|
+
description: "Full summary of the coaching conversation in markdown",
|
|
3833
|
+
},
|
|
3834
|
+
keyInsights: {
|
|
3835
|
+
type: "array",
|
|
3836
|
+
items: { type: "string" },
|
|
3837
|
+
description: "Key insights that emerged during the conversation",
|
|
3838
|
+
},
|
|
3839
|
+
moodAtStart: {
|
|
3840
|
+
type: "string",
|
|
3841
|
+
description: "User's mood/energy at the start of the conversation (optional)",
|
|
3842
|
+
},
|
|
3843
|
+
actionItems: {
|
|
3844
|
+
type: "array",
|
|
3845
|
+
items: {
|
|
3846
|
+
type: "object",
|
|
3847
|
+
properties: {
|
|
3848
|
+
text: {
|
|
3849
|
+
type: "string",
|
|
3850
|
+
description: "The action item text",
|
|
3851
|
+
},
|
|
3852
|
+
priority: {
|
|
3853
|
+
type: "string",
|
|
3854
|
+
enum: ["high", "medium", "low"],
|
|
3855
|
+
description: "Priority level (optional, default: none)",
|
|
3856
|
+
},
|
|
3857
|
+
},
|
|
3858
|
+
required: ["text"],
|
|
3859
|
+
},
|
|
3860
|
+
description: "Action items that emerged from the conversation",
|
|
3861
|
+
},
|
|
3862
|
+
},
|
|
3863
|
+
required: ["title", "summary"],
|
|
3864
|
+
},
|
|
3865
|
+
},
|
|
3785
3866
|
// MCP Server Info
|
|
3786
3867
|
{
|
|
3787
3868
|
name: "get_version",
|
package/package.json
CHANGED