@kb-labs/steward-entry 0.1.0

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.
Files changed (90) hide show
  1. package/README.md +5 -0
  2. package/dist/commands/commitment-add.d.ts +15 -0
  3. package/dist/commands/commitment-add.js +53 -0
  4. package/dist/commands/commitment-add.js.map +1 -0
  5. package/dist/commands/commitment-done.d.ts +10 -0
  6. package/dist/commands/commitment-done.js +43 -0
  7. package/dist/commands/commitment-done.js.map +1 -0
  8. package/dist/commands/commitment-drop.d.ts +11 -0
  9. package/dist/commands/commitment-drop.js +43 -0
  10. package/dist/commands/commitment-drop.js.map +1 -0
  11. package/dist/commands/commitment-list.d.ts +13 -0
  12. package/dist/commands/commitment-list.js +37 -0
  13. package/dist/commands/commitment-list.js.map +1 -0
  14. package/dist/commands/commitment-snooze.d.ts +12 -0
  15. package/dist/commands/commitment-snooze.js +54 -0
  16. package/dist/commands/commitment-snooze.js.map +1 -0
  17. package/dist/commands/company-add.d.ts +11 -0
  18. package/dist/commands/company-add.js +34 -0
  19. package/dist/commands/company-add.js.map +1 -0
  20. package/dist/commands/company-list.d.ts +10 -0
  21. package/dist/commands/company-list.js +32 -0
  22. package/dist/commands/company-list.js.map +1 -0
  23. package/dist/commands/event-add.d.ts +14 -0
  24. package/dist/commands/event-add.js +46 -0
  25. package/dist/commands/event-add.js.map +1 -0
  26. package/dist/commands/event-list.d.ts +13 -0
  27. package/dist/commands/event-list.js +38 -0
  28. package/dist/commands/event-list.js.map +1 -0
  29. package/dist/commands/member-add.d.ts +15 -0
  30. package/dist/commands/member-add.js +50 -0
  31. package/dist/commands/member-add.js.map +1 -0
  32. package/dist/commands/member-list.d.ts +10 -0
  33. package/dist/commands/member-list.js +37 -0
  34. package/dist/commands/member-list.js.map +1 -0
  35. package/dist/commands/person-add.d.ts +16 -0
  36. package/dist/commands/person-add.js +52 -0
  37. package/dist/commands/person-add.js.map +1 -0
  38. package/dist/commands/person-get.d.ts +10 -0
  39. package/dist/commands/person-get.js +43 -0
  40. package/dist/commands/person-get.js.map +1 -0
  41. package/dist/commands/person-list.d.ts +10 -0
  42. package/dist/commands/person-list.js +32 -0
  43. package/dist/commands/person-list.js.map +1 -0
  44. package/dist/commands/person-update.d.ts +13 -0
  45. package/dist/commands/person-update.js +53 -0
  46. package/dist/commands/person-update.js.map +1 -0
  47. package/dist/commands/project-add.d.ts +13 -0
  48. package/dist/commands/project-add.js +38 -0
  49. package/dist/commands/project-add.js.map +1 -0
  50. package/dist/commands/project-get.d.ts +10 -0
  51. package/dist/commands/project-get.js +43 -0
  52. package/dist/commands/project-get.js.map +1 -0
  53. package/dist/commands/project-list.d.ts +11 -0
  54. package/dist/commands/project-list.js +34 -0
  55. package/dist/commands/project-list.js.map +1 -0
  56. package/dist/commands/project-update.d.ts +12 -0
  57. package/dist/commands/project-update.js +47 -0
  58. package/dist/commands/project-update.js.map +1 -0
  59. package/dist/commands/resource-add.d.ts +14 -0
  60. package/dist/commands/resource-add.js +44 -0
  61. package/dist/commands/resource-add.js.map +1 -0
  62. package/dist/commands/resource-list.d.ts +10 -0
  63. package/dist/commands/resource-list.js +37 -0
  64. package/dist/commands/resource-list.js.map +1 -0
  65. package/dist/commands/review.d.ts +10 -0
  66. package/dist/commands/review.js +35 -0
  67. package/dist/commands/review.js.map +1 -0
  68. package/dist/commands/topic-add.d.ts +12 -0
  69. package/dist/commands/topic-add.js +44 -0
  70. package/dist/commands/topic-add.js.map +1 -0
  71. package/dist/commands/topic-list.d.ts +10 -0
  72. package/dist/commands/topic-list.js +32 -0
  73. package/dist/commands/topic-list.js.map +1 -0
  74. package/dist/commands/who.d.ts +11 -0
  75. package/dist/commands/who.js +42 -0
  76. package/dist/commands/who.js.map +1 -0
  77. package/dist/index.d.ts +2 -0
  78. package/dist/index.js +406 -0
  79. package/dist/index.js.map +1 -0
  80. package/dist/jobs/daily-review.d.ts +11 -0
  81. package/dist/jobs/daily-review.js +47 -0
  82. package/dist/jobs/daily-review.js.map +1 -0
  83. package/dist/jobs/export-backup.d.ts +13 -0
  84. package/dist/jobs/export-backup.js +32 -0
  85. package/dist/jobs/export-backup.js.map +1 -0
  86. package/dist/manifest.d.ts +490 -0
  87. package/dist/manifest.js +406 -0
  88. package/dist/manifest.js.map +1 -0
  89. package/dist/manifest.json +728 -0
  90. package/package.json +55 -0
@@ -0,0 +1,490 @@
1
+ import * as _kb_labs_plugin_contracts from '@kb-labs/plugin-contracts';
2
+
3
+ declare const manifest: {
4
+ readonly schema: "kb.plugin/3";
5
+ readonly id: "@kb-labs/steward";
6
+ readonly version: "0.1.0";
7
+ readonly display: {
8
+ readonly name: "Steward";
9
+ readonly description: "Personal PM/CRM tool-layer for AI agents: projects, people, commitments, and routing across dozens of parallel projects.";
10
+ readonly tags: readonly ["pm", "crm", "agents", "productivity"];
11
+ };
12
+ readonly platform: {
13
+ readonly requires: readonly ["documentDatabase"];
14
+ };
15
+ readonly cli: {
16
+ readonly groupMeta: readonly [{
17
+ readonly name: "steward";
18
+ readonly description: "Personal PM/CRM for AI agents";
19
+ }];
20
+ readonly commands: readonly [{
21
+ readonly path: "steward project add";
22
+ readonly describe: "Create a new project";
23
+ readonly handler: "./commands/project-add.js#default";
24
+ readonly flags: readonly [{
25
+ readonly name: "name";
26
+ readonly type: "string";
27
+ readonly description: "Project name";
28
+ readonly required: true;
29
+ }, {
30
+ readonly name: "status";
31
+ readonly type: "string";
32
+ readonly description: "active | paused | archived";
33
+ readonly default: "active";
34
+ }, {
35
+ readonly name: "description";
36
+ readonly type: "string";
37
+ readonly description: "Free-text description";
38
+ }, {
39
+ readonly name: "json";
40
+ readonly type: "boolean";
41
+ readonly description: "Emit JSON instead of text";
42
+ }];
43
+ readonly examples: readonly ["kb steward project add --name=\"Acme API\" --description=\"Payments backend\""];
44
+ }, {
45
+ readonly path: "steward project get";
46
+ readonly describe: "Get a project card: status, resources, and members";
47
+ readonly handler: "./commands/project-get.js#default";
48
+ readonly flags: readonly [{
49
+ readonly name: "json";
50
+ readonly type: "boolean";
51
+ readonly description: "Emit JSON instead of text";
52
+ }];
53
+ readonly examples: readonly ["kb steward project get \"Acme API\"", "kb steward project get prj_01H..."];
54
+ }, {
55
+ readonly path: "steward project list";
56
+ readonly describe: "List projects, optionally filtered by status";
57
+ readonly handler: "./commands/project-list.js#default";
58
+ readonly flags: readonly [{
59
+ readonly name: "status";
60
+ readonly type: "string";
61
+ readonly description: "active | paused | archived";
62
+ }, {
63
+ readonly name: "json";
64
+ readonly type: "boolean";
65
+ readonly description: "Emit JSON instead of text";
66
+ }];
67
+ readonly examples: readonly ["kb steward project list", "kb steward project list --status=active"];
68
+ }, {
69
+ readonly path: "steward project update";
70
+ readonly describe: "Update a project's status or description";
71
+ readonly handler: "./commands/project-update.js#default";
72
+ readonly flags: readonly [{
73
+ readonly name: "status";
74
+ readonly type: "string";
75
+ readonly description: "active | paused | archived";
76
+ }, {
77
+ readonly name: "description";
78
+ readonly type: "string";
79
+ readonly description: "New description";
80
+ }, {
81
+ readonly name: "json";
82
+ readonly type: "boolean";
83
+ readonly description: "Emit JSON instead of text";
84
+ }];
85
+ readonly examples: readonly ["kb steward project update prj_01H... --status=paused"];
86
+ }, {
87
+ readonly path: "steward resource add";
88
+ readonly describe: "Attach a resource to a project (repo, stand, dashboard, doc, ...)";
89
+ readonly handler: "./commands/resource-add.js#default";
90
+ readonly flags: readonly [{
91
+ readonly name: "type";
92
+ readonly type: "string";
93
+ readonly description: "Free-form kind, e.g. repo, dev-stand, dashboard";
94
+ readonly required: true;
95
+ }, {
96
+ readonly name: "label";
97
+ readonly type: "string";
98
+ readonly description: "Human-readable label";
99
+ readonly required: true;
100
+ }, {
101
+ readonly name: "url";
102
+ readonly type: "string";
103
+ readonly description: "External link, if any";
104
+ }, {
105
+ readonly name: "content";
106
+ readonly type: "string";
107
+ readonly description: "Stored markdown content, if any";
108
+ }, {
109
+ readonly name: "json";
110
+ readonly type: "boolean";
111
+ readonly description: "Emit JSON instead of text";
112
+ }];
113
+ readonly examples: readonly ["kb steward resource add prj_01H... --type=repo --url=https://github.com/acme/api"];
114
+ }, {
115
+ readonly path: "steward resource list";
116
+ readonly describe: "List resources attached to a project";
117
+ readonly handler: "./commands/resource-list.js#default";
118
+ readonly flags: readonly [{
119
+ readonly name: "json";
120
+ readonly type: "boolean";
121
+ readonly description: "Emit JSON instead of text";
122
+ }];
123
+ readonly examples: readonly ["kb steward resource list prj_01H..."];
124
+ }, {
125
+ readonly path: "steward person add";
126
+ readonly describe: "Add a contact. Returns a possibleDuplicates warning, not an error, on a name match";
127
+ readonly handler: "./commands/person-add.js#default";
128
+ readonly flags: readonly [{
129
+ readonly name: "name";
130
+ readonly type: "string";
131
+ readonly description: "Full name";
132
+ readonly required: true;
133
+ }, {
134
+ readonly name: "topics";
135
+ readonly type: "string";
136
+ readonly description: "Comma-separated global competencies";
137
+ }, {
138
+ readonly name: "company";
139
+ readonly type: "string";
140
+ readonly description: "Company id";
141
+ }, {
142
+ readonly name: "json";
143
+ readonly type: "boolean";
144
+ readonly description: "Emit JSON instead of text";
145
+ }];
146
+ readonly examples: readonly ["kb steward person add --name=\"Ivanov\" --topics=frontend,architecture"];
147
+ }, {
148
+ readonly path: "steward person update";
149
+ readonly describe: "Update a contact's name, topics, or company";
150
+ readonly handler: "./commands/person-update.js#default";
151
+ readonly flags: readonly [{
152
+ readonly name: "name";
153
+ readonly type: "string";
154
+ readonly description: "New name";
155
+ }, {
156
+ readonly name: "topics";
157
+ readonly type: "string";
158
+ readonly description: "Comma-separated global competencies (replaces existing)";
159
+ }, {
160
+ readonly name: "company";
161
+ readonly type: "string";
162
+ readonly description: "Company id";
163
+ }, {
164
+ readonly name: "json";
165
+ readonly type: "boolean";
166
+ readonly description: "Emit JSON instead of text";
167
+ }];
168
+ readonly examples: readonly ["kb steward person update per_01H... --topics=frontend,backend"];
169
+ }, {
170
+ readonly path: "steward person get";
171
+ readonly describe: "Get a contact by id or exact name";
172
+ readonly handler: "./commands/person-get.js#default";
173
+ readonly flags: readonly [{
174
+ readonly name: "json";
175
+ readonly type: "boolean";
176
+ readonly description: "Emit JSON instead of text";
177
+ }];
178
+ readonly examples: readonly ["kb steward person get \"Ivanov\""];
179
+ }, {
180
+ readonly path: "steward person list";
181
+ readonly describe: "List every known contact";
182
+ readonly handler: "./commands/person-list.js#default";
183
+ readonly flags: readonly [{
184
+ readonly name: "json";
185
+ readonly type: "boolean";
186
+ readonly description: "Emit JSON instead of text";
187
+ }];
188
+ readonly examples: readonly ["kb steward person list"];
189
+ }, {
190
+ readonly path: "steward company add";
191
+ readonly describe: "Add a company (thin — just a name to link people to)";
192
+ readonly handler: "./commands/company-add.js#default";
193
+ readonly flags: readonly [{
194
+ readonly name: "name";
195
+ readonly type: "string";
196
+ readonly description: "Company name";
197
+ readonly required: true;
198
+ }, {
199
+ readonly name: "json";
200
+ readonly type: "boolean";
201
+ readonly description: "Emit JSON instead of text";
202
+ }];
203
+ readonly examples: readonly ["kb steward company add --name=\"Acme Corp\""];
204
+ }, {
205
+ readonly path: "steward company list";
206
+ readonly describe: "List companies";
207
+ readonly handler: "./commands/company-list.js#default";
208
+ readonly flags: readonly [{
209
+ readonly name: "json";
210
+ readonly type: "boolean";
211
+ readonly description: "Emit JSON instead of text";
212
+ }];
213
+ readonly examples: readonly ["kb steward company list"];
214
+ }, {
215
+ readonly path: "steward member add";
216
+ readonly describe: "Link a person to a project with a role and fallback priority";
217
+ readonly handler: "./commands/member-add.js#default";
218
+ readonly flags: readonly [{
219
+ readonly name: "person";
220
+ readonly type: "string";
221
+ readonly description: "Person id";
222
+ readonly required: true;
223
+ }, {
224
+ readonly name: "project";
225
+ readonly type: "string";
226
+ readonly description: "Project id";
227
+ readonly required: true;
228
+ }, {
229
+ readonly name: "role";
230
+ readonly type: "string";
231
+ readonly description: "Role in this project";
232
+ readonly required: true;
233
+ }, {
234
+ readonly name: "topics";
235
+ readonly type: "string";
236
+ readonly description: "Comma-separated project-scoped competencies";
237
+ }, {
238
+ readonly name: "priority";
239
+ readonly type: "number";
240
+ readonly description: "Lower = contacted first";
241
+ readonly default: 0;
242
+ }, {
243
+ readonly name: "json";
244
+ readonly type: "boolean";
245
+ readonly description: "Emit JSON instead of text";
246
+ }];
247
+ readonly examples: readonly ["kb steward member add --person=per_01H... --project=prj_01H... --role=lead --priority=0"];
248
+ }, {
249
+ readonly path: "steward member list";
250
+ readonly describe: "List members of a project, ordered by fallback priority";
251
+ readonly handler: "./commands/member-list.js#default";
252
+ readonly flags: readonly [{
253
+ readonly name: "json";
254
+ readonly type: "boolean";
255
+ readonly description: "Emit JSON instead of text";
256
+ }];
257
+ readonly examples: readonly ["kb steward member list prj_01H..."];
258
+ }, {
259
+ readonly path: "steward who";
260
+ readonly describe: "Find who to contact about a topic. With --project, project-scoped members take priority (fallback chain); otherwise matches global competencies across every contact";
261
+ readonly handler: "./commands/who.js#default";
262
+ readonly flags: readonly [{
263
+ readonly name: "project";
264
+ readonly type: "string";
265
+ readonly description: "Prefer members of this project";
266
+ }, {
267
+ readonly name: "json";
268
+ readonly type: "boolean";
269
+ readonly description: "Emit JSON instead of text";
270
+ }];
271
+ readonly examples: readonly ["kb steward who \"frontend\" --project=prj_01H...", "kb steward who \"grafana\""];
272
+ }, {
273
+ readonly path: "steward commitment add";
274
+ readonly describe: "Record a promise made to a person, with an optional soft reminder date";
275
+ readonly handler: "./commands/commitment-add.js#default";
276
+ readonly flags: readonly [{
277
+ readonly name: "text";
278
+ readonly type: "string";
279
+ readonly description: "What was promised";
280
+ readonly required: true;
281
+ }, {
282
+ readonly name: "person";
283
+ readonly type: "string";
284
+ readonly description: "Person id";
285
+ }, {
286
+ readonly name: "project";
287
+ readonly type: "string";
288
+ readonly description: "Project id";
289
+ }, {
290
+ readonly name: "remind-at";
291
+ readonly type: "string";
292
+ readonly description: "ISO date/time for the reminder";
293
+ }, {
294
+ readonly name: "stale-after-days";
295
+ readonly type: "number";
296
+ readonly description: "Days of silence before it counts as stale";
297
+ readonly default: 14;
298
+ }, {
299
+ readonly name: "json";
300
+ readonly type: "boolean";
301
+ readonly description: "Emit JSON instead of text";
302
+ }];
303
+ readonly examples: readonly ["kb steward commitment add --text=\"Send X\" --person=per_01H... --remind-at=2026-09-01"];
304
+ }, {
305
+ readonly path: "steward commitment list";
306
+ readonly describe: "List commitments, optionally only the stale (overdue, unsnoozed) ones";
307
+ readonly handler: "./commands/commitment-list.js#default";
308
+ readonly flags: readonly [{
309
+ readonly name: "status";
310
+ readonly type: "string";
311
+ readonly description: "open | done | dropped";
312
+ }, {
313
+ readonly name: "project";
314
+ readonly type: "string";
315
+ readonly description: "Project id";
316
+ }, {
317
+ readonly name: "stale-only";
318
+ readonly type: "boolean";
319
+ readonly description: "Only overdue, unsnoozed, open commitments";
320
+ }, {
321
+ readonly name: "json";
322
+ readonly type: "boolean";
323
+ readonly description: "Emit JSON instead of text";
324
+ }];
325
+ readonly examples: readonly ["kb steward commitment list --stale-only"];
326
+ }, {
327
+ readonly path: "steward commitment done";
328
+ readonly describe: "Mark a commitment fulfilled";
329
+ readonly handler: "./commands/commitment-done.js#default";
330
+ readonly flags: readonly [{
331
+ readonly name: "json";
332
+ readonly type: "boolean";
333
+ readonly description: "Emit JSON instead of text";
334
+ }];
335
+ readonly examples: readonly ["kb steward commitment done cmt_01H..."];
336
+ }, {
337
+ readonly path: "steward commitment drop";
338
+ readonly describe: "Cancel a commitment — reason is required and recorded in history";
339
+ readonly handler: "./commands/commitment-drop.js#default";
340
+ readonly flags: readonly [{
341
+ readonly name: "reason";
342
+ readonly type: "string";
343
+ readonly description: "Why it was dropped";
344
+ readonly required: true;
345
+ }, {
346
+ readonly name: "json";
347
+ readonly type: "boolean";
348
+ readonly description: "Emit JSON instead of text";
349
+ }];
350
+ readonly examples: readonly ["kb steward commitment drop cmt_01H... --reason=\"No longer relevant\""];
351
+ }, {
352
+ readonly path: "steward commitment snooze";
353
+ readonly describe: "Postpone a commitment's reminder without cancelling it";
354
+ readonly handler: "./commands/commitment-snooze.js#default";
355
+ readonly flags: readonly [{
356
+ readonly name: "until";
357
+ readonly type: "string";
358
+ readonly description: "ISO date/time to snooze until";
359
+ readonly required: true;
360
+ }, {
361
+ readonly name: "reason";
362
+ readonly type: "string";
363
+ readonly description: "Why it was postponed";
364
+ }, {
365
+ readonly name: "json";
366
+ readonly type: "boolean";
367
+ readonly description: "Emit JSON instead of text";
368
+ }];
369
+ readonly examples: readonly ["kb steward commitment snooze cmt_01H... --until=2026-09-15 --reason=\"Waiting on client\""];
370
+ }, {
371
+ readonly path: "steward event add";
372
+ readonly describe: "Record a manual note against a project, person, or commitment — the primary tool for backfill import";
373
+ readonly handler: "./commands/event-add.js#default";
374
+ readonly flags: readonly [{
375
+ readonly name: "subject-type";
376
+ readonly type: "string";
377
+ readonly description: "project | person | commitment | company | resource";
378
+ readonly required: true;
379
+ }, {
380
+ readonly name: "subject-id";
381
+ readonly type: "string";
382
+ readonly description: "Id of the subject";
383
+ readonly required: true;
384
+ }, {
385
+ readonly name: "text";
386
+ readonly type: "string";
387
+ readonly description: "Note text";
388
+ }, {
389
+ readonly name: "kind";
390
+ readonly type: "string";
391
+ readonly description: "Event kind";
392
+ readonly default: "note";
393
+ }, {
394
+ readonly name: "json";
395
+ readonly type: "boolean";
396
+ readonly description: "Emit JSON instead of text";
397
+ }];
398
+ readonly examples: readonly ["kb steward event add --subject-type=person --subject-id=per_01H... --text=\"Talked at the conference\""];
399
+ }, {
400
+ readonly path: "steward event list";
401
+ readonly describe: "Read the history log for a subject — \"what happened with X\"";
402
+ readonly handler: "./commands/event-list.js#default";
403
+ readonly flags: readonly [{
404
+ readonly name: "subject-type";
405
+ readonly type: "string";
406
+ readonly description: "project | person | commitment | company | resource";
407
+ }, {
408
+ readonly name: "subject-id";
409
+ readonly type: "string";
410
+ readonly description: "Id of the subject";
411
+ }, {
412
+ readonly name: "kind";
413
+ readonly type: "string";
414
+ readonly description: "Filter by event kind";
415
+ }, {
416
+ readonly name: "json";
417
+ readonly type: "boolean";
418
+ readonly description: "Emit JSON instead of text";
419
+ }];
420
+ readonly examples: readonly ["kb steward event list --subject-type=project --subject-id=prj_01H..."];
421
+ }, {
422
+ readonly path: "steward topic add";
423
+ readonly describe: "Register a topic with aliases in the routing dictionary — do this deliberately, not automatically";
424
+ readonly handler: "./commands/topic-add.js#default";
425
+ readonly flags: readonly [{
426
+ readonly name: "name";
427
+ readonly type: "string";
428
+ readonly description: "Canonical topic name";
429
+ readonly required: true;
430
+ }, {
431
+ readonly name: "aliases";
432
+ readonly type: "string";
433
+ readonly description: "Comma-separated aliases";
434
+ }, {
435
+ readonly name: "json";
436
+ readonly type: "boolean";
437
+ readonly description: "Emit JSON instead of text";
438
+ }];
439
+ readonly examples: readonly ["kb steward topic add --name=frontend --aliases=фронт,фронтенд,front-end"];
440
+ }, {
441
+ readonly path: "steward topic list";
442
+ readonly describe: "List the topic dictionary";
443
+ readonly handler: "./commands/topic-list.js#default";
444
+ readonly flags: readonly [{
445
+ readonly name: "json";
446
+ readonly type: "boolean";
447
+ readonly description: "Emit JSON instead of text";
448
+ }];
449
+ readonly examples: readonly ["kb steward topic list"];
450
+ }, {
451
+ readonly path: "steward review";
452
+ readonly describe: "Daily summary: stale commitments, upcoming reminders, active projects, and days since the last successful backup";
453
+ readonly handler: "./commands/review.js#default";
454
+ readonly flags: readonly [{
455
+ readonly name: "json";
456
+ readonly type: "boolean";
457
+ readonly description: "Emit JSON instead of text";
458
+ }];
459
+ readonly examples: readonly ["kb steward review"];
460
+ }];
461
+ };
462
+ readonly cron: {
463
+ readonly schedules: readonly [_kb_labs_plugin_contracts.CronDecl, _kb_labs_plugin_contracts.CronDecl];
464
+ };
465
+ readonly jobs: {
466
+ readonly handlers: readonly [{
467
+ readonly id: "daily-review";
468
+ readonly describe: "Writes .kb/steward/reviews/<date>.md";
469
+ readonly handler: "./jobs/daily-review.js#default";
470
+ }, {
471
+ readonly id: "export-backup";
472
+ readonly describe: "Writes .kb/steward/exports/<date>.json — git commit/push happens at the workflow level";
473
+ readonly handler: "./jobs/export-backup.js#default";
474
+ }];
475
+ };
476
+ readonly artifacts: readonly [{
477
+ readonly id: "steward.review.md";
478
+ readonly pathTemplate: ".kb/steward/reviews/{date}.md";
479
+ readonly description: "Daily review — stale commitments, upcoming reminders, backup health.";
480
+ }, {
481
+ readonly id: "steward.export.json";
482
+ readonly pathTemplate: ".kb/steward/exports/{date}.json";
483
+ readonly description: "Daily snapshot of every collection, for the private-repo backup.";
484
+ }];
485
+ };
486
+ declare const withPermissions: typeof manifest & {
487
+ permissions: unknown;
488
+ };
489
+
490
+ export { withPermissions as default };