@starascendin/lifeos-mcp 0.7.11 → 0.7.13

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.11";
2
- export declare const BUILD_TIME = "2026-02-20T16:01:14.477Z";
1
+ export declare const VERSION = "0.7.13";
2
+ export declare const BUILD_TIME = "2026-02-20T20:30:36.035Z";
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED — do not edit. Regenerated on every build.
2
- export const VERSION = "0.7.11";
3
- export const BUILD_TIME = "2026-02-20T16:01:14.477Z";
2
+ export const VERSION = "0.7.13";
3
+ export const BUILD_TIME = "2026-02-20T20:30:36.035Z";
package/dist/index.js CHANGED
@@ -3293,6 +3293,163 @@ const TOOLS = [
3293
3293
  required: ["curiosityId"],
3294
3294
  },
3295
3295
  },
3296
+ // ==================== NORTH STAR TOOLS ====================
3297
+ {
3298
+ name: "get_north_stars",
3299
+ 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).",
3300
+ inputSchema: {
3301
+ type: "object",
3302
+ properties: {
3303
+ userId: {
3304
+ type: "string",
3305
+ description: "Override the default user ID (optional)",
3306
+ },
3307
+ status: {
3308
+ type: "string",
3309
+ enum: ["active", "exploring", "archived"],
3310
+ description: "Filter by status (optional, returns all if omitted)",
3311
+ },
3312
+ },
3313
+ },
3314
+ },
3315
+ {
3316
+ name: "create_north_star",
3317
+ 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.",
3318
+ inputSchema: {
3319
+ type: "object",
3320
+ properties: {
3321
+ userId: {
3322
+ type: "string",
3323
+ description: "Override the default user ID (optional)",
3324
+ },
3325
+ title: {
3326
+ type: "string",
3327
+ description: "Short compelling title (required)",
3328
+ },
3329
+ narrative: {
3330
+ type: "string",
3331
+ description: "Vivid narrative — paint the picture of what life looks like when you're living this vision (required)",
3332
+ },
3333
+ why: {
3334
+ type: "string",
3335
+ description: "The emotional pull — why this matters (optional)",
3336
+ },
3337
+ timeframe: {
3338
+ type: "string",
3339
+ enum: ["1_year", "2_years", "5_years", "10_years", "lifetime"],
3340
+ description: "How far out is this vision? (optional)",
3341
+ },
3342
+ pillarIds: {
3343
+ type: "array",
3344
+ items: { type: "string" },
3345
+ description: "Pillar IDs this vision serves (optional)",
3346
+ },
3347
+ icon: {
3348
+ type: "string",
3349
+ description: "Emoji icon (optional)",
3350
+ },
3351
+ color: {
3352
+ type: "string",
3353
+ description: "Hex color (optional)",
3354
+ },
3355
+ status: {
3356
+ type: "string",
3357
+ enum: ["active", "exploring", "archived"],
3358
+ description: "Status (default: active)",
3359
+ },
3360
+ },
3361
+ required: ["title", "narrative"],
3362
+ },
3363
+ },
3364
+ {
3365
+ name: "update_north_star",
3366
+ 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.",
3367
+ inputSchema: {
3368
+ type: "object",
3369
+ properties: {
3370
+ userId: {
3371
+ type: "string",
3372
+ description: "Override the default user ID (optional)",
3373
+ },
3374
+ northStarId: {
3375
+ type: "string",
3376
+ description: "North Star ID (required)",
3377
+ },
3378
+ title: {
3379
+ type: "string",
3380
+ description: "Updated title (optional)",
3381
+ },
3382
+ narrative: {
3383
+ type: "string",
3384
+ description: "Updated narrative (optional)",
3385
+ },
3386
+ why: {
3387
+ type: "string",
3388
+ description: "Updated emotional pull (optional)",
3389
+ },
3390
+ timeframe: {
3391
+ type: "string",
3392
+ enum: ["1_year", "2_years", "5_years", "10_years", "lifetime"],
3393
+ description: "Updated timeframe (optional)",
3394
+ },
3395
+ pillarIds: {
3396
+ type: "array",
3397
+ items: { type: "string" },
3398
+ description: "Updated pillar IDs (optional)",
3399
+ },
3400
+ icon: {
3401
+ type: "string",
3402
+ description: "Updated icon (optional)",
3403
+ },
3404
+ color: {
3405
+ type: "string",
3406
+ description: "Updated color (optional)",
3407
+ },
3408
+ status: {
3409
+ type: "string",
3410
+ enum: ["active", "exploring", "archived"],
3411
+ description: "Updated status (optional)",
3412
+ },
3413
+ },
3414
+ required: ["northStarId"],
3415
+ },
3416
+ },
3417
+ {
3418
+ name: "delete_north_star",
3419
+ description: "Delete a North Star vision permanently. Use archive status instead if you want to preserve history.",
3420
+ inputSchema: {
3421
+ type: "object",
3422
+ properties: {
3423
+ userId: {
3424
+ type: "string",
3425
+ description: "Override the default user ID (optional)",
3426
+ },
3427
+ northStarId: {
3428
+ type: "string",
3429
+ description: "North Star ID (required)",
3430
+ },
3431
+ },
3432
+ required: ["northStarId"],
3433
+ },
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
+ },
3296
3453
  // ==================== LIFE DIRECTION: COACH WORKING MEMORY ====================
3297
3454
  {
3298
3455
  name: "get_working_memory",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starascendin/lifeos-mcp",
3
- "version": "0.7.11",
3
+ "version": "0.7.13",
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",