@starascendin/lifeos-mcp 0.7.59 → 0.7.61

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.59";
2
- export declare const BUILD_TIME = "2026-04-13T20:44:32.551Z";
1
+ export declare const VERSION = "0.7.61";
2
+ export declare const BUILD_TIME = "2026-04-21T17:37:26.471Z";
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED — do not edit. Regenerated on every build.
2
- export const VERSION = "0.7.59";
3
- export const BUILD_TIME = "2026-04-13T20:44:32.551Z";
2
+ export const VERSION = "0.7.61";
3
+ export const BUILD_TIME = "2026-04-21T17:37:26.471Z";
package/dist/index.js CHANGED
@@ -2943,552 +2943,6 @@ const TOOLS = [
2943
2943
  },
2944
2944
  },
2945
2945
  },
2946
- // ==================== LIFE DIRECTION: PILLARS ====================
2947
- {
2948
- name: "get_pillars",
2949
- description: "Get all life pillars. Pillars are the core areas of life (Social, Body, Work, Growth, Money, Joy, etc.) with feeling-driven vision narratives — not KPIs. Each pillar has a currentReality (honest assessment), desiredFeeling (target emotional state), and visionNarrative (vivid description of thriving).",
2950
- inputSchema: {
2951
- type: "object",
2952
- properties: {
2953
- userId: {
2954
- type: "string",
2955
- description: "Override the default user ID (optional)",
2956
- },
2957
- status: {
2958
- type: "string",
2959
- enum: ["active", "paused", "archived"],
2960
- description: "Filter by status (optional, default returns all)",
2961
- },
2962
- },
2963
- },
2964
- },
2965
- {
2966
- name: "get_pillar",
2967
- description: "Get a single life pillar by ID or slug with full details including vision narrative, current reality, and desired feeling.",
2968
- inputSchema: {
2969
- type: "object",
2970
- properties: {
2971
- userId: {
2972
- type: "string",
2973
- description: "Override the default user ID (optional)",
2974
- },
2975
- pillarIdOrSlug: {
2976
- type: "string",
2977
- description: "Pillar ID or slug like 'social' or 'body' (required)",
2978
- },
2979
- },
2980
- required: ["pillarIdOrSlug"],
2981
- },
2982
- },
2983
- {
2984
- name: "create_pillar",
2985
- description: "Create a new life pillar. Pillars represent core life areas with feeling-driven visions. Use desiredFeeling for the target emotional state (e.g., 'I feel connected and energized') and visionNarrative for a vivid description of what life looks like when this area is thriving.",
2986
- inputSchema: {
2987
- type: "object",
2988
- properties: {
2989
- userId: {
2990
- type: "string",
2991
- description: "Override the default user ID (optional)",
2992
- },
2993
- name: {
2994
- type: "string",
2995
- description: "Pillar name, e.g. 'Social', 'Body', 'Work' (required)",
2996
- },
2997
- slug: {
2998
- type: "string",
2999
- description: "URL-safe slug, e.g. 'social', 'body' (required)",
3000
- },
3001
- description: {
3002
- type: "string",
3003
- description: "What this pillar means to you personally (optional)",
3004
- },
3005
- currentReality: {
3006
- type: "string",
3007
- description: "Honest assessment of where you are now, e.g. 'I have no friends, I am isolated' (optional)",
3008
- },
3009
- desiredFeeling: {
3010
- type: "string",
3011
- description: "Target emotional state, e.g. 'I feel connected and energized after spending time with people I respect' (optional)",
3012
- },
3013
- visionNarrative: {
3014
- type: "string",
3015
- description: "Vivid, detailed description of what life feels like when this pillar is thriving (optional)",
3016
- },
3017
- color: {
3018
- type: "string",
3019
- description: "Hex color for UI (optional)",
3020
- },
3021
- icon: {
3022
- type: "string",
3023
- description: "Emoji icon (optional)",
3024
- },
3025
- },
3026
- required: ["name", "slug"],
3027
- },
3028
- },
3029
- {
3030
- name: "update_pillar",
3031
- description: "Update a life pillar's details, vision narrative, current reality, desired feeling, or status. The coach should use this to help the user evolve their pillar visions over time through conversation.",
3032
- inputSchema: {
3033
- type: "object",
3034
- properties: {
3035
- userId: {
3036
- type: "string",
3037
- description: "Override the default user ID (optional)",
3038
- },
3039
- pillarId: {
3040
- type: "string",
3041
- description: "Pillar ID (required)",
3042
- },
3043
- name: {
3044
- type: "string",
3045
- description: "Updated name (optional)",
3046
- },
3047
- description: {
3048
- type: "string",
3049
- description: "Updated description (optional)",
3050
- },
3051
- currentReality: {
3052
- type: "string",
3053
- description: "Updated honest assessment of current state (optional)",
3054
- },
3055
- desiredFeeling: {
3056
- type: "string",
3057
- description: "Updated target emotional state (optional)",
3058
- },
3059
- visionNarrative: {
3060
- type: "string",
3061
- description: "Updated vision narrative (optional)",
3062
- },
3063
- color: {
3064
- type: "string",
3065
- description: "Updated hex color (optional)",
3066
- },
3067
- icon: {
3068
- type: "string",
3069
- description: "Updated emoji icon (optional)",
3070
- },
3071
- status: {
3072
- type: "string",
3073
- enum: ["active", "paused", "archived"],
3074
- description: "Updated status (optional)",
3075
- },
3076
- },
3077
- required: ["pillarId"],
3078
- },
3079
- },
3080
- {
3081
- name: "delete_pillar",
3082
- description: "Delete a life pillar and cascade-delete all associated pulse ratings. Curiosities linked to this pillar will be unlinked (not deleted).",
3083
- inputSchema: {
3084
- type: "object",
3085
- properties: {
3086
- userId: {
3087
- type: "string",
3088
- description: "Override the default user ID (optional)",
3089
- },
3090
- pillarId: {
3091
- type: "string",
3092
- description: "Pillar ID to delete (required)",
3093
- },
3094
- },
3095
- required: ["pillarId"],
3096
- },
3097
- },
3098
- // ==================== LIFE DIRECTION: PILLAR PULSE ====================
3099
- {
3100
- name: "record_pillar_pulse",
3101
- description: "Record a pillar pulse — a periodic self-rating of how alive a life area feels. Scale: 1 (dead/neglected) to 5 (thriving/alive). Not for optimization, but for making the invisible visible. The coach should prompt the user to rate periodically.",
3102
- inputSchema: {
3103
- type: "object",
3104
- properties: {
3105
- userId: {
3106
- type: "string",
3107
- description: "Override the default user ID (optional)",
3108
- },
3109
- pillarId: {
3110
- type: "string",
3111
- description: "Pillar ID to rate (required)",
3112
- },
3113
- rating: {
3114
- type: "number",
3115
- description: "1-5 scale: 1=dead/neglected, 5=thriving/alive (required)",
3116
- },
3117
- note: {
3118
- type: "string",
3119
- description: "Optional reflection note (optional)",
3120
- },
3121
- },
3122
- required: ["pillarId", "rating"],
3123
- },
3124
- },
3125
- {
3126
- name: "get_pillar_pulse",
3127
- description: "Get pillar pulse history — self-ratings over time. Can filter by specific pillar or get all. Useful for spotting trends and patterns.",
3128
- inputSchema: {
3129
- type: "object",
3130
- properties: {
3131
- userId: {
3132
- type: "string",
3133
- description: "Override the default user ID (optional)",
3134
- },
3135
- pillarId: {
3136
- type: "string",
3137
- description: "Filter by specific pillar ID (optional, returns all if omitted)",
3138
- },
3139
- days: {
3140
- type: "number",
3141
- description: "Number of days to look back (default 30)",
3142
- },
3143
- },
3144
- },
3145
- },
3146
- {
3147
- name: "get_pillar_pulse_latest",
3148
- description: "Get the latest pulse rating for ALL active pillars. Returns a dashboard view showing each pillar's name, current reality, desired feeling, and most recent rating. Perfect for a weekly check-in overview.",
3149
- inputSchema: {
3150
- type: "object",
3151
- properties: {
3152
- userId: {
3153
- type: "string",
3154
- description: "Override the default user ID (optional)",
3155
- },
3156
- },
3157
- },
3158
- },
3159
- // ==================== LIFE DIRECTION: CURIOSITIES ====================
3160
- {
3161
- name: "get_curiosities",
3162
- description: "Get the curiosity queue — ideas, interests, dreams, what-ifs, skills to learn, places to go, people to meet, experiences to have. Most won't become projects and that's fine. The coach should periodically surface items from here.",
3163
- inputSchema: {
3164
- type: "object",
3165
- properties: {
3166
- userId: {
3167
- type: "string",
3168
- description: "Override the default user ID (optional)",
3169
- },
3170
- status: {
3171
- type: "string",
3172
- enum: ["captured", "exploring", "promoted", "parked", "released"],
3173
- description: "Filter by status (optional)",
3174
- },
3175
- type: {
3176
- type: "string",
3177
- enum: [
3178
- "curiosity",
3179
- "hobby",
3180
- "dream",
3181
- "what_if",
3182
- "person",
3183
- "place",
3184
- "skill",
3185
- "experience",
3186
- ],
3187
- description: "Filter by type (optional)",
3188
- },
3189
- pillarId: {
3190
- type: "string",
3191
- description: "Filter by linked pillar ID (optional)",
3192
- },
3193
- limit: {
3194
- type: "number",
3195
- description: "Max results (default 50, max 100)",
3196
- },
3197
- },
3198
- },
3199
- },
3200
- {
3201
- name: "create_curiosity",
3202
- description: "Capture a curiosity — dead simple, low-friction. Just dump it in with a title. Type, description, pillar link, and tags are all optional. The coach can help categorize later.",
3203
- inputSchema: {
3204
- type: "object",
3205
- properties: {
3206
- userId: {
3207
- type: "string",
3208
- description: "Override the default user ID (optional)",
3209
- },
3210
- title: {
3211
- type: "string",
3212
- description: "What are you curious about? (required)",
3213
- },
3214
- description: {
3215
- type: "string",
3216
- description: "More details (optional)",
3217
- },
3218
- type: {
3219
- type: "string",
3220
- enum: [
3221
- "curiosity",
3222
- "hobby",
3223
- "dream",
3224
- "what_if",
3225
- "person",
3226
- "place",
3227
- "skill",
3228
- "experience",
3229
- ],
3230
- description: "What kind of curiosity (default: 'curiosity')",
3231
- },
3232
- pillarId: {
3233
- type: "string",
3234
- description: "Link to a life pillar (optional)",
3235
- },
3236
- tags: {
3237
- type: "array",
3238
- items: { type: "string" },
3239
- description: "Tags for filtering (optional)",
3240
- },
3241
- },
3242
- required: ["title"],
3243
- },
3244
- },
3245
- {
3246
- name: "update_curiosity",
3247
- description: "Update a curiosity's details, type, status, pillar link, or tags. Use status 'exploring' when actively looking into it, 'promoted' when it becomes an initiative/project, 'parked' for not-now, 'released' for no-longer-interested.",
3248
- inputSchema: {
3249
- type: "object",
3250
- properties: {
3251
- userId: {
3252
- type: "string",
3253
- description: "Override the default user ID (optional)",
3254
- },
3255
- curiosityId: {
3256
- type: "string",
3257
- description: "Curiosity ID (required)",
3258
- },
3259
- title: {
3260
- type: "string",
3261
- description: "Updated title (optional)",
3262
- },
3263
- description: {
3264
- type: "string",
3265
- description: "Updated description (optional)",
3266
- },
3267
- type: {
3268
- type: "string",
3269
- enum: [
3270
- "curiosity",
3271
- "hobby",
3272
- "dream",
3273
- "what_if",
3274
- "person",
3275
- "place",
3276
- "skill",
3277
- "experience",
3278
- ],
3279
- description: "Updated type (optional)",
3280
- },
3281
- status: {
3282
- type: "string",
3283
- enum: ["captured", "exploring", "promoted", "parked", "released"],
3284
- description: "Updated status (optional)",
3285
- },
3286
- pillarId: {
3287
- type: "string",
3288
- description: "Updated pillar link (optional, pass empty string to unlink)",
3289
- },
3290
- tags: {
3291
- type: "array",
3292
- items: { type: "string" },
3293
- description: "Updated tags (optional)",
3294
- },
3295
- },
3296
- required: ["curiosityId"],
3297
- },
3298
- },
3299
- {
3300
- name: "delete_curiosity",
3301
- description: "Delete a curiosity from the queue.",
3302
- inputSchema: {
3303
- type: "object",
3304
- properties: {
3305
- userId: {
3306
- type: "string",
3307
- description: "Override the default user ID (optional)",
3308
- },
3309
- curiosityId: {
3310
- type: "string",
3311
- description: "Curiosity ID to delete (required)",
3312
- },
3313
- },
3314
- required: ["curiosityId"],
3315
- },
3316
- },
3317
- {
3318
- name: "surface_curiosity",
3319
- description: "Mark a curiosity as surfaced by the coach. Increments the surface count and updates the last-surfaced timestamp. The coach should use this when bringing up a curiosity during a session to track engagement.",
3320
- inputSchema: {
3321
- type: "object",
3322
- properties: {
3323
- userId: {
3324
- type: "string",
3325
- description: "Override the default user ID (optional)",
3326
- },
3327
- curiosityId: {
3328
- type: "string",
3329
- description: "Curiosity ID to surface (required)",
3330
- },
3331
- },
3332
- required: ["curiosityId"],
3333
- },
3334
- },
3335
- // ==================== NORTH STAR TOOLS ====================
3336
- {
3337
- name: "get_north_stars",
3338
- description: "Get all North Star visions. North Stars are the big compelling directions — not goals or KPIs, but vivid pictures of a life that excites you. Everything else (pillars, curiosities, initiatives) organizes beneath these. Filter by status: active (currently pursuing), exploring (testing/validating), archived (past vision).",
3339
- inputSchema: {
3340
- type: "object",
3341
- properties: {
3342
- userId: {
3343
- type: "string",
3344
- description: "Override the default user ID (optional)",
3345
- },
3346
- status: {
3347
- type: "string",
3348
- enum: ["active", "exploring", "archived"],
3349
- description: "Filter by status (optional, returns all if omitted)",
3350
- },
3351
- },
3352
- },
3353
- },
3354
- {
3355
- name: "create_north_star",
3356
- description: "Create a new North Star vision. This is a BIG direction — like 'Build an ocean + community life business in Taiwan'. Include a vivid narrative of what life looks like when you're living this vision. The 'why' captures the emotional pull. Link to pillars that this vision serves.",
3357
- inputSchema: {
3358
- type: "object",
3359
- properties: {
3360
- userId: {
3361
- type: "string",
3362
- description: "Override the default user ID (optional)",
3363
- },
3364
- title: {
3365
- type: "string",
3366
- description: "Short compelling title (required)",
3367
- },
3368
- narrative: {
3369
- type: "string",
3370
- description: "Vivid narrative — paint the picture of what life looks like when you're living this vision (required)",
3371
- },
3372
- why: {
3373
- type: "string",
3374
- description: "The emotional pull — why this matters (optional)",
3375
- },
3376
- timeframe: {
3377
- type: "string",
3378
- enum: ["1_year", "2_years", "5_years", "10_years", "lifetime"],
3379
- description: "How far out is this vision? (optional)",
3380
- },
3381
- pillarIds: {
3382
- type: "array",
3383
- items: { type: "string" },
3384
- description: "Pillar IDs this vision serves (optional)",
3385
- },
3386
- icon: {
3387
- type: "string",
3388
- description: "Emoji icon (optional)",
3389
- },
3390
- color: {
3391
- type: "string",
3392
- description: "Hex color (optional)",
3393
- },
3394
- status: {
3395
- type: "string",
3396
- enum: ["active", "exploring", "archived"],
3397
- description: "Status (default: active)",
3398
- },
3399
- },
3400
- required: ["title", "narrative"],
3401
- },
3402
- },
3403
- {
3404
- name: "update_north_star",
3405
- description: "Update a North Star vision. The coach should use this to help evolve visions over time — refining the narrative, updating the 'why', linking new pillars, or archiving visions that no longer resonate.",
3406
- inputSchema: {
3407
- type: "object",
3408
- properties: {
3409
- userId: {
3410
- type: "string",
3411
- description: "Override the default user ID (optional)",
3412
- },
3413
- northStarId: {
3414
- type: "string",
3415
- description: "North Star ID (required)",
3416
- },
3417
- title: {
3418
- type: "string",
3419
- description: "Updated title (optional)",
3420
- },
3421
- narrative: {
3422
- type: "string",
3423
- description: "Updated narrative (optional)",
3424
- },
3425
- why: {
3426
- type: "string",
3427
- description: "Updated emotional pull (optional)",
3428
- },
3429
- timeframe: {
3430
- type: "string",
3431
- enum: ["1_year", "2_years", "5_years", "10_years", "lifetime"],
3432
- description: "Updated timeframe (optional)",
3433
- },
3434
- pillarIds: {
3435
- type: "array",
3436
- items: { type: "string" },
3437
- description: "Updated pillar IDs (optional)",
3438
- },
3439
- icon: {
3440
- type: "string",
3441
- description: "Updated icon (optional)",
3442
- },
3443
- color: {
3444
- type: "string",
3445
- description: "Updated color (optional)",
3446
- },
3447
- status: {
3448
- type: "string",
3449
- enum: ["active", "exploring", "archived"],
3450
- description: "Updated status (optional)",
3451
- },
3452
- },
3453
- required: ["northStarId"],
3454
- },
3455
- },
3456
- {
3457
- name: "delete_north_star",
3458
- description: "Delete a North Star vision permanently. Use archive status instead if you want to preserve history.",
3459
- inputSchema: {
3460
- type: "object",
3461
- properties: {
3462
- userId: {
3463
- type: "string",
3464
- description: "Override the default user ID (optional)",
3465
- },
3466
- northStarId: {
3467
- type: "string",
3468
- description: "North Star ID (required)",
3469
- },
3470
- },
3471
- required: ["northStarId"],
3472
- },
3473
- },
3474
- {
3475
- name: "get_north_star_revisions",
3476
- 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.",
3477
- inputSchema: {
3478
- type: "object",
3479
- properties: {
3480
- userId: {
3481
- type: "string",
3482
- description: "Override the default user ID (optional)",
3483
- },
3484
- northStarId: {
3485
- type: "string",
3486
- description: "North Star ID (required)",
3487
- },
3488
- },
3489
- required: ["northStarId"],
3490
- },
3491
- },
3492
2946
  // ==================== HABIT TRACKER ====================
3493
2947
  {
3494
2948
  name: "get_habits",
@@ -3771,15 +3225,6 @@ const TOOLS = [
3771
3225
  },
3772
3226
  },
3773
3227
  },
3774
- // ==================== Life Direction Composite Tools ====================
3775
- {
3776
- name: "get_life_direction_summary",
3777
- description: "START HERE for life direction overview. Returns a comprehensive snapshot in one call: North Stars, Pillars + pulse, and active Curiosities.",
3778
- inputSchema: {
3779
- type: "object",
3780
- properties: {},
3781
- },
3782
- },
3783
3228
  // ==================== LLM Council Tools ====================
3784
3229
  {
3785
3230
  name: "llm_council_deliberate",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starascendin/lifeos-mcp",
3
- "version": "0.7.59",
3
+ "version": "0.7.61",
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",