@rubytech/create-maxy-code 0.1.604 → 0.1.605

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 (53) hide show
  1. package/package.json +1 -1
  2. package/payload/platform/lib/routine-templates/dist/roster.d.ts +30 -2
  3. package/payload/platform/lib/routine-templates/dist/roster.d.ts.map +1 -1
  4. package/payload/platform/lib/routine-templates/dist/roster.js +76 -32
  5. package/payload/platform/lib/routine-templates/dist/roster.js.map +1 -1
  6. package/payload/platform/lib/routine-templates/src/__tests__/roster.test.ts +0 -0
  7. package/payload/platform/lib/routine-templates/src/__tests__/seed.test.ts +22 -1
  8. package/payload/platform/lib/routine-templates/src/roster.ts +108 -35
  9. package/payload/platform/plugins/admin/skills/platform-architecture/SKILL.md +3 -3
  10. package/payload/platform/plugins/admin/skills/whats-new/SKILL.md +5 -0
  11. package/payload/platform/plugins/connector/PLUGIN.md +9 -1
  12. package/payload/platform/plugins/connector/mcp/dist/__tests__/queue-descriptor.test.d.ts +2 -0
  13. package/payload/platform/plugins/connector/mcp/dist/__tests__/queue-descriptor.test.d.ts.map +1 -0
  14. package/payload/platform/plugins/connector/mcp/dist/__tests__/queue-descriptor.test.js +67 -0
  15. package/payload/platform/plugins/connector/mcp/dist/__tests__/queue-descriptor.test.js.map +1 -0
  16. package/payload/platform/plugins/connector/mcp/dist/index.js +36 -5
  17. package/payload/platform/plugins/connector/mcp/dist/index.js.map +1 -1
  18. package/payload/platform/plugins/connector/mcp/dist/lib/store.d.ts +35 -0
  19. package/payload/platform/plugins/connector/mcp/dist/lib/store.d.ts.map +1 -1
  20. package/payload/platform/plugins/connector/mcp/dist/lib/store.js +33 -0
  21. package/payload/platform/plugins/connector/mcp/dist/lib/store.js.map +1 -1
  22. package/payload/platform/plugins/connector/mcp/package.json +4 -2
  23. package/payload/platform/plugins/connector/mcp/vitest.config.ts +8 -0
  24. package/payload/platform/plugins/docs/references/admin-ui.md +2 -2
  25. package/payload/platform/plugins/email/PLUGIN.md +4 -0
  26. package/payload/platform/plugins/email/mcp/dist/sampler/__tests__/retention.test.d.ts +2 -0
  27. package/payload/platform/plugins/email/mcp/dist/sampler/__tests__/retention.test.d.ts.map +1 -0
  28. package/payload/platform/plugins/email/mcp/dist/sampler/__tests__/retention.test.js +233 -0
  29. package/payload/platform/plugins/email/mcp/dist/sampler/__tests__/retention.test.js.map +1 -0
  30. package/payload/platform/plugins/email/mcp/dist/sampler/main.js +19 -0
  31. package/payload/platform/plugins/email/mcp/dist/sampler/main.js.map +1 -1
  32. package/payload/platform/plugins/email/mcp/dist/sampler/retention-sources.d.ts +3 -0
  33. package/payload/platform/plugins/email/mcp/dist/sampler/retention-sources.d.ts.map +1 -0
  34. package/payload/platform/plugins/email/mcp/dist/sampler/retention-sources.js +146 -0
  35. package/payload/platform/plugins/email/mcp/dist/sampler/retention-sources.js.map +1 -0
  36. package/payload/platform/plugins/email/mcp/dist/sampler/retention.d.ts +150 -0
  37. package/payload/platform/plugins/email/mcp/dist/sampler/retention.d.ts.map +1 -0
  38. package/payload/platform/plugins/email/mcp/dist/sampler/retention.js +199 -0
  39. package/payload/platform/plugins/email/mcp/dist/sampler/retention.js.map +1 -0
  40. package/payload/platform/plugins/scheduling/PLUGIN.md +8 -1
  41. package/payload/platform/plugins/scheduling/mcp/dist/index.js +1 -1
  42. package/payload/platform/plugins/scheduling/mcp/dist/index.js.map +1 -1
  43. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-gate-write.test.js +40 -0
  44. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-gate-write.test.js.map +1 -1
  45. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/scheduling-gate.test.js +322 -4
  46. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/scheduling-gate.test.js.map +1 -1
  47. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.d.ts.map +1 -1
  48. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.js +21 -1
  49. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.js.map +1 -1
  50. package/payload/platform/plugins/scheduling/mcp/dist/tools/scheduling-gate.d.ts +236 -6
  51. package/payload/platform/plugins/scheduling/mcp/dist/tools/scheduling-gate.d.ts.map +1 -1
  52. package/payload/platform/plugins/scheduling/mcp/dist/tools/scheduling-gate.js +452 -7
  53. package/payload/platform/plugins/scheduling/mcp/dist/tools/scheduling-gate.js.map +1 -1
@@ -93,7 +93,105 @@ export interface GraphUnflaggedCheck {
93
93
  type: "graph-unflagged";
94
94
  label: UnflaggedLabel;
95
95
  }
96
- export type GateCheck = MailCheck | D1Check | WhatsappCheck | CalendarCheck | TelegramCheck | GraphCheck | GraphUnflaggedCheck;
96
+ /** Task 2688 which routine watches a registered connector's queue. */
97
+ export type ConnectorQueueKind = "operational" | "accounting";
98
+ /**
99
+ * Task 2688 — the queue descriptor, as it is held on the connector plugin's own
100
+ * registry record and returned by `connector-list`.
101
+ *
102
+ * Redeclared here rather than imported: no plugin in this tree imports another
103
+ * plugin's source, and the shape arrives as JSON off a tool call. The connector
104
+ * plugin's `queueFromArgs` is the one place the shape is judged at the write;
105
+ * this side only reads what that guard already accepted.
106
+ */
107
+ export interface ConnectorQueue {
108
+ kind: ConnectorQueueKind;
109
+ /** Path under the connector's registered base URL. */
110
+ path: string;
111
+ /** The query parameter that carries the watermark. */
112
+ changedSinceParam: string;
113
+ /** Top-level response field holding the array of changed records. */
114
+ itemsField: string;
115
+ }
116
+ /** One registered connector this check will read. `name` is also its watermark
117
+ * key, because the registry is keyed by it and an account may hold several. */
118
+ export interface ConnectorQueueBinding {
119
+ name: string;
120
+ queue: ConnectorQueue;
121
+ }
122
+ /**
123
+ * Task 2688 — records changed in a connector this account registered, since
124
+ * this routine last woke.
125
+ *
126
+ * `scope` is a KIND of connector, never a connector's name. A shipped routine
127
+ * template can carry no per-account value (Task 2389), so the template names
128
+ * the kind and the account names the queue, once, on the connector's own
129
+ * registry record. That is also why this check has no path and no credential:
130
+ * the connector plugin owns both, along with the host binding and the SSRF
131
+ * guard, and answers on its own tools.
132
+ *
133
+ * It is the only check whose source can fail and still answer "no work". A
134
+ * connector that is not registered, or whose credential is refused, is a fact
135
+ * about the account rather than an outage, and waking a model to rediscover it
136
+ * every fire is what this task removes. Every other failure still counts as
137
+ * work, and each quiet answer writes its own line, because a gate that mutes
138
+ * itself silently is the Task 2313 class.
139
+ */
140
+ export interface ConnectorCheck {
141
+ type: "connector";
142
+ scope: ConnectorQueueKind;
143
+ }
144
+ /**
145
+ * Task 2689 — the memory sweep's own state, for `graph-health`.
146
+ *
147
+ * No fields: an account has exactly one sweep, one orphan queue and one
148
+ * citation queue, so there is nothing to name. What is compared is a digest
149
+ * over the two queue counts and whether the sweep has stopped running, never
150
+ * the newest report's identity — see `digestSweepState`.
151
+ */
152
+ export interface SweepCheck {
153
+ type: "sweep";
154
+ }
155
+ /**
156
+ * Task 2689 — growth under the account's own directory, for
157
+ * `filesystem-health`.
158
+ *
159
+ * A growth threshold rather than a size: the routine reports what ACCUMULATED
160
+ * since it last spoke, and an account that is large and stable has nothing new
161
+ * to say.
162
+ */
163
+ export interface FilesystemCheck {
164
+ type: "filesystem";
165
+ /** Bytes of growth since the last accepted wake. Absent means
166
+ * `FS_DEFAULT_MIN_GROWTH_BYTES`. */
167
+ minGrowthBytes?: number;
168
+ }
169
+ export type GateCheck = MailCheck | D1Check | WhatsappCheck | CalendarCheck | TelegramCheck | GraphCheck | GraphUnflaggedCheck | ConnectorCheck | SweepCheck | FilesystemCheck;
170
+ /**
171
+ * Task 2689 — how long after its newest report the memory sweep counts as
172
+ * stale.
173
+ *
174
+ * The sweep runs hourly and `graph-health`'s own silence condition is "the
175
+ * sweep ran within the past day", so 26 hours gives it two missed runs of slack
176
+ * before the routine is woken.
177
+ */
178
+ export declare const SWEEP_STALE_AFTER_MS: number;
179
+ /**
180
+ * Task 2689 — one week of growth worth a person's attention on a Pi-class disk.
181
+ *
182
+ * The shipped `filesystem-health` template names its threshold explicitly; a
183
+ * gate written by hand that omits the field inherits this.
184
+ */
185
+ export declare const FS_DEFAULT_MIN_GROWTH_BYTES: number;
186
+ /**
187
+ * Task 2689 — the most files one account-directory measurement walks.
188
+ *
189
+ * A bound, not a budget. A directory above it is exactly what
190
+ * `filesystem-health` exists to report, and the walk that stopped there has
191
+ * measured a floor rather than a total, so the check reports work and records
192
+ * no position.
193
+ */
194
+ export declare const FS_WALK_ENTRY_CAP = 200000;
97
195
  /**
98
196
  * Task 2684 — the most node ids one `graph-unflagged` check hands over per fire.
99
197
  *
@@ -114,7 +212,16 @@ export declare const UNFLAGGED_ID_CAP = 500;
114
212
  * time. A second hand-maintained copy is how a type accepted by the writer
115
213
  * becomes a type the prober cannot answer.
116
214
  */
117
- export declare const ACCEPTED_CHECK_TYPES: readonly ["mail", "d1", "whatsapp", "calendar", "telegram", "graph", "graph-unflagged"];
215
+ export declare const ACCEPTED_CHECK_TYPES: readonly ["mail", "d1", "whatsapp", "calendar", "telegram", "graph", "graph-unflagged", "connector", "sweep", "filesystem"];
216
+ /**
217
+ * Task 2688 — the accepted `scope` values on a `connector` check, in one place.
218
+ *
219
+ * The same single-sourcing `ACCEPTED_MAIL_PROVIDERS` has: the probe asks the
220
+ * registry for queues of this kind, and `validateGate` refuses anything outside
221
+ * it at write time. A scope outside the set matches no queue, so the gate would
222
+ * answer quiet on every fire and the routine could never run.
223
+ */
224
+ export declare const ACCEPTED_CONNECTOR_SCOPES: readonly ["operational", "accounting"];
118
225
  /**
119
226
  * Task 2657 — the accepted `provider` values on a `mail` check, in one place.
120
227
  *
@@ -272,6 +379,38 @@ export interface GateWatermarks {
272
379
  graph?: {
273
380
  updatedAt: string;
274
381
  };
382
+ /** Task 2689 — the sweep-state digest the model has already reported on.
383
+ * Not a position in a stream: it is a value that changes when a review queue
384
+ * moves or the sweep stops running, compared exactly as the calendar digest
385
+ * is. */
386
+ sweep?: {
387
+ digest: string;
388
+ };
389
+ /** Task 2689 — the bytes under the account's own directory the model has
390
+ * already reported on. Growth is measured from here, and the dispatcher
391
+ * promotes it only on an accepted wake, so "since the last report" is
392
+ * literal rather than "since the last fire". */
393
+ filesystem?: {
394
+ bytes: number;
395
+ };
396
+ /**
397
+ * Task 2688 — per registered connector, the instant this gate last read that
398
+ * connector's queue.
399
+ *
400
+ * Keyed by connector name because one account may register several, and each
401
+ * is a separate stream: sharing one position would let a quiet connector
402
+ * inherit a mark taken across a busy one, which is the collision the mail
403
+ * watermark's `<mailbox>|<folder>` key exists to avoid.
404
+ *
405
+ * The value is the instant the PROBE started, not a timestamp read off a
406
+ * record, because the descriptor names no per-record timestamp field. A
407
+ * record created while the probe is in flight carries an instant at or after
408
+ * that mark and is therefore reported again on the next fire. Repeat is the
409
+ * safe direction; skip is the Tasks 2471/2654/2664 class.
410
+ */
411
+ connector?: Record<string, {
412
+ changedSince: string;
413
+ }>;
275
414
  /**
276
415
  * Task 2699 — the sorted set of unreachable sources last REPORTED to the
277
416
  * operator, and when it was reported.
@@ -382,6 +521,20 @@ export type MarkSlot = {
382
521
  kind: "calendar";
383
522
  } | {
384
523
  kind: "graph";
524
+ }
525
+ /** Task 2688 — `key` is the registered connector's name. One `connector`
526
+ * check observes one slot per connector of its kind, so a check carries a
527
+ * list of these rather than a single slot. */
528
+ | {
529
+ kind: "connector";
530
+ key: string;
531
+ }
532
+ /** Task 2689 — one sweep and one account directory per account, so neither
533
+ * slot carries a key. */
534
+ | {
535
+ kind: "sweep";
536
+ } | {
537
+ kind: "filesystem";
385
538
  };
386
539
  /**
387
540
  * The name this slot answers to in `advanced` and in `op=commit … positions=`.
@@ -452,12 +605,16 @@ export declare function promoteSlot(slot: MarkSlot, from: GateWatermarks, into:
452
605
  * watermark (`d1`, and `whatsapp` in `status` scope) returns null, because its
453
606
  * answer is a property of the present rather than a position in a stream.
454
607
  */
608
+ export interface ProbeMark {
609
+ slot: MarkSlot;
610
+ write: (m: GateWatermarks) => void;
611
+ }
455
612
  export interface ProbeOutcome {
456
613
  hasWork: boolean;
457
- mark: {
458
- slot: MarkSlot;
459
- write: (m: GateWatermarks) => void;
460
- } | null;
614
+ /** Task 2688 — a LIST is accepted as well as a single mark, because one
615
+ * `connector` check reads one position per registered connector of its kind.
616
+ * Every other check contributes at most one and passes it unchanged. */
617
+ mark: ProbeMark | ProbeMark[] | null;
461
618
  /** Set when the source could not be read; the caller logs it and counts work. */
462
619
  error?: string;
463
620
  /** Task 2684 — the outstanding nodes this check counted, for the dispatcher to
@@ -505,7 +662,80 @@ export interface GateSources {
505
662
  graphUnflagged: (accountId: string, label: UnflaggedLabel, flagKey: string, limit: number) => Promise<{
506
663
  ids: string[];
507
664
  }>;
665
+ /** Task 2688 — the account's registered connectors carrying a queue of
666
+ * `kind`. `pluginPresent` is false when the connector plugin is not
667
+ * installed at all, which is an ANSWER (nothing registered can have moved)
668
+ * rather than a failure, and is therefore reported rather than thrown. */
669
+ connectorQueues: (accountId: string, kind: ConnectorQueueKind) => Promise<{
670
+ pluginPresent: boolean;
671
+ bindings: ConnectorQueueBinding[];
672
+ }>;
673
+ /** Task 2688 — one queue read. Returns the HTTP status the connector answered
674
+ * and how many records it listed above `changedSince`. `truncated` is the
675
+ * connector capping the body: the records cannot be counted, but the cap
676
+ * itself is proof the queue moved, so `items` is 0 and the probe treats it
677
+ * as work. Throws on a transport failure, a body that is not JSON, or an
678
+ * items field that is not an array, each of which the probe counts as work
679
+ * through the error arm. */
680
+ connectorQueueRead: (accountId: string, binding: ConnectorQueueBinding, changedSince: string) => Promise<{
681
+ status: number;
682
+ items: number;
683
+ truncated: boolean;
684
+ }>;
685
+ /** Task 2689 — the memory sweep's newest report instant, or null when it has
686
+ * never run, plus the two review-queue counts. One timestamp and two
687
+ * numbers, no content — the contract every probe here carries. */
688
+ sweepState: (accountId: string) => Promise<{
689
+ newestReportAt: string | null;
690
+ orphans: number;
691
+ citations: number;
692
+ }>;
693
+ /** Task 2689 — the bytes under the account's own directory, and whether the
694
+ * walk stopped at its cap. A capped answer is a floor, not a total. */
695
+ filesystemBytes: (accountId: string) => Promise<{
696
+ bytes: number;
697
+ capped: boolean;
698
+ }>;
508
699
  }
700
+ /**
701
+ * Task 2689 — the memory sweep's state as one comparable value.
702
+ *
703
+ * The two review-queue counts and a staleness flag, never the newest report's
704
+ * identity. The sweep runs hourly and `graph-health` is proposed weekly, so a
705
+ * digest carrying the report id would differ on essentially every fire and the
706
+ * gate could never go quiet. A digest over the queue counts alone would go
707
+ * quiet correctly, but a sweep that STOPPED running moves no queue, so the
708
+ * routine could never report the one failure it exists to catch. The flag gives
709
+ * both: a constant value while the sweep is healthy, one change at the
710
+ * transition into staleness, and one more on the way out.
711
+ *
712
+ * `now` is a parameter rather than a `Date.now()` read inside, so the boundary
713
+ * is testable without moving the clock. A `newestReportAt` this cannot parse
714
+ * throws, through `instantOf`, and a throw counts as work.
715
+ */
716
+ export declare function digestSweepState(state: {
717
+ newestReportAt: string | null;
718
+ orphans: number;
719
+ citations: number;
720
+ }, now: number): string;
721
+ /**
722
+ * Task 2689 — total bytes of the regular files under `root`.
723
+ *
724
+ * A symlink is never followed, so the walk cannot leave the account directory
725
+ * even when something inside points out of it — the rule the filesystem
726
+ * plugin's own walker holds to, and the reason this does not shell out to `du`.
727
+ *
728
+ * A vanished entry (`ENOENT` on a stat, or on a nested directory read) is
729
+ * SKIPPED: an account directory is written to continuously, and a file deleted
730
+ * between the read and the stat contributes nothing to a size. Every other
731
+ * error propagates. The ROOT is read outside that rule, so a missing account
732
+ * directory throws: a wrongly derived root that read zero would answer "nothing
733
+ * grew" for ever, which is the permanent mute this design forbids.
734
+ */
735
+ export declare function measureAccountBytes(root: string, cap: number): {
736
+ bytes: number;
737
+ capped: boolean;
738
+ };
509
739
  /**
510
740
  * D1: the first column of the first row of a single count query.
511
741
  *
@@ -1 +1 @@
1
- {"version":3,"file":"scheduling-gate.d.ts","sourceRoot":"","sources":["../../src/tools/scheduling-gate.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"scheduling-gate.d.ts","sourceRoot":"","sources":["../../src/tools/scheduling-gate.ts"],"names":[],"mappings":"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"}