@starascendin/lifeos-mcp 0.7.21 → 0.7.22
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 +334 -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.22";
|
|
2
|
+
export declare const BUILD_TIME = "2026-02-22T01:18:07.259Z";
|
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.22";
|
|
3
|
+
export const BUILD_TIME = "2026-02-22T01:18:07.259Z";
|
package/dist/index.js
CHANGED
|
@@ -3479,6 +3479,340 @@ const TOOLS = [
|
|
|
3479
3479
|
required: ["conversationId"],
|
|
3480
3480
|
},
|
|
3481
3481
|
},
|
|
3482
|
+
// ==================== AI COACHING ====================
|
|
3483
|
+
{
|
|
3484
|
+
name: "get_coach_profile",
|
|
3485
|
+
description: "Get the AI coach's evolving user model — core tension, growth edge, decision style, communication style, energy patterns, and aggregate stats.",
|
|
3486
|
+
inputSchema: {
|
|
3487
|
+
type: "object",
|
|
3488
|
+
properties: {},
|
|
3489
|
+
},
|
|
3490
|
+
},
|
|
3491
|
+
{
|
|
3492
|
+
name: "upsert_coach_profile",
|
|
3493
|
+
description: "Create or update the AI coach's user model. All fields are optional — only provided fields are updated.",
|
|
3494
|
+
inputSchema: {
|
|
3495
|
+
type: "object",
|
|
3496
|
+
properties: {
|
|
3497
|
+
coreTension: {
|
|
3498
|
+
type: "string",
|
|
3499
|
+
description: "The user's core tension or central struggle",
|
|
3500
|
+
},
|
|
3501
|
+
growthEdge: {
|
|
3502
|
+
type: "string",
|
|
3503
|
+
description: "Where the user is currently growing",
|
|
3504
|
+
},
|
|
3505
|
+
decisionStyle: {
|
|
3506
|
+
type: "string",
|
|
3507
|
+
description: "How the user tends to make decisions",
|
|
3508
|
+
},
|
|
3509
|
+
communicationStyle: {
|
|
3510
|
+
type: "string",
|
|
3511
|
+
description: "How the user communicates",
|
|
3512
|
+
},
|
|
3513
|
+
energyPatterns: {
|
|
3514
|
+
type: "string",
|
|
3515
|
+
description: "When/how the user has energy vs. drains",
|
|
3516
|
+
},
|
|
3517
|
+
},
|
|
3518
|
+
},
|
|
3519
|
+
},
|
|
3520
|
+
{
|
|
3521
|
+
name: "get_coaching_sessions",
|
|
3522
|
+
description: "Get coaching session records, most recent first.",
|
|
3523
|
+
inputSchema: {
|
|
3524
|
+
type: "object",
|
|
3525
|
+
properties: {
|
|
3526
|
+
limit: {
|
|
3527
|
+
type: "number",
|
|
3528
|
+
description: "Max sessions to return (default: 50)",
|
|
3529
|
+
},
|
|
3530
|
+
},
|
|
3531
|
+
},
|
|
3532
|
+
},
|
|
3533
|
+
{
|
|
3534
|
+
name: "get_coaching_session",
|
|
3535
|
+
description: "Get a single coaching session with its related insights and action items.",
|
|
3536
|
+
inputSchema: {
|
|
3537
|
+
type: "object",
|
|
3538
|
+
properties: {
|
|
3539
|
+
sessionId: {
|
|
3540
|
+
type: "string",
|
|
3541
|
+
description: "The session ID to retrieve (required)",
|
|
3542
|
+
},
|
|
3543
|
+
},
|
|
3544
|
+
required: ["sessionId"],
|
|
3545
|
+
},
|
|
3546
|
+
},
|
|
3547
|
+
{
|
|
3548
|
+
name: "create_coaching_session",
|
|
3549
|
+
description: "Create a new coaching session record.",
|
|
3550
|
+
inputSchema: {
|
|
3551
|
+
type: "object",
|
|
3552
|
+
properties: {
|
|
3553
|
+
date: {
|
|
3554
|
+
type: "string",
|
|
3555
|
+
description: "Session date in YYYY-MM-DD format (required)",
|
|
3556
|
+
},
|
|
3557
|
+
mode: {
|
|
3558
|
+
type: "string",
|
|
3559
|
+
enum: ["async_chat", "voice", "structured_review", "freeform"],
|
|
3560
|
+
description: "Session mode (required)",
|
|
3561
|
+
},
|
|
3562
|
+
framework: {
|
|
3563
|
+
type: "string",
|
|
3564
|
+
description: "Coaching framework used (optional)",
|
|
3565
|
+
},
|
|
3566
|
+
summary: {
|
|
3567
|
+
type: "string",
|
|
3568
|
+
description: "Session summary (optional)",
|
|
3569
|
+
},
|
|
3570
|
+
openThreads: {
|
|
3571
|
+
type: "array",
|
|
3572
|
+
items: {
|
|
3573
|
+
type: "object",
|
|
3574
|
+
properties: {
|
|
3575
|
+
topic: { type: "string" },
|
|
3576
|
+
status: { type: "string", enum: ["open", "resolved"] },
|
|
3577
|
+
notes: { type: "string" },
|
|
3578
|
+
},
|
|
3579
|
+
required: ["topic", "status"],
|
|
3580
|
+
},
|
|
3581
|
+
description: "Open discussion threads (optional)",
|
|
3582
|
+
},
|
|
3583
|
+
},
|
|
3584
|
+
required: ["date", "mode"],
|
|
3585
|
+
},
|
|
3586
|
+
},
|
|
3587
|
+
{
|
|
3588
|
+
name: "update_coaching_session",
|
|
3589
|
+
description: "Update an existing coaching session's summary, framework, or open threads.",
|
|
3590
|
+
inputSchema: {
|
|
3591
|
+
type: "object",
|
|
3592
|
+
properties: {
|
|
3593
|
+
sessionId: {
|
|
3594
|
+
type: "string",
|
|
3595
|
+
description: "The session ID to update (required)",
|
|
3596
|
+
},
|
|
3597
|
+
summary: {
|
|
3598
|
+
type: "string",
|
|
3599
|
+
description: "Updated session summary",
|
|
3600
|
+
},
|
|
3601
|
+
framework: {
|
|
3602
|
+
type: "string",
|
|
3603
|
+
description: "Updated coaching framework",
|
|
3604
|
+
},
|
|
3605
|
+
openThreads: {
|
|
3606
|
+
type: "array",
|
|
3607
|
+
items: {
|
|
3608
|
+
type: "object",
|
|
3609
|
+
properties: {
|
|
3610
|
+
topic: { type: "string" },
|
|
3611
|
+
status: { type: "string", enum: ["open", "resolved"] },
|
|
3612
|
+
notes: { type: "string" },
|
|
3613
|
+
},
|
|
3614
|
+
required: ["topic", "status"],
|
|
3615
|
+
},
|
|
3616
|
+
description: "Updated open threads",
|
|
3617
|
+
},
|
|
3618
|
+
},
|
|
3619
|
+
required: ["sessionId"],
|
|
3620
|
+
},
|
|
3621
|
+
},
|
|
3622
|
+
{
|
|
3623
|
+
name: "get_coach_insights",
|
|
3624
|
+
description: "Get AI coach insights (patterns, reframes, observations, questions, hypotheses) with optional type filter.",
|
|
3625
|
+
inputSchema: {
|
|
3626
|
+
type: "object",
|
|
3627
|
+
properties: {
|
|
3628
|
+
type: {
|
|
3629
|
+
type: "string",
|
|
3630
|
+
enum: ["pattern", "reframe", "observation", "question", "hypothesis"],
|
|
3631
|
+
description: "Filter by insight type (optional)",
|
|
3632
|
+
},
|
|
3633
|
+
limit: {
|
|
3634
|
+
type: "number",
|
|
3635
|
+
description: "Max insights to return (default: 50)",
|
|
3636
|
+
},
|
|
3637
|
+
},
|
|
3638
|
+
},
|
|
3639
|
+
},
|
|
3640
|
+
{
|
|
3641
|
+
name: "create_coach_insight",
|
|
3642
|
+
description: "Create a new AI coach insight about the user.",
|
|
3643
|
+
inputSchema: {
|
|
3644
|
+
type: "object",
|
|
3645
|
+
properties: {
|
|
3646
|
+
type: {
|
|
3647
|
+
type: "string",
|
|
3648
|
+
enum: ["pattern", "reframe", "observation", "question", "hypothesis"],
|
|
3649
|
+
description: "Insight type (required)",
|
|
3650
|
+
},
|
|
3651
|
+
content: {
|
|
3652
|
+
type: "string",
|
|
3653
|
+
description: "The insight content (required)",
|
|
3654
|
+
},
|
|
3655
|
+
confidence: {
|
|
3656
|
+
type: "number",
|
|
3657
|
+
description: "Confidence level 0-100 (required)",
|
|
3658
|
+
},
|
|
3659
|
+
sessionId: {
|
|
3660
|
+
type: "string",
|
|
3661
|
+
description: "Link to a coaching session (optional)",
|
|
3662
|
+
},
|
|
3663
|
+
pillarIds: {
|
|
3664
|
+
type: "array",
|
|
3665
|
+
items: { type: "string" },
|
|
3666
|
+
description: "Related life pillar IDs (optional)",
|
|
3667
|
+
},
|
|
3668
|
+
userResponse: {
|
|
3669
|
+
type: "string",
|
|
3670
|
+
enum: ["confirmed", "rejected", "partial", "pending"],
|
|
3671
|
+
description: "User's response to the insight (default: pending)",
|
|
3672
|
+
},
|
|
3673
|
+
},
|
|
3674
|
+
required: ["type", "content", "confidence"],
|
|
3675
|
+
},
|
|
3676
|
+
},
|
|
3677
|
+
{
|
|
3678
|
+
name: "update_coach_insight",
|
|
3679
|
+
description: "Update an existing coach insight's content, confidence, user response, or surface count.",
|
|
3680
|
+
inputSchema: {
|
|
3681
|
+
type: "object",
|
|
3682
|
+
properties: {
|
|
3683
|
+
insightId: {
|
|
3684
|
+
type: "string",
|
|
3685
|
+
description: "The insight ID to update (required)",
|
|
3686
|
+
},
|
|
3687
|
+
content: {
|
|
3688
|
+
type: "string",
|
|
3689
|
+
description: "Updated content",
|
|
3690
|
+
},
|
|
3691
|
+
confidence: {
|
|
3692
|
+
type: "number",
|
|
3693
|
+
description: "Updated confidence 0-100",
|
|
3694
|
+
},
|
|
3695
|
+
userResponse: {
|
|
3696
|
+
type: "string",
|
|
3697
|
+
enum: ["confirmed", "rejected", "partial", "pending"],
|
|
3698
|
+
description: "Updated user response",
|
|
3699
|
+
},
|
|
3700
|
+
surfaceCount: {
|
|
3701
|
+
type: "number",
|
|
3702
|
+
description: "Updated surface count",
|
|
3703
|
+
},
|
|
3704
|
+
lastSurfacedAt: {
|
|
3705
|
+
type: "number",
|
|
3706
|
+
description: "Timestamp of last surfacing",
|
|
3707
|
+
},
|
|
3708
|
+
},
|
|
3709
|
+
required: ["insightId"],
|
|
3710
|
+
},
|
|
3711
|
+
},
|
|
3712
|
+
{
|
|
3713
|
+
name: "get_coaching_action_items",
|
|
3714
|
+
description: "Get coaching action items (commitments) with optional status filter.",
|
|
3715
|
+
inputSchema: {
|
|
3716
|
+
type: "object",
|
|
3717
|
+
properties: {
|
|
3718
|
+
status: {
|
|
3719
|
+
type: "string",
|
|
3720
|
+
enum: ["pending", "completed", "skipped"],
|
|
3721
|
+
description: "Filter by status (optional)",
|
|
3722
|
+
},
|
|
3723
|
+
limit: {
|
|
3724
|
+
type: "number",
|
|
3725
|
+
description: "Max items to return (default: 100)",
|
|
3726
|
+
},
|
|
3727
|
+
},
|
|
3728
|
+
},
|
|
3729
|
+
},
|
|
3730
|
+
{
|
|
3731
|
+
name: "create_coaching_action_item",
|
|
3732
|
+
description: "Create a new coaching action item (commitment).",
|
|
3733
|
+
inputSchema: {
|
|
3734
|
+
type: "object",
|
|
3735
|
+
properties: {
|
|
3736
|
+
text: {
|
|
3737
|
+
type: "string",
|
|
3738
|
+
description: "The action item text (required)",
|
|
3739
|
+
},
|
|
3740
|
+
sessionId: {
|
|
3741
|
+
type: "string",
|
|
3742
|
+
description: "Link to a coaching session (optional)",
|
|
3743
|
+
},
|
|
3744
|
+
status: {
|
|
3745
|
+
type: "string",
|
|
3746
|
+
enum: ["pending", "completed", "skipped"],
|
|
3747
|
+
description: "Status (default: pending)",
|
|
3748
|
+
},
|
|
3749
|
+
sessionNote: {
|
|
3750
|
+
type: "string",
|
|
3751
|
+
description: "Note about this item from the session (optional)",
|
|
3752
|
+
},
|
|
3753
|
+
priority: {
|
|
3754
|
+
type: "string",
|
|
3755
|
+
enum: ["low", "medium", "high"],
|
|
3756
|
+
description: "Priority level (optional)",
|
|
3757
|
+
},
|
|
3758
|
+
dueDate: {
|
|
3759
|
+
type: "string",
|
|
3760
|
+
description: "Due date in YYYY-MM-DD format (optional)",
|
|
3761
|
+
},
|
|
3762
|
+
},
|
|
3763
|
+
required: ["text"],
|
|
3764
|
+
},
|
|
3765
|
+
},
|
|
3766
|
+
{
|
|
3767
|
+
name: "update_coaching_action_item",
|
|
3768
|
+
description: "Update a coaching action item's text, status, priority, or due date.",
|
|
3769
|
+
inputSchema: {
|
|
3770
|
+
type: "object",
|
|
3771
|
+
properties: {
|
|
3772
|
+
actionItemId: {
|
|
3773
|
+
type: "string",
|
|
3774
|
+
description: "The action item ID to update (required)",
|
|
3775
|
+
},
|
|
3776
|
+
text: {
|
|
3777
|
+
type: "string",
|
|
3778
|
+
description: "Updated text",
|
|
3779
|
+
},
|
|
3780
|
+
status: {
|
|
3781
|
+
type: "string",
|
|
3782
|
+
enum: ["pending", "completed", "skipped"],
|
|
3783
|
+
description: "Updated status",
|
|
3784
|
+
},
|
|
3785
|
+
sessionNote: {
|
|
3786
|
+
type: "string",
|
|
3787
|
+
description: "Updated session note",
|
|
3788
|
+
},
|
|
3789
|
+
priority: {
|
|
3790
|
+
type: "string",
|
|
3791
|
+
enum: ["low", "medium", "high"],
|
|
3792
|
+
description: "Updated priority",
|
|
3793
|
+
},
|
|
3794
|
+
dueDate: {
|
|
3795
|
+
type: "string",
|
|
3796
|
+
description: "Updated due date (YYYY-MM-DD)",
|
|
3797
|
+
},
|
|
3798
|
+
},
|
|
3799
|
+
required: ["actionItemId"],
|
|
3800
|
+
},
|
|
3801
|
+
},
|
|
3802
|
+
{
|
|
3803
|
+
name: "delete_coaching_action_item",
|
|
3804
|
+
description: "Delete a coaching action item.",
|
|
3805
|
+
inputSchema: {
|
|
3806
|
+
type: "object",
|
|
3807
|
+
properties: {
|
|
3808
|
+
actionItemId: {
|
|
3809
|
+
type: "string",
|
|
3810
|
+
description: "The action item ID to delete (required)",
|
|
3811
|
+
},
|
|
3812
|
+
},
|
|
3813
|
+
required: ["actionItemId"],
|
|
3814
|
+
},
|
|
3815
|
+
},
|
|
3482
3816
|
// MCP Server Info
|
|
3483
3817
|
{
|
|
3484
3818
|
name: "get_version",
|
package/package.json
CHANGED