@mind-your-now/myn 0.8.1 → 0.8.3
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 +105 -6
- package/dist/index.js +1 -1
- package/dist/src/tools/debrief.d.ts +1 -0
- package/dist/src/tools/debrief.d.ts.map +1 -1
- package/dist/src/tools/debrief.js +10 -1
- package/dist/src/tools/debrief.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
- package/skills/myn/SKILL.md +12 -10
- package/skills/myn/references/briefing-api.md +11 -183
- package/skills/myn/references/calendar-api.md +177 -55
- package/skills/myn/references/debrief-api.md +182 -0
- package/skills/myn/references/habits-api.md +37 -55
- package/skills/myn/references/household-api.md +37 -14
- package/skills/myn/references/lists-api.md +80 -46
- package/skills/myn/references/memory-api.md +66 -34
- package/skills/myn/references/planning-api.md +58 -155
- package/skills/myn/references/profile-api.md +54 -61
- package/skills/myn/references/projects-api.md +13 -11
- package/skills/myn/references/search-api.md +20 -48
- package/skills/myn/references/tasks-api.md +47 -40
- package/skills/myn/references/timers-api.md +113 -52
- package/skills/myn/references/ynab-api.md +323 -0
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ This plugin integrates [Mind Your Now](https://mindyournow.com) (MYN) with [Open
|
|
|
11
11
|
|
|
12
12
|
## Features
|
|
13
13
|
|
|
14
|
-
- **
|
|
14
|
+
- **14 powerful tools** for complete MYN integration
|
|
15
15
|
- **Urgency-based prioritization** following the MYN methodology
|
|
16
16
|
- **Shared API client** with automatic authentication
|
|
17
17
|
- **Built-in skill companion** for workflow guidance
|
|
@@ -71,8 +71,17 @@ taskType: TASK
|
|
|
71
71
|
priority: CRITICAL
|
|
72
72
|
startDate: "2026-03-01"
|
|
73
73
|
duration: "2h"
|
|
74
|
+
isAutoScheduled: true
|
|
75
|
+
calendarName: "Work"
|
|
76
|
+
scheduleNames:
|
|
77
|
+
- "Morning"
|
|
74
78
|
```
|
|
75
79
|
|
|
80
|
+
**Scheduling Parameters:**
|
|
81
|
+
- `isAutoScheduled` (boolean): Enable auto-scheduling by the planning system. Defaults to `true`.
|
|
82
|
+
- `calendarId` / `calendarName`: Link the task to a specific calendar. `calendarName` is resolved to an ID automatically.
|
|
83
|
+
- `scheduleNames` (string[]): Schedule names to assign (e.g., `["Morning"]`, `["Weekday Evening", "Weekend Morning"]`). Resolved to IDs automatically.
|
|
84
|
+
|
|
76
85
|
### myn_debrief
|
|
77
86
|
Generate and manage Daily Debrief sessions.
|
|
78
87
|
|
|
@@ -84,28 +93,51 @@ action: status | generate | get | apply_correction | complete_session
|
|
|
84
93
|
```yaml
|
|
85
94
|
# Generate morning debrief
|
|
86
95
|
action: generate
|
|
96
|
+
type: DAILY
|
|
87
97
|
context: "Morning planning session"
|
|
88
98
|
focusAreas:
|
|
89
99
|
- work
|
|
90
100
|
- health
|
|
101
|
+
|
|
102
|
+
# Generate evening review
|
|
103
|
+
action: generate
|
|
104
|
+
type: EVENING
|
|
91
105
|
```
|
|
92
106
|
|
|
107
|
+
The `type` parameter for `generate` accepts: `DAILY`, `EVENING`, `WEEKLY`, `WEEKLY_AND_DAILY`, `ON_DEMAND`. Defaults to `DAILY`.
|
|
108
|
+
|
|
93
109
|
### myn_calendar
|
|
94
110
|
Manage calendar events and meetings.
|
|
95
111
|
|
|
96
112
|
```yaml
|
|
97
|
-
action: list_events | create_event | delete_event | meetings
|
|
113
|
+
action: list_calendars | list_events | get_event | create_event | update_event | delete_event | move_event | meetings
|
|
98
114
|
```
|
|
99
115
|
|
|
100
116
|
**Examples:**
|
|
101
117
|
```yaml
|
|
118
|
+
# List available calendars
|
|
119
|
+
action: list_calendars
|
|
120
|
+
|
|
102
121
|
# Create an event
|
|
103
122
|
action: create_event
|
|
104
123
|
title: "Team Standup"
|
|
105
124
|
startTime: "2026-03-01T09:00:00Z"
|
|
106
125
|
endTime: "2026-03-01T09:30:00Z"
|
|
126
|
+
|
|
127
|
+
# Update an event
|
|
128
|
+
action: update_event
|
|
129
|
+
eventId: "event-uuid"
|
|
130
|
+
newTitle: "Team Standup (Rescheduled)"
|
|
131
|
+
newStartTime: "2026-03-01T10:00:00Z"
|
|
132
|
+
|
|
133
|
+
# Move event to family calendar
|
|
134
|
+
action: move_event
|
|
135
|
+
eventId: "event-uuid"
|
|
136
|
+
destinationCalendarName: "Family"
|
|
107
137
|
```
|
|
108
138
|
|
|
139
|
+
Calendar events may include a `taskId` field (MYN task UUID) when the event is linked to a task.
|
|
140
|
+
|
|
109
141
|
### myn_habits
|
|
110
142
|
Track habits, streaks, and reminders.
|
|
111
143
|
|
|
@@ -117,7 +149,7 @@ action: streaks | skip | chains | schedule | reminders
|
|
|
117
149
|
Manage grocery and shopping lists.
|
|
118
150
|
|
|
119
151
|
```yaml
|
|
120
|
-
action: get | add | toggle | bulk_add | convert_to_tasks
|
|
152
|
+
action: get | add | toggle | bulk_add | update | delete | delete_checked | convert_to_tasks
|
|
121
153
|
```
|
|
122
154
|
|
|
123
155
|
### myn_search
|
|
@@ -164,11 +196,11 @@ action: remember | recall | forget | search
|
|
|
164
196
|
# Remember user preference
|
|
165
197
|
action: remember
|
|
166
198
|
content: "User prefers morning meetings before 10am"
|
|
167
|
-
category:
|
|
168
|
-
tags: ["meetings", "preferences"]
|
|
169
|
-
importance: medium
|
|
199
|
+
category: PREFERENCE
|
|
170
200
|
```
|
|
171
201
|
|
|
202
|
+
**Categories:** `PREFERENCE`, `PATTERN`, `STYLE`, `MYN_BEHAVIOR`, `PERSONAL`, `RELATIONSHIP`
|
|
203
|
+
|
|
172
204
|
### myn_profile
|
|
173
205
|
Manage user profile, goals, and preferences.
|
|
174
206
|
|
|
@@ -197,6 +229,73 @@ AI-powered planning and scheduling.
|
|
|
197
229
|
action: plan | schedule_all | reschedule
|
|
198
230
|
```
|
|
199
231
|
|
|
232
|
+
### myn_ynab
|
|
233
|
+
YNAB budget management with full read/write access.
|
|
234
|
+
|
|
235
|
+
```yaml
|
|
236
|
+
# Budget & accounts
|
|
237
|
+
action: budget_overview | category_balance | list_categories | account_balances | set_budget_amount | set_category_goal | goal_progress | budget_months | search_payees
|
|
238
|
+
|
|
239
|
+
# Transactions
|
|
240
|
+
action: create_transaction | create_transactions_bulk | list_transactions | update_transaction | delete_transaction | split_transaction
|
|
241
|
+
|
|
242
|
+
# Scheduled transactions & subscriptions
|
|
243
|
+
action: scheduled_transactions | create_scheduled_transaction | update_scheduled_transaction | delete_scheduled_transaction | subscriptions | upcoming_bills
|
|
244
|
+
|
|
245
|
+
# Analytics
|
|
246
|
+
action: spending_insights | payee_analysis | spending_trends | net_worth | debt_tracking
|
|
247
|
+
|
|
248
|
+
# Category management
|
|
249
|
+
action: create_category_group | create_category | rename_category | move_category | rename_category_group
|
|
250
|
+
|
|
251
|
+
# Connection
|
|
252
|
+
action: connection_status
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
**Examples:**
|
|
256
|
+
```yaml
|
|
257
|
+
# Check budget overview
|
|
258
|
+
action: budget_overview
|
|
259
|
+
|
|
260
|
+
# Create a transaction
|
|
261
|
+
action: create_transaction
|
|
262
|
+
accountId: "account-uuid"
|
|
263
|
+
payeeName: "Grocery Store"
|
|
264
|
+
amount: -45.50
|
|
265
|
+
categoryName: "Groceries"
|
|
266
|
+
|
|
267
|
+
# Get spending insights
|
|
268
|
+
action: spending_insights
|
|
269
|
+
months: 3
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
Amounts are in dollars (negative for expenses). Categories are resolved by name via fuzzy match. `categoryName` is required for all non-transfer transactions.
|
|
273
|
+
|
|
274
|
+
### myn_a2a_pairing
|
|
275
|
+
Pair OpenClaw with MYN/Kaia via the A2A (Agent-to-Agent) protocol.
|
|
276
|
+
|
|
277
|
+
```yaml
|
|
278
|
+
action: redeem_invite | ping | send_message | get_agent_card
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
**Examples:**
|
|
282
|
+
```yaml
|
|
283
|
+
# Redeem an invite code from MYN Settings
|
|
284
|
+
action: redeem_invite
|
|
285
|
+
inviteCode: "ABC-12345"
|
|
286
|
+
agentName: "openclaw"
|
|
287
|
+
|
|
288
|
+
# Ping MYN after pairing
|
|
289
|
+
action: ping
|
|
290
|
+
agentKey: "key-from-redeem-invite"
|
|
291
|
+
|
|
292
|
+
# Send a message to Kaia
|
|
293
|
+
action: send_message
|
|
294
|
+
agentKey: "key-from-redeem-invite"
|
|
295
|
+
message: "Hello from OpenClaw"
|
|
296
|
+
intent: chat
|
|
297
|
+
```
|
|
298
|
+
|
|
200
299
|
## The MYN Methodology
|
|
201
300
|
|
|
202
301
|
Mind Your Now uses **urgency-based prioritization** rather than traditional importance-based systems.
|
package/dist/index.js
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
import type { MynApiClient } from '../client.js';
|
|
5
5
|
export declare const DebriefInputSchema: import("@sinclair/typebox").TObject<{
|
|
6
6
|
action: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"status">, import("@sinclair/typebox").TLiteral<"generate">, import("@sinclair/typebox").TLiteral<"get">, import("@sinclair/typebox").TLiteral<"apply_correction">, import("@sinclair/typebox").TLiteral<"complete_session">]>;
|
|
7
|
+
type: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TLiteral<"DAILY">, import("@sinclair/typebox").TLiteral<"EVENING">, import("@sinclair/typebox").TLiteral<"WEEKLY">, import("@sinclair/typebox").TLiteral<"WEEKLY_AND_DAILY">, import("@sinclair/typebox").TLiteral<"ON_DEMAND">]>>;
|
|
7
8
|
context: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
8
9
|
focusAreas: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
9
10
|
debriefId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"debrief.d.ts","sourceRoot":"","sources":["../../../src/tools/debrief.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAGjD,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"debrief.d.ts","sourceRoot":"","sources":["../../../src/tools/debrief.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAGjD,eAAO,MAAM,kBAAkB;;;;;;;;;;;;EAmC7B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,OAAO,kBAAkB,CAAC,MAAM,CAAC;AAE5D,wBAAsB,cAAc,CAClC,MAAM,EAAE,YAAY,EACpB,KAAK,EAAE,YAAY,GAClB,OAAO,CAAC;IAAE,OAAO,EAAE,IAAI,CAAC;IAAC,IAAI,EAAE,OAAO,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,KAAK,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC,CAsBlG;AAqFD,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,iBAAiB,EAAE,MAAM,EAAE,YAAY,GAAG,IAAI,CAUtF;AAGD,UAAU,iBAAiB;IACzB,YAAY,CAAC,IAAI,EAAE;QACjB,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,EAAE,MAAM,CAAC;QACpB,WAAW,EAAE,OAAO,CAAC;QACrB,OAAO,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;KAC/C,GAAG,IAAI,CAAC;IACT,MAAM,EAAE;QACN,KAAK,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;QAC7B,IAAI,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;QAC5B,IAAI,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;QAC5B,KAAK,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;KAC9B,CAAC;IACF,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACxC"}
|
|
@@ -12,6 +12,13 @@ export const DebriefInputSchema = Type.Object({
|
|
|
12
12
|
Type.Literal('complete_session')
|
|
13
13
|
]),
|
|
14
14
|
// generate parameters
|
|
15
|
+
type: Type.Optional(Type.Union([
|
|
16
|
+
Type.Literal('DAILY'),
|
|
17
|
+
Type.Literal('EVENING'),
|
|
18
|
+
Type.Literal('WEEKLY'),
|
|
19
|
+
Type.Literal('WEEKLY_AND_DAILY'),
|
|
20
|
+
Type.Literal('ON_DEMAND')
|
|
21
|
+
], { description: 'Type of debrief to generate. Defaults to DAILY.' })),
|
|
15
22
|
context: Type.Optional(Type.String({ description: 'Additional context for briefing generation' })),
|
|
16
23
|
focusAreas: Type.Optional(Type.Array(Type.String())),
|
|
17
24
|
// get parameters
|
|
@@ -61,7 +68,9 @@ async function getDebriefStatus(client) {
|
|
|
61
68
|
return jsonResult(data);
|
|
62
69
|
}
|
|
63
70
|
async function generateDebrief(client, input) {
|
|
64
|
-
const body = {
|
|
71
|
+
const body = {
|
|
72
|
+
type: input.type ?? 'DAILY',
|
|
73
|
+
};
|
|
65
74
|
if (input.context)
|
|
66
75
|
body.context = input.context;
|
|
67
76
|
if (input.focusAreas && input.focusAreas.length > 0)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"debrief.js","sourceRoot":"","sources":["../../../src/tools/debrief.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"debrief.js","sourceRoot":"","sources":["../../../src/tools/debrief.ts"],"names":[],"mappings":"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"}
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mind-your-now/myn",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "OpenClaw plugin for Mind Your Now - AI-powered task and life management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"vitest": "^3.0.0"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@mind-your-now/skills": "0.1.
|
|
58
|
+
"@mind-your-now/skills": "0.1.2",
|
|
59
59
|
"@sinclair/typebox": "^0.34.0"
|
|
60
60
|
},
|
|
61
61
|
"engines": {
|
package/skills/myn/SKILL.md
CHANGED
|
@@ -10,16 +10,18 @@ Use these OpenClaw tool names instead of raw REST calls:
|
|
|
10
10
|
|---------------|---------|-----------------|-----------|
|
|
11
11
|
| `myn_tasks` | list, get, create, update, complete, archive, search | `/api/v2/unified-tasks` | [references/tasks-api.md](references/tasks-api.md) |
|
|
12
12
|
| `myn_debrief` | status, generate, get, apply_correction, complete_session | `/api/v2/debrief/*` | [references/debrief-api.md](references/debrief-api.md) |
|
|
13
|
-
| `myn_calendar` | list_events, create_event, delete_event, meetings | `/api/v2/calendar/*` | [references/calendar-api.md](references/calendar-api.md) |
|
|
14
|
-
| `myn_habits` | streaks, skip, chains, schedule, reminders | `/api/
|
|
15
|
-
| `myn_lists` | get, add, toggle, bulk_add, convert_to_tasks | `/api/v1/households/*/grocery-list` | [references/lists-api.md](references/lists-api.md) |
|
|
16
|
-
| `myn_timers` | create_countdown, create_alarm, list, cancel, snooze, pomodoro | `/api/v2/timers
|
|
13
|
+
| `myn_calendar` | list_calendars, list_events, get_event, create_event, update_event, delete_event, move_event, meetings | `/api/v2/calendar/*` | [references/calendar-api.md](references/calendar-api.md) |
|
|
14
|
+
| `myn_habits` | streaks, skip, chains, schedule, reminders | `/api/v2/unified-tasks/*, /api/habits/*` | [references/habits-api.md](references/habits-api.md) |
|
|
15
|
+
| `myn_lists` | get, add, toggle, bulk_add, update, delete, delete_checked, convert_to_tasks | `/api/v1/households/*/grocery-list` | [references/lists-api.md](references/lists-api.md) |
|
|
16
|
+
| `myn_timers` | create_countdown, create_alarm, list, cancel, snooze, pomodoro | `/api/v2/timers/*` | [references/timers-api.md](references/timers-api.md) |
|
|
17
17
|
| `myn_search` | search | `/api/v2/search` | [references/search-api.md](references/search-api.md) |
|
|
18
|
-
| `myn_memory` | remember, recall, forget, search | `/api/v1/customers/memories` | [references/memory-api.md](references/memory-api.md) |
|
|
19
|
-
| `myn_profile` | get_info, get_goals, update_goals, preferences | `/api/v1/customers
|
|
20
|
-
| `myn_household` | members, invite, chores, chore_schedule, chore_complete | `/api/v1/households/*` | [references/household-api.md](references/household-api.md) |
|
|
21
|
-
| `myn_projects` | list, get, create, move_task | `/api/project
|
|
22
|
-
| `myn_planning` | plan, schedule_all, reschedule | `/
|
|
18
|
+
| `myn_memory` | remember, recall, forget, search | `/api/v1/agent/memories, /api/v1/customers/memories` | [references/memory-api.md](references/memory-api.md) |
|
|
19
|
+
| `myn_profile` | get_info, get_goals, update_goals, preferences | `/api/v1/customers` | [references/profile-api.md](references/profile-api.md) |
|
|
20
|
+
| `myn_household` | members, invite, chores, chore_schedule, chore_complete | `/api/v1/households/*, /api/v2/chores/*` | [references/household-api.md](references/household-api.md) |
|
|
21
|
+
| `myn_projects` | list, get, create, move_task | `/api/project/*` | [references/projects-api.md](references/projects-api.md) |
|
|
22
|
+
| `myn_planning` | plan, schedule_all, reschedule | `/planning/*` | [references/planning-api.md](references/planning-api.md) |
|
|
23
|
+
| `myn_ynab` | budget_overview, category_balance, list_categories, account_balances, set_budget_amount, set_category_goal, goal_progress, budget_months, search_payees, create_transaction, create_transactions_bulk, list_transactions, update_transaction, delete_transaction, split_transaction, scheduled_transactions, create_scheduled_transaction, update_scheduled_transaction, delete_scheduled_transaction, subscriptions, upcoming_bills, spending_insights, payee_analysis, spending_trends, net_worth, debt_tracking, create_category_group, create_category, rename_category, move_category, rename_category_group, connection_status | `/api/v1/ynab/*` | [references/ynab-api.md](references/ynab-api.md) |
|
|
24
|
+
| `myn_a2a_pairing` | redeem_invite, ping, send_message, get_agent_card | `/api/v1/agent/*, /a2a/*` | N/A |
|
|
23
25
|
|
|
24
26
|
## Quick Reference
|
|
25
27
|
|
|
@@ -34,7 +36,7 @@ Use these OpenClaw tool names instead of raw REST calls:
|
|
|
34
36
|
|
|
35
37
|
### Task Creation (Required Fields)
|
|
36
38
|
|
|
37
|
-
Every `myn_tasks create` call needs: `title`, `taskType`, `priority`, `startDate`.
|
|
39
|
+
Every `myn_tasks create` call needs: `title`, `taskType`, `priority`, `startDate`. The `id` field is optional (auto-generated if omitted).
|
|
38
40
|
|
|
39
41
|
### Morning Routine
|
|
40
42
|
|
|
@@ -1,187 +1,15 @@
|
|
|
1
|
-
# Briefing API
|
|
1
|
+
# Briefing API (DEPRECATED)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**This API has been deprecated.** The compass/briefing endpoints have been renamed to **debrief**.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
See [debrief-api.md](debrief-api.md) for the current API documentation.
|
|
6
6
|
|
|
7
|
-
`/api/v2/compass
|
|
7
|
+
All `/api/v2/compass/*` endpoints should be replaced with `/api/v2/debrief/*`:
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
Returns the current briefing session state.
|
|
18
|
-
|
|
19
|
-
**Response Fields:**
|
|
20
|
-
|
|
21
|
-
| Field | Type | Description |
|
|
22
|
-
|-------|------|-------------|
|
|
23
|
-
| `hasActiveSession` | boolean | Whether a briefing session is currently active |
|
|
24
|
-
| `sessionId` | UUID | Current session ID (null if no active session) |
|
|
25
|
-
| `lastBriefingId` | UUID | ID of the most recent briefing |
|
|
26
|
-
| `lastBriefingTime` | datetime | Timestamp of the most recent briefing |
|
|
27
|
-
| `pendingCorrections` | number | Count of unprocessed corrections |
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
curl -H "X-API-KEY: $MYN_API_KEY" \
|
|
31
|
-
"$MYN_API_URL/api/v2/compass/status"
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
### Generate Briefing
|
|
35
|
-
|
|
36
|
-
```
|
|
37
|
-
POST /api/v2/compass/generate
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
Generates a new Compass briefing with prioritized task lists and suggestions.
|
|
41
|
-
|
|
42
|
-
**Body Parameters:**
|
|
43
|
-
|
|
44
|
-
| Field | Type | Description |
|
|
45
|
-
|-------|------|-------------|
|
|
46
|
-
| `context` | string | Optional context to guide the briefing (e.g., "busy morning, meetings after 2pm") |
|
|
47
|
-
| `focusAreas` | string[] | Optional focus areas to emphasize (e.g., `["health", "work deadlines"]`) |
|
|
48
|
-
|
|
49
|
-
**Response Fields:**
|
|
50
|
-
|
|
51
|
-
| Field | Type | Description |
|
|
52
|
-
|-------|------|-------------|
|
|
53
|
-
| `briefingId` | UUID | Unique briefing identifier |
|
|
54
|
-
| `sessionId` | UUID | Session this briefing belongs to |
|
|
55
|
-
| `summary` | string | Natural language summary of the day |
|
|
56
|
-
| `criticalNow` | object[] | Tasks requiring immediate attention |
|
|
57
|
-
| `opportunityNow` | object[] | Tasks worth doing if time allows |
|
|
58
|
-
| `overTheHorizon` | object[] | Tasks to keep in mind for later |
|
|
59
|
-
| `upcomingMeetings` | object[] | Meetings and calendar events today |
|
|
60
|
-
| `habitsDue` | object[] | Habits scheduled for today |
|
|
61
|
-
| `suggestions` | string[] | AI-generated actionable suggestions |
|
|
62
|
-
| `createdAt` | datetime | Briefing generation timestamp |
|
|
63
|
-
|
|
64
|
-
```bash
|
|
65
|
-
# Generate a basic briefing
|
|
66
|
-
curl -X POST "$MYN_API_URL/api/v2/compass/generate" \
|
|
67
|
-
-H "X-API-KEY: $MYN_API_KEY" \
|
|
68
|
-
-H "Content-Type: application/json" \
|
|
69
|
-
-d '{}'
|
|
70
|
-
|
|
71
|
-
# Generate with context and focus areas
|
|
72
|
-
curl -X POST "$MYN_API_URL/api/v2/compass/generate" \
|
|
73
|
-
-H "X-API-KEY: $MYN_API_KEY" \
|
|
74
|
-
-H "Content-Type: application/json" \
|
|
75
|
-
-d '{
|
|
76
|
-
"context": "Working from home today, low energy",
|
|
77
|
-
"focusAreas": ["health", "project deadlines"]
|
|
78
|
-
}'
|
|
79
|
-
```
|
|
80
|
-
|
|
81
|
-
### Get Latest Briefing
|
|
82
|
-
|
|
83
|
-
```
|
|
84
|
-
GET /api/v2/compass/latest
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
Returns the most recent briefing without generating a new one.
|
|
88
|
-
|
|
89
|
-
```bash
|
|
90
|
-
curl -H "X-API-KEY: $MYN_API_KEY" \
|
|
91
|
-
"$MYN_API_URL/api/v2/compass/latest"
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
### Get Specific Briefing
|
|
95
|
-
|
|
96
|
-
```
|
|
97
|
-
GET /api/v2/compass/briefings/{briefingId}
|
|
98
|
-
```
|
|
99
|
-
|
|
100
|
-
```bash
|
|
101
|
-
curl -H "X-API-KEY: $MYN_API_KEY" \
|
|
102
|
-
"$MYN_API_URL/api/v2/compass/briefings/550e8400-e29b-41d4-a716-446655440000"
|
|
103
|
-
```
|
|
104
|
-
|
|
105
|
-
### Submit Correction
|
|
106
|
-
|
|
107
|
-
```
|
|
108
|
-
POST /api/v2/compass/corrections
|
|
109
|
-
```
|
|
110
|
-
|
|
111
|
-
Submits a correction to update the active briefing session when reality diverges from the plan.
|
|
112
|
-
|
|
113
|
-
**Body Parameters:**
|
|
114
|
-
|
|
115
|
-
| Field | Type | Description |
|
|
116
|
-
|-------|------|-------------|
|
|
117
|
-
| `type` | string | **Required.** One of: `TASK_COMPLETED`, `TASK_MISSED`, `TASK_RESCHEDULED`, `TASK_ADDED`, `PRIORITY_CHANGED`, `OTHER` |
|
|
118
|
-
| `data` | object | Optional data relevant to the correction type (e.g., `{"taskId": "..."}`) |
|
|
119
|
-
| `reason` | string | Optional human-readable reason for the correction |
|
|
120
|
-
|
|
121
|
-
**Response Fields:**
|
|
122
|
-
|
|
123
|
-
| Field | Type | Description |
|
|
124
|
-
|-------|------|-------------|
|
|
125
|
-
| `correctionId` | UUID | Unique correction identifier |
|
|
126
|
-
| `appliedAt` | datetime | When the correction was applied |
|
|
127
|
-
| `briefingUpdated` | boolean | Whether the active briefing was re-ranked |
|
|
128
|
-
|
|
129
|
-
```bash
|
|
130
|
-
# Mark a task as completed mid-session
|
|
131
|
-
curl -X POST "$MYN_API_URL/api/v2/compass/corrections" \
|
|
132
|
-
-H "X-API-KEY: $MYN_API_KEY" \
|
|
133
|
-
-H "Content-Type: application/json" \
|
|
134
|
-
-d '{
|
|
135
|
-
"type": "TASK_COMPLETED",
|
|
136
|
-
"data": {"taskId": "550e8400-e29b-41d4-a716-446655440000"},
|
|
137
|
-
"reason": "Finished the report early"
|
|
138
|
-
}'
|
|
139
|
-
|
|
140
|
-
# Report a priority change
|
|
141
|
-
curl -X POST "$MYN_API_URL/api/v2/compass/corrections" \
|
|
142
|
-
-H "X-API-KEY: $MYN_API_KEY" \
|
|
143
|
-
-H "Content-Type: application/json" \
|
|
144
|
-
-d '{
|
|
145
|
-
"type": "PRIORITY_CHANGED",
|
|
146
|
-
"data": {"taskId": "660e8400-e29b-41d4-a716-446655440001", "newPriority": "CRITICAL"},
|
|
147
|
-
"reason": "Client moved deadline up"
|
|
148
|
-
}'
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
### Complete Session
|
|
152
|
-
|
|
153
|
-
```
|
|
154
|
-
POST /api/v2/compass/complete
|
|
155
|
-
```
|
|
156
|
-
|
|
157
|
-
Ends the active briefing session with an optional summary and decisions record.
|
|
158
|
-
|
|
159
|
-
**Body Parameters:**
|
|
160
|
-
|
|
161
|
-
| Field | Type | Description |
|
|
162
|
-
|-------|------|-------------|
|
|
163
|
-
| `summary` | string | Optional end-of-session summary |
|
|
164
|
-
| `decisions` | string[] | Optional list of key decisions made during the session |
|
|
165
|
-
|
|
166
|
-
**Response Fields:**
|
|
167
|
-
|
|
168
|
-
| Field | Type | Description |
|
|
169
|
-
|-------|------|-------------|
|
|
170
|
-
| `sessionId` | UUID | The completed session ID |
|
|
171
|
-
| `completedAt` | datetime | Session completion timestamp |
|
|
172
|
-
| `nextSessionRecommended` | datetime | Suggested time for next briefing (nullable) |
|
|
173
|
-
| `followUps` | object[] | Auto-generated follow-up items |
|
|
174
|
-
|
|
175
|
-
```bash
|
|
176
|
-
# Complete the session with a summary
|
|
177
|
-
curl -X POST "$MYN_API_URL/api/v2/compass/complete" \
|
|
178
|
-
-H "X-API-KEY: $MYN_API_KEY" \
|
|
179
|
-
-H "Content-Type: application/json" \
|
|
180
|
-
-d '{
|
|
181
|
-
"summary": "Productive morning, cleared all Critical Now items",
|
|
182
|
-
"decisions": [
|
|
183
|
-
"Postponed quarterly review to Friday",
|
|
184
|
-
"Delegated invoice follow-up to Sarah"
|
|
185
|
-
]
|
|
186
|
-
}'
|
|
187
|
-
```
|
|
9
|
+
| Old Endpoint | New Endpoint |
|
|
10
|
+
|-------------|--------------|
|
|
11
|
+
| `GET /api/v2/compass/status` | `GET /api/v2/debrief/status` |
|
|
12
|
+
| `POST /api/v2/compass/generate` | `POST /api/v2/debrief/generate` |
|
|
13
|
+
| `GET /api/v2/compass/current` | `GET /api/v2/debrief/current` |
|
|
14
|
+
| `POST /api/v2/compass/corrections/apply` | `POST /api/v2/debrief/corrections/apply` |
|
|
15
|
+
| `POST /api/v2/compass/complete` | `POST /api/v2/debrief/complete` |
|