@starascendin/lifeos-mcp 0.7.71 → 0.7.73
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/README.md +2 -5
- package/dist/build-info.d.ts +2 -2
- package/dist/build-info.js +2 -2
- package/dist/index.js +37 -102
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,17 +89,14 @@ Add to your `.mcp.json` (project root or `~/.claude/mcp.json`):
|
|
|
89
89
|
|
|
90
90
|
### Council
|
|
91
91
|
- **run_council** - Run the shared LifeOS council engine used by AI Panel and ZeroClaw skills
|
|
92
|
-
- **llm_council_deliberate** - Run the separate long-running LLM Council workflow
|
|
93
|
-
- **llm_council_list_conversations** - List saved LLM Council conversations
|
|
94
|
-
- **llm_council_get_deliberation** - Get a saved LLM Council deliberation
|
|
95
92
|
|
|
96
93
|
### Project Management
|
|
97
94
|
- **get_projects** - List all projects with stats
|
|
98
95
|
- **get_tasks** - Get tasks with filters (project, status, priority)
|
|
99
96
|
- **get_todays_tasks** - Get today's tasks and top priorities
|
|
100
97
|
- **get_overdue_tasks** - Get open tasks that are already overdue
|
|
101
|
-
- **create_issue** - Create a new task/issue
|
|
102
|
-
- **update_issue** - Update an existing task, including estimate/story points
|
|
98
|
+
- **create_issue** - Create a new task/issue, optionally with a calendar start/end time
|
|
99
|
+
- **update_issue** - Update an existing task, including estimate/story points and scheduled calendar time
|
|
103
100
|
- **mark_issue_complete** - Mark a task as done
|
|
104
101
|
|
|
105
102
|
### Phases
|
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-05-
|
|
1
|
+
export declare const VERSION = "0.7.73";
|
|
2
|
+
export declare const BUILD_TIME = "2026-05-18T15:43:15.303Z";
|
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-05-
|
|
2
|
+
export const VERSION = "0.7.73";
|
|
3
|
+
export const BUILD_TIME = "2026-05-18T15:43:15.303Z";
|
package/dist/index.js
CHANGED
|
@@ -295,7 +295,7 @@ const TOOLS = [
|
|
|
295
295
|
},
|
|
296
296
|
{
|
|
297
297
|
name: "create_issue",
|
|
298
|
-
description: "Create a new task/issue. Assign to a project (by key like 'KORT') and optionally a phase (by name like 'Building Foundation' or by ID). Set priority, due date, cycle, and initiative.",
|
|
298
|
+
description: "Create a new task/issue. Assign to a project (by key like 'KORT') and optionally a phase (by name like 'Building Foundation' or by ID). Set priority, due date, calendar start/end time, cycle, and initiative.",
|
|
299
299
|
inputSchema: {
|
|
300
300
|
type: "object",
|
|
301
301
|
properties: {
|
|
@@ -324,6 +324,18 @@ const TOOLS = [
|
|
|
324
324
|
type: "string",
|
|
325
325
|
description: "Due date in ISO format like '2024-01-15' (optional)",
|
|
326
326
|
},
|
|
327
|
+
scheduledStartAt: {
|
|
328
|
+
type: "string",
|
|
329
|
+
description: "Calendar start datetime in ISO format like '2026-05-18T09:00:00-07:00' (optional)",
|
|
330
|
+
},
|
|
331
|
+
scheduledEndAt: {
|
|
332
|
+
type: "string",
|
|
333
|
+
description: "Calendar end datetime in ISO format like '2026-05-18T10:30:00-07:00' (optional, required when scheduledStartAt is provided)",
|
|
334
|
+
},
|
|
335
|
+
scheduledTimezone: {
|
|
336
|
+
type: "string",
|
|
337
|
+
description: "IANA timezone for the scheduled block, e.g. 'America/Los_Angeles' (optional)",
|
|
338
|
+
},
|
|
327
339
|
cycleId: {
|
|
328
340
|
type: "string",
|
|
329
341
|
description: "Assign to a specific cycle (optional)",
|
|
@@ -423,6 +435,22 @@ const TOOLS = [
|
|
|
423
435
|
type: "string",
|
|
424
436
|
description: "Due date in ISO format, or empty to clear (optional)",
|
|
425
437
|
},
|
|
438
|
+
scheduledStartAt: {
|
|
439
|
+
type: "string",
|
|
440
|
+
description: "Calendar start datetime in ISO format like '2026-05-18T09:00:00-07:00' (optional)",
|
|
441
|
+
},
|
|
442
|
+
scheduledEndAt: {
|
|
443
|
+
type: "string",
|
|
444
|
+
description: "Calendar end datetime in ISO format like '2026-05-18T10:30:00-07:00' (optional)",
|
|
445
|
+
},
|
|
446
|
+
scheduledTimezone: {
|
|
447
|
+
type: "string",
|
|
448
|
+
description: "IANA timezone for the scheduled block, e.g. 'America/Los_Angeles' (optional)",
|
|
449
|
+
},
|
|
450
|
+
clearScheduledTime: {
|
|
451
|
+
type: "boolean",
|
|
452
|
+
description: "Clear the task's calendar start/end time (optional)",
|
|
453
|
+
},
|
|
426
454
|
isTopPriority: {
|
|
427
455
|
type: "boolean",
|
|
428
456
|
description: "Mark as top priority (optional)",
|
|
@@ -980,7 +1008,7 @@ const TOOLS = [
|
|
|
980
1008
|
},
|
|
981
1009
|
{
|
|
982
1010
|
name: "apply_planning_patch",
|
|
983
|
-
description: "Apply an agent-generated day/week/cycle planning patch. Mutates tasks, due dates, top priorities, current cycle goals/assignments, daily fields, issue comments, Daily AI Comments, Weekly AI Comments, and daily/weekly notes.",
|
|
1011
|
+
description: "Apply an agent-generated day/week/cycle planning patch. Mutates tasks, due dates, scheduled start/end times, top priorities, current cycle goals/assignments, daily fields, issue comments, Daily AI Comments, Weekly AI Comments, and daily/weekly notes.",
|
|
984
1012
|
inputSchema: {
|
|
985
1013
|
type: "object",
|
|
986
1014
|
properties: {
|
|
@@ -1031,7 +1059,7 @@ const TOOLS = [
|
|
|
1031
1059
|
},
|
|
1032
1060
|
payload: {
|
|
1033
1061
|
type: "object",
|
|
1034
|
-
description: "Operation-specific payload. Use issueIdOrIdentifier for existing tasks, dueDate for
|
|
1062
|
+
description: "Operation-specific payload. Use issueIdOrIdentifier for existing tasks, dueDate for day assignment/deadlines, scheduledStartAt/scheduledEndAt ISO datetimes or startTime/endTime with scheduledDate for calendar time blocks, userNote for notes, body/source for comments, goals for cycle goals.",
|
|
1035
1063
|
},
|
|
1036
1064
|
},
|
|
1037
1065
|
required: ["type", "payload"],
|
|
@@ -3508,78 +3536,6 @@ const TOOLS = [
|
|
|
3508
3536
|
},
|
|
3509
3537
|
},
|
|
3510
3538
|
},
|
|
3511
|
-
// ==================== LLM Council Tools ====================
|
|
3512
|
-
{
|
|
3513
|
-
name: "llm_council_deliberate",
|
|
3514
|
-
description: "Run a full LLM Council deliberation (Karpathy's 3-stage process). Stage 1: Multiple models answer your query in parallel. Stage 2: Each model anonymously peer-reviews and ranks the others' responses. Stage 3: A chairman model synthesizes the best answer from all responses and rankings. Returns the complete deliberation with all 3 stages. This is a long-running operation (2-10 minutes depending on tier).",
|
|
3515
|
-
inputSchema: {
|
|
3516
|
-
type: "object",
|
|
3517
|
-
properties: {
|
|
3518
|
-
query: {
|
|
3519
|
-
type: "string",
|
|
3520
|
-
description: "The question or prompt to deliberate on",
|
|
3521
|
-
},
|
|
3522
|
-
tier: {
|
|
3523
|
-
type: "string",
|
|
3524
|
-
enum: ["normal", "pro"],
|
|
3525
|
-
description: "Model tier. 'normal' uses GPT-4o, Claude Sonnet 4, Gemini 2.5 Pro, Grok 3. 'pro' uses GPT-5.2 Pro, Claude Opus 4.5, Gemini 3 Pro, Grok 4. Default: normal",
|
|
3526
|
-
},
|
|
3527
|
-
title: {
|
|
3528
|
-
type: "string",
|
|
3529
|
-
description: "Optional title for the conversation (auto-generated from query if not provided)",
|
|
3530
|
-
},
|
|
3531
|
-
councilModels: {
|
|
3532
|
-
type: "array",
|
|
3533
|
-
items: {
|
|
3534
|
-
type: "object",
|
|
3535
|
-
properties: {
|
|
3536
|
-
modelId: { type: "string" },
|
|
3537
|
-
modelName: { type: "string" },
|
|
3538
|
-
},
|
|
3539
|
-
required: ["modelId", "modelName"],
|
|
3540
|
-
},
|
|
3541
|
-
description: "Optional custom council models (overrides tier selection)",
|
|
3542
|
-
},
|
|
3543
|
-
chairmanModel: {
|
|
3544
|
-
type: "object",
|
|
3545
|
-
properties: {
|
|
3546
|
-
modelId: { type: "string" },
|
|
3547
|
-
modelName: { type: "string" },
|
|
3548
|
-
},
|
|
3549
|
-
required: ["modelId", "modelName"],
|
|
3550
|
-
description: "Optional custom chairman model (overrides tier selection)",
|
|
3551
|
-
},
|
|
3552
|
-
},
|
|
3553
|
-
required: ["query"],
|
|
3554
|
-
},
|
|
3555
|
-
},
|
|
3556
|
-
{
|
|
3557
|
-
name: "llm_council_list_conversations",
|
|
3558
|
-
description: "List past LLM Council conversations. Returns conversation IDs, titles, models used, and timestamps.",
|
|
3559
|
-
inputSchema: {
|
|
3560
|
-
type: "object",
|
|
3561
|
-
properties: {
|
|
3562
|
-
limit: {
|
|
3563
|
-
type: "number",
|
|
3564
|
-
description: "Max conversations to return (default: 20)",
|
|
3565
|
-
},
|
|
3566
|
-
},
|
|
3567
|
-
},
|
|
3568
|
-
},
|
|
3569
|
-
{
|
|
3570
|
-
name: "llm_council_get_deliberation",
|
|
3571
|
-
description: "Get the full details of a past LLM Council deliberation, including all 3 stages: individual responses, peer evaluations with rankings, and chairman synthesis.",
|
|
3572
|
-
inputSchema: {
|
|
3573
|
-
type: "object",
|
|
3574
|
-
properties: {
|
|
3575
|
-
conversationId: {
|
|
3576
|
-
type: "string",
|
|
3577
|
-
description: "The conversation ID to retrieve",
|
|
3578
|
-
},
|
|
3579
|
-
},
|
|
3580
|
-
required: ["conversationId"],
|
|
3581
|
-
},
|
|
3582
|
-
},
|
|
3583
3539
|
{
|
|
3584
3540
|
name: "run_council",
|
|
3585
3541
|
description: "Run the shared LifeOS council deliberation engine and return the synthesized final answer plus council stage details. This is the same council used by the AI panel and claw council skill.",
|
|
@@ -5459,10 +5415,10 @@ ${notesClause}
|
|
|
5459
5415
|
|
|
5460
5416
|
Workflow:
|
|
5461
5417
|
1. Call get_planning_context with daily=true, weekly=true, currentCycle=true, backlog=true, habits=true, dailyFields=true, calendar=true, voiceMemos=true.
|
|
5462
|
-
2. Decide today's top 3, tasks to
|
|
5418
|
+
2. Decide today's top 3, tasks to assign to the day via dueDate, tasks to time-block via scheduledStartAt/scheduledEndAt, backlog items to pull into the current cycle, and any cycle goal updates.
|
|
5463
5419
|
3. Call apply_planning_patch with mode "day" and dryRun=false. Use operations as needed:
|
|
5464
5420
|
- create_issue for new tasks
|
|
5465
|
-
- schedule_issue/update_issue for dueDate/status
|
|
5421
|
+
- schedule_issue/update_issue for dueDate, scheduledStartAt/scheduledEndAt, status, priority, and estimate changes
|
|
5466
5422
|
- assign_issue_to_current_cycle for current cycle work
|
|
5467
5423
|
- set_top_priority for today's top 3
|
|
5468
5424
|
- update_cycle_goals when the current cycle goal should change
|
|
@@ -5587,10 +5543,10 @@ ${notesClause}
|
|
|
5587
5543
|
|
|
5588
5544
|
Workflow:
|
|
5589
5545
|
1. Call get_planning_context with daily=true, weekly=true, currentCycle=true, backlog=true, habits=true, dailyFields=true, calendar=true, voiceMemos=true.
|
|
5590
|
-
2. Shape the week around the current cycle: update cycle goals, pull/assign tasks,
|
|
5546
|
+
2. Shape the week around the current cycle: update cycle goals, pull/assign tasks, assign tasks to days with dueDate, time-block tasks with scheduledStartAt/scheduledEndAt, and set near-term priorities.
|
|
5591
5547
|
3. Call apply_planning_patch with mode "week" and dryRun=false. Use operations as needed:
|
|
5592
5548
|
- create_issue for new tasks
|
|
5593
|
-
- schedule_issue/update_issue for dueDate/status
|
|
5549
|
+
- schedule_issue/update_issue for dueDate, scheduledStartAt/scheduledEndAt, status, priority, and estimate changes
|
|
5594
5550
|
- assign_issue_to_current_cycle for current cycle work
|
|
5595
5551
|
- set_top_priority for immediate focus
|
|
5596
5552
|
- update_cycle_goals for the active cycle
|
|
@@ -5614,11 +5570,11 @@ Do not ask for confirmation; the user intends this planning workflow to mutate L
|
|
|
5614
5570
|
text: `Help me plan my current cycle/sprint in LifeOS and apply the resulting mutations.
|
|
5615
5571
|
|
|
5616
5572
|
1. Call get_planning_context with currentCycle=true, backlog=true, weekly=true, daily=true.
|
|
5617
|
-
2. Shape the current cycle: update cycle goals, pull/assign tasks,
|
|
5573
|
+
2. Shape the current cycle: update cycle goals, pull/assign tasks, assign near-term tasks with dueDate, time-block tasks with scheduledStartAt/scheduledEndAt, and set near-term priorities.
|
|
5618
5574
|
3. Call apply_planning_patch with mode "cycle" and dryRun=false. Use operations as needed:
|
|
5619
5575
|
- create_issue for new tasks
|
|
5620
5576
|
- assign_issue_to_current_cycle for current cycle work
|
|
5621
|
-
- schedule_issue/update_issue for dueDate/status
|
|
5577
|
+
- schedule_issue/update_issue for dueDate, scheduledStartAt/scheduledEndAt, status, priority, and estimate changes
|
|
5622
5578
|
- update_cycle_goals for active cycle goals
|
|
5623
5579
|
- save_daily_note or save_weekly_note when useful as the readable plan artifact
|
|
5624
5580
|
|
|
@@ -7417,27 +7373,6 @@ server.setRequestHandler(GetPromptRequestSchema, async (request) => {
|
|
|
7417
7373
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
7418
7374
|
const { name, arguments: args } = request.params;
|
|
7419
7375
|
try {
|
|
7420
|
-
// Handle LLM Council deliberation (special endpoint, long-running)
|
|
7421
|
-
if (name === "llm_council_deliberate") {
|
|
7422
|
-
const params = args || {};
|
|
7423
|
-
const { userId: overrideUserId } = params;
|
|
7424
|
-
const result = await callConvexJsonEndpoint("/llm-council/mcp-deliberate", {
|
|
7425
|
-
userId: overrideUserId || USER_ID,
|
|
7426
|
-
query: params.query,
|
|
7427
|
-
tier: params.tier,
|
|
7428
|
-
title: params.title,
|
|
7429
|
-
councilModels: params.councilModels,
|
|
7430
|
-
chairmanModel: params.chairmanModel,
|
|
7431
|
-
});
|
|
7432
|
-
return {
|
|
7433
|
-
content: [
|
|
7434
|
-
{
|
|
7435
|
-
type: "text",
|
|
7436
|
-
text: JSON.stringify(result, null, 2),
|
|
7437
|
-
},
|
|
7438
|
-
],
|
|
7439
|
-
};
|
|
7440
|
-
}
|
|
7441
7376
|
if (name === "run_council") {
|
|
7442
7377
|
const params = args || {};
|
|
7443
7378
|
const { userId: overrideUserId } = params;
|
package/package.json
CHANGED