@starascendin/lifeos-mcp 0.7.13 → 0.7.15
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 +63 -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-
|
|
1
|
+
export declare const VERSION = "0.7.15";
|
|
2
|
+
export declare const BUILD_TIME = "2026-02-21T01:01:33.105Z";
|
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.15";
|
|
3
|
+
export const BUILD_TIME = "2026-02-21T01:01:33.105Z";
|
package/dist/index.js
CHANGED
|
@@ -3800,6 +3800,69 @@ const TOOLS = [
|
|
|
3800
3800
|
},
|
|
3801
3801
|
},
|
|
3802
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
|
+
},
|
|
3803
3866
|
// MCP Server Info
|
|
3804
3867
|
{
|
|
3805
3868
|
name: "get_version",
|
package/package.json
CHANGED