@starascendin/lifeos-mcp 0.7.71 → 0.7.72
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 -2
- package/dist/build-info.d.ts +2 -2
- package/dist/build-info.js +2 -2
- package/dist/index.js +37 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -98,8 +98,8 @@ Add to your `.mcp.json` (project root or `~/.claude/mcp.json`):
|
|
|
98
98
|
- **get_tasks** - Get tasks with filters (project, status, priority)
|
|
99
99
|
- **get_todays_tasks** - Get today's tasks and top priorities
|
|
100
100
|
- **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
|
|
101
|
+
- **create_issue** - Create a new task/issue, optionally with a calendar start/end time
|
|
102
|
+
- **update_issue** - Update an existing task, including estimate/story points and scheduled calendar time
|
|
103
103
|
- **mark_issue_complete** - Mark a task as done
|
|
104
104
|
|
|
105
105
|
### 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-18T00:
|
|
1
|
+
export declare const VERSION = "0.7.72";
|
|
2
|
+
export declare const BUILD_TIME = "2026-05-18T00:53:07.616Z";
|
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-18T00:
|
|
2
|
+
export const VERSION = "0.7.72";
|
|
3
|
+
export const BUILD_TIME = "2026-05-18T00:53:07.616Z";
|
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"],
|
|
@@ -5459,10 +5487,10 @@ ${notesClause}
|
|
|
5459
5487
|
|
|
5460
5488
|
Workflow:
|
|
5461
5489
|
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
|
|
5490
|
+
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
5491
|
3. Call apply_planning_patch with mode "day" and dryRun=false. Use operations as needed:
|
|
5464
5492
|
- create_issue for new tasks
|
|
5465
|
-
- schedule_issue/update_issue for dueDate/status
|
|
5493
|
+
- schedule_issue/update_issue for dueDate, scheduledStartAt/scheduledEndAt, status, priority, and estimate changes
|
|
5466
5494
|
- assign_issue_to_current_cycle for current cycle work
|
|
5467
5495
|
- set_top_priority for today's top 3
|
|
5468
5496
|
- update_cycle_goals when the current cycle goal should change
|
|
@@ -5587,10 +5615,10 @@ ${notesClause}
|
|
|
5587
5615
|
|
|
5588
5616
|
Workflow:
|
|
5589
5617
|
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,
|
|
5618
|
+
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
5619
|
3. Call apply_planning_patch with mode "week" and dryRun=false. Use operations as needed:
|
|
5592
5620
|
- create_issue for new tasks
|
|
5593
|
-
- schedule_issue/update_issue for dueDate/status
|
|
5621
|
+
- schedule_issue/update_issue for dueDate, scheduledStartAt/scheduledEndAt, status, priority, and estimate changes
|
|
5594
5622
|
- assign_issue_to_current_cycle for current cycle work
|
|
5595
5623
|
- set_top_priority for immediate focus
|
|
5596
5624
|
- update_cycle_goals for the active cycle
|
|
@@ -5614,11 +5642,11 @@ Do not ask for confirmation; the user intends this planning workflow to mutate L
|
|
|
5614
5642
|
text: `Help me plan my current cycle/sprint in LifeOS and apply the resulting mutations.
|
|
5615
5643
|
|
|
5616
5644
|
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,
|
|
5645
|
+
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
5646
|
3. Call apply_planning_patch with mode "cycle" and dryRun=false. Use operations as needed:
|
|
5619
5647
|
- create_issue for new tasks
|
|
5620
5648
|
- assign_issue_to_current_cycle for current cycle work
|
|
5621
|
-
- schedule_issue/update_issue for dueDate/status
|
|
5649
|
+
- schedule_issue/update_issue for dueDate, scheduledStartAt/scheduledEndAt, status, priority, and estimate changes
|
|
5622
5650
|
- update_cycle_goals for active cycle goals
|
|
5623
5651
|
- save_daily_note or save_weekly_note when useful as the readable plan artifact
|
|
5624
5652
|
|
package/package.json
CHANGED