@starascendin/lifeos-mcp 0.7.74 → 0.7.75
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 +17 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -95,8 +95,8 @@ Add to your `.mcp.json` (project root or `~/.claude/mcp.json`):
|
|
|
95
95
|
- **get_tasks** - Get tasks with filters (project, status, priority)
|
|
96
96
|
- **get_todays_tasks** - Get today's tasks and top priorities
|
|
97
97
|
- **get_overdue_tasks** - Get open tasks that are already overdue
|
|
98
|
-
- **create_issue** - Create a new task/issue, optionally with
|
|
99
|
-
- **update_issue** - Update an existing task, including estimate/story points and
|
|
98
|
+
- **create_issue** - Create a new task/issue, optionally with an initial issue calendar block
|
|
99
|
+
- **update_issue** - Update an existing task, including estimate/story points and due date
|
|
100
100
|
- **mark_issue_complete** - Mark a task as done
|
|
101
101
|
- **create_calendar_block** - Create protected calendar-only time without creating a PM issue or Google event
|
|
102
102
|
|
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.75";
|
|
2
|
+
export declare const BUILD_TIME = "2026-05-19T19:39:48.444Z";
|
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.75";
|
|
3
|
+
export const BUILD_TIME = "2026-05-19T19:39:48.444Z";
|
package/dist/index.js
CHANGED
|
@@ -326,15 +326,15 @@ const TOOLS = [
|
|
|
326
326
|
},
|
|
327
327
|
scheduledStartAt: {
|
|
328
328
|
type: "string",
|
|
329
|
-
description: "
|
|
329
|
+
description: "First issue calendar block start datetime in ISO format like '2026-05-18T09:00:00-07:00' (optional, separate from dueDate)",
|
|
330
330
|
},
|
|
331
331
|
scheduledEndAt: {
|
|
332
332
|
type: "string",
|
|
333
|
-
description: "
|
|
333
|
+
description: "First issue calendar block end datetime in ISO format like '2026-05-18T10:30:00-07:00' (optional, required when scheduledStartAt is provided)",
|
|
334
334
|
},
|
|
335
335
|
scheduledTimezone: {
|
|
336
336
|
type: "string",
|
|
337
|
-
description: "IANA timezone for the
|
|
337
|
+
description: "IANA timezone for the issue calendar block, e.g. 'America/Los_Angeles' (optional)",
|
|
338
338
|
},
|
|
339
339
|
cycleId: {
|
|
340
340
|
type: "string",
|
|
@@ -437,11 +437,11 @@ const TOOLS = [
|
|
|
437
437
|
},
|
|
438
438
|
scheduledStartAt: {
|
|
439
439
|
type: "string",
|
|
440
|
-
description: "
|
|
440
|
+
description: "Legacy calendar start datetime. Prefer apply_planning_patch schedule_issue to add issue calendar blocks.",
|
|
441
441
|
},
|
|
442
442
|
scheduledEndAt: {
|
|
443
443
|
type: "string",
|
|
444
|
-
description: "
|
|
444
|
+
description: "Legacy calendar end datetime. Prefer apply_planning_patch schedule_issue to add issue calendar blocks.",
|
|
445
445
|
},
|
|
446
446
|
scheduledTimezone: {
|
|
447
447
|
type: "string",
|
|
@@ -1008,7 +1008,7 @@ const TOOLS = [
|
|
|
1008
1008
|
},
|
|
1009
1009
|
{
|
|
1010
1010
|
name: "apply_planning_patch",
|
|
1011
|
-
description: "Apply an agent-generated day/week/cycle planning patch. Mutates tasks, due dates,
|
|
1011
|
+
description: "Apply an agent-generated day/week/cycle planning patch. Mutates tasks, due dates, issue calendar blocks, protected non-ticket calendar blocks, top priorities, current cycle goals/assignments, daily fields, issue comments, Daily AI Comments, Weekly AI Comments, and daily/weekly notes.",
|
|
1012
1012
|
inputSchema: {
|
|
1013
1013
|
type: "object",
|
|
1014
1014
|
properties: {
|
|
@@ -1035,7 +1035,7 @@ const TOOLS = [
|
|
|
1035
1035
|
},
|
|
1036
1036
|
operations: {
|
|
1037
1037
|
type: "array",
|
|
1038
|
-
description: "Operations to apply. Supported types: create_issue, create_calendar_block, update_issue, schedule_issue, assign_issue_to_current_cycle, set_top_priority, mark_issue_status, save_daily_note, save_weekly_note, set_daily_field, update_cycle_goals, add_issue_comment, add_daily_ai_comment, add_weekly_ai_comment.",
|
|
1038
|
+
description: "Operations to apply. Supported types: create_issue, create_calendar_block, update_issue, schedule_issue, assign_issue_to_current_cycle, set_top_priority, mark_issue_status, save_daily_note, save_weekly_note, set_daily_field, update_cycle_goals, add_issue_comment, add_daily_ai_comment, add_weekly_ai_comment. dueDate is the issue deadline/day assignment. schedule_issue adds one issue calendar block and can be repeated for multiple blocks.",
|
|
1039
1039
|
items: {
|
|
1040
1040
|
type: "object",
|
|
1041
1041
|
properties: {
|
|
@@ -1060,7 +1060,7 @@ const TOOLS = [
|
|
|
1060
1060
|
},
|
|
1061
1061
|
payload: {
|
|
1062
1062
|
type: "object",
|
|
1063
|
-
description: "Operation-specific payload. Use issueIdOrIdentifier for existing tasks, dueDate for day assignment/deadlines, scheduledStartAt/scheduledEndAt
|
|
1063
|
+
description: "Operation-specific payload. Use issueIdOrIdentifier for existing tasks, dueDate for day assignment/deadlines, and schedule_issue with scheduledStartAt/scheduledEndAt or date plus startTime/endTime to add an issue calendar block. Use create_calendar_block with title, timezone, and either startAt/endAt ISO datetimes or date plus startTime/endTime for protected calendar-only blocks that must not create an issue.",
|
|
1064
1064
|
},
|
|
1065
1065
|
},
|
|
1066
1066
|
required: ["type", "payload"],
|
|
@@ -5492,11 +5492,12 @@ ${notesClause}
|
|
|
5492
5492
|
|
|
5493
5493
|
Workflow:
|
|
5494
5494
|
1. Call get_planning_context with daily=true, weekly=true, currentCycle=true, backlog=true, habits=true, dailyFields=true, calendar=true, voiceMemos=true.
|
|
5495
|
-
2. Decide today's top 3, tasks to assign to the day via dueDate,
|
|
5495
|
+
2. Decide today's top 3, tasks to assign to the day or deadline via dueDate, issue calendar blocks to add with schedule_issue, protected non-ticket calendar blocks to create with create_calendar_block, backlog items to pull into the current cycle, and any cycle goal updates.
|
|
5496
5496
|
3. Call apply_planning_patch with mode "day" and dryRun=false. Use operations as needed:
|
|
5497
5497
|
- create_issue for new tasks
|
|
5498
5498
|
- create_calendar_block for protected non-ticket time like errands, meals, dog walking, appointments, or holds; this must not create a PM issue
|
|
5499
|
-
-
|
|
5499
|
+
- update_issue for dueDate, status, priority, and estimate changes
|
|
5500
|
+
- schedule_issue for each issue calendar block using issueIdOrIdentifier plus scheduledStartAt/scheduledEndAt, or date plus startTime/endTime; repeat for multiple blocks
|
|
5500
5501
|
- assign_issue_to_current_cycle for current cycle work
|
|
5501
5502
|
- set_top_priority for today's top 3
|
|
5502
5503
|
- update_cycle_goals when the current cycle goal should change
|
|
@@ -5621,11 +5622,12 @@ ${notesClause}
|
|
|
5621
5622
|
|
|
5622
5623
|
Workflow:
|
|
5623
5624
|
1. Call get_planning_context with daily=true, weekly=true, currentCycle=true, backlog=true, habits=true, dailyFields=true, calendar=true, voiceMemos=true.
|
|
5624
|
-
2. Shape the week around the current cycle: update cycle goals, pull/assign tasks, assign tasks to days with dueDate,
|
|
5625
|
+
2. Shape the week around the current cycle: update cycle goals, pull/assign tasks, assign tasks to days or deadlines with dueDate, add issue calendar blocks with schedule_issue, create protected non-ticket calendar blocks with create_calendar_block, and set near-term priorities.
|
|
5625
5626
|
3. Call apply_planning_patch with mode "week" and dryRun=false. Use operations as needed:
|
|
5626
5627
|
- create_issue for new tasks
|
|
5627
5628
|
- create_calendar_block for protected non-ticket time like errands, meals, dog walking, appointments, or holds
|
|
5628
|
-
-
|
|
5629
|
+
- update_issue for dueDate, status, priority, and estimate changes
|
|
5630
|
+
- schedule_issue for each issue calendar block using issueIdOrIdentifier plus scheduledStartAt/scheduledEndAt, or date plus startTime/endTime; repeat for multiple blocks
|
|
5629
5631
|
- assign_issue_to_current_cycle for current cycle work
|
|
5630
5632
|
- set_top_priority for immediate focus
|
|
5631
5633
|
- update_cycle_goals for the active cycle
|
|
@@ -5649,12 +5651,13 @@ Do not ask for confirmation; the user intends this planning workflow to mutate L
|
|
|
5649
5651
|
text: `Help me plan my current cycle/sprint in LifeOS and apply the resulting mutations.
|
|
5650
5652
|
|
|
5651
5653
|
1. Call get_planning_context with currentCycle=true, backlog=true, weekly=true, daily=true.
|
|
5652
|
-
2. Shape the current cycle: update cycle goals, pull/assign tasks, assign near-term tasks with dueDate,
|
|
5654
|
+
2. Shape the current cycle: update cycle goals, pull/assign tasks, assign near-term tasks to days or deadlines with dueDate, add issue calendar blocks with schedule_issue, create protected non-ticket calendar blocks with create_calendar_block, and set near-term priorities.
|
|
5653
5655
|
3. Call apply_planning_patch with mode "cycle" and dryRun=false. Use operations as needed:
|
|
5654
5656
|
- create_issue for new tasks
|
|
5655
5657
|
- create_calendar_block for protected non-ticket time that should appear on the calendar without creating a PM issue
|
|
5656
5658
|
- assign_issue_to_current_cycle for current cycle work
|
|
5657
|
-
-
|
|
5659
|
+
- update_issue for dueDate, status, priority, and estimate changes
|
|
5660
|
+
- schedule_issue for each issue calendar block using issueIdOrIdentifier plus scheduledStartAt/scheduledEndAt, or date plus startTime/endTime; repeat for multiple blocks
|
|
5658
5661
|
- update_cycle_goals for active cycle goals
|
|
5659
5662
|
- save_daily_note or save_weekly_note when useful as the readable plan artifact
|
|
5660
5663
|
|
package/package.json
CHANGED