@starascendin/lifeos-mcp 0.7.56 → 0.7.57
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 +1 -0
- package/dist/build-info.d.ts +2 -2
- package/dist/build-info.js +2 -2
- package/dist/index.js +25 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -82,6 +82,7 @@ Add to your `.mcp.json` (project root or `~/.claude/mcp.json`):
|
|
|
82
82
|
- **get_projects** - List all projects with stats
|
|
83
83
|
- **get_tasks** - Get tasks with filters (project, status, priority)
|
|
84
84
|
- **get_todays_tasks** - Get today's tasks and top priorities
|
|
85
|
+
- **get_overdue_tasks** - Get open tasks that are already overdue
|
|
85
86
|
- **create_issue** - Create a new task/issue
|
|
86
87
|
- **update_issue** - Update an existing task, including estimate/story points
|
|
87
88
|
- **mark_issue_complete** - Mark a task as done
|
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-03-22T17:
|
|
1
|
+
export declare const VERSION = "0.7.57";
|
|
2
|
+
export declare const BUILD_TIME = "2026-03-22T17:26:55.294Z";
|
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-03-22T17:
|
|
2
|
+
export const VERSION = "0.7.57";
|
|
3
|
+
export const BUILD_TIME = "2026-03-22T17:26:55.294Z";
|
package/dist/index.js
CHANGED
|
@@ -236,6 +236,23 @@ const TOOLS = [
|
|
|
236
236
|
},
|
|
237
237
|
},
|
|
238
238
|
},
|
|
239
|
+
{
|
|
240
|
+
name: "get_overdue_tasks",
|
|
241
|
+
description: "Get overdue tasks that are past due and still open. Best for surfacing slipped work explicitly.",
|
|
242
|
+
inputSchema: {
|
|
243
|
+
type: "object",
|
|
244
|
+
properties: {
|
|
245
|
+
userId: {
|
|
246
|
+
type: "string",
|
|
247
|
+
description: "Override the default user ID (optional)",
|
|
248
|
+
},
|
|
249
|
+
date: {
|
|
250
|
+
type: "string",
|
|
251
|
+
description: "Specific date in ISO format used as the overdue cutoff (optional, default: today)",
|
|
252
|
+
},
|
|
253
|
+
},
|
|
254
|
+
},
|
|
255
|
+
},
|
|
239
256
|
{
|
|
240
257
|
name: "create_issue",
|
|
241
258
|
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.",
|
|
@@ -4955,13 +4972,15 @@ const PROMPT_MESSAGES = {
|
|
|
4955
4972
|
|
|
4956
4973
|
1. Call get_daily_agenda for today's agenda (tasks due today, calendar events, top priorities)
|
|
4957
4974
|
2. Call get_todays_tasks for today's task list
|
|
4958
|
-
3. Call
|
|
4975
|
+
3. Call get_overdue_tasks to surface anything already slipping
|
|
4976
|
+
4. Call get_current_cycle for current sprint progress and stats
|
|
4959
4977
|
|
|
4960
4978
|
${dateClause}
|
|
4961
4979
|
|
|
4962
4980
|
Summarize in a concise standup format:
|
|
4963
4981
|
- **Today's Focus**: Top 3 things to focus on
|
|
4964
4982
|
- **Tasks Due**: List tasks due today with priority
|
|
4983
|
+
- **Overdue**: Anything already late that needs immediate triage
|
|
4965
4984
|
- **Sprint Progress**: Cycle completion % and key stats
|
|
4966
4985
|
- **Calendar**: Any meetings or events today
|
|
4967
4986
|
|
|
@@ -5449,12 +5468,13 @@ Present a monthly review:
|
|
|
5449
5468
|
type: "text",
|
|
5450
5469
|
text: `Show what's overdue or slipping. Use the LifeOS MCP tools:
|
|
5451
5470
|
|
|
5452
|
-
1. Call
|
|
5453
|
-
2. Call
|
|
5454
|
-
3. Call
|
|
5471
|
+
1. Call get_overdue_tasks to get overdue open tasks
|
|
5472
|
+
2. Call get_tasks with status "in_progress" to find stale active work
|
|
5473
|
+
3. Call get_projects to get all projects with health status
|
|
5474
|
+
4. Call get_current_cycle to see sprint status
|
|
5455
5475
|
|
|
5456
5476
|
Analyze and identify:
|
|
5457
|
-
- **Overdue tasks**: Tasks
|
|
5477
|
+
- **Overdue tasks**: Tasks returned by get_overdue_tasks
|
|
5458
5478
|
- **Off-track projects**: Projects with health "off_track" or "at_risk"
|
|
5459
5479
|
- **Stale in-progress**: Tasks marked "in_progress" for more than 7 days
|
|
5460
5480
|
- **Sprint slippage**: If cycle completion % is behind expected pace
|
package/package.json
CHANGED