@wowyuarm/dsh-agent-team 0.1.9 → 0.1.11

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 (119) hide show
  1. package/README.md +17 -11
  2. package/README.zh.md +17 -11
  3. package/package.json +61 -47
  4. package/packages/agent-team/README.md +6 -4
  5. package/packages/agent-team/README.zh.md +6 -3
  6. package/packages/agent-team/lib/context-management.js +48 -55
  7. package/packages/agent-team/lib/context-projection.js +22 -8
  8. package/packages/agent-team/lib/context-source.js +163 -23
  9. package/packages/agent-team/lib/index.js +349 -176
  10. package/packages/agent-team/lib/invariant.js +38 -4
  11. package/packages/agent-team/lib/ledger.js +658 -294
  12. package/packages/agent-team/lib/member-context.js +6 -2
  13. package/packages/agent-team/lib/member-time-context.js +141 -0
  14. package/packages/agent-team/lib/pressure-policy.js +34 -11
  15. package/packages/agent-team/lib/progress-nudge.js +12 -4
  16. package/packages/agent-team/lib/session-event-cursor.js +116 -0
  17. package/packages/agent-team/lib/session-remediation.js +493 -0
  18. package/packages/agent-team/lib/spec.js +49 -36
  19. package/packages/agent-team/lib/stored-session-reader.js +138 -0
  20. package/packages/agent-team/lib/time-format.js +56 -0
  21. package/packages/agent-team/lib/typert.host.js +163 -63
  22. package/packages/agent-team/lib/typert.remote-client.d.ts.map +1 -1
  23. package/packages/agent-team/lib/typert.remote-client.js +105 -32
  24. package/packages/agent-team/lib/types/context-management.d.ts +13 -1
  25. package/packages/agent-team/lib/types/context-management.d.ts.map +1 -1
  26. package/packages/agent-team/lib/types/context-projection.d.ts +8 -0
  27. package/packages/agent-team/lib/types/context-projection.d.ts.map +1 -1
  28. package/packages/agent-team/lib/types/context-source.d.ts +70 -36
  29. package/packages/agent-team/lib/types/context-source.d.ts.map +1 -1
  30. package/packages/agent-team/lib/types/index.d.ts +110 -9
  31. package/packages/agent-team/lib/types/index.d.ts.map +1 -1
  32. package/packages/agent-team/lib/types/invariant.d.ts.map +1 -1
  33. package/packages/agent-team/lib/types/ledger.d.ts +205 -7
  34. package/packages/agent-team/lib/types/ledger.d.ts.map +1 -1
  35. package/packages/agent-team/lib/types/member-context.d.ts.map +1 -1
  36. package/packages/agent-team/lib/types/member-time-context.d.ts +83 -0
  37. package/packages/agent-team/lib/types/member-time-context.d.ts.map +1 -0
  38. package/packages/agent-team/lib/types/pressure-policy.d.ts +18 -0
  39. package/packages/agent-team/lib/types/pressure-policy.d.ts.map +1 -1
  40. package/packages/agent-team/lib/types/progress-nudge.d.ts.map +1 -1
  41. package/packages/agent-team/lib/types/session-event-cursor.d.ts +119 -0
  42. package/packages/agent-team/lib/types/session-event-cursor.d.ts.map +1 -0
  43. package/packages/agent-team/lib/types/session-remediation.d.ts +172 -0
  44. package/packages/agent-team/lib/types/session-remediation.d.ts.map +1 -0
  45. package/packages/agent-team/lib/types/spec.d.ts.map +1 -1
  46. package/packages/agent-team/lib/types/stored-session-reader.d.ts +92 -0
  47. package/packages/agent-team/lib/types/stored-session-reader.d.ts.map +1 -0
  48. package/packages/agent-team/lib/types/time-format.d.ts +28 -0
  49. package/packages/agent-team/lib/types/time-format.d.ts.map +1 -0
  50. package/packages/agent-team/lib/types/types/entities.d.ts +36 -2
  51. package/packages/agent-team/lib/types/types/entities.d.ts.map +1 -1
  52. package/packages/agent-team/lib/types/types/operations.d.ts +45 -19
  53. package/packages/agent-team/lib/types/types/operations.d.ts.map +1 -1
  54. package/packages/agent-team/lib/types/types/requests-results.d.ts +50 -3
  55. package/packages/agent-team/lib/types/types/requests-results.d.ts.map +1 -1
  56. package/packages/agent-team/preset/team-member/agent.cordis.yml +21 -4
  57. package/packages/client-agent-team/README.md +1 -1
  58. package/packages/client-agent-team/README.zh.md +1 -1
  59. package/packages/client-agent-team/lib/client.js +1121 -402
  60. package/packages/client-agent-team/lib/client.js.map +1 -1
  61. package/packages/client-agent-team/lib/types/client/TeamAgentsPanel.d.ts.map +1 -1
  62. package/packages/client-agent-team/lib/types/client/TeamAgentsPanel.js +24 -4
  63. package/packages/client-agent-team/lib/types/client/TeamChannelPage.d.ts.map +1 -1
  64. package/packages/client-agent-team/lib/types/client/TeamChannelPage.js +42 -22
  65. package/packages/client-agent-team/lib/types/client/TeamChannelsPanel.d.ts.map +1 -1
  66. package/packages/client-agent-team/lib/types/client/TeamChannelsPanel.js +13 -24
  67. package/packages/client-agent-team/lib/types/client/TeamComposer.d.ts +11 -5
  68. package/packages/client-agent-team/lib/types/client/TeamComposer.d.ts.map +1 -1
  69. package/packages/client-agent-team/lib/types/client/TeamComposer.js +15 -9
  70. package/packages/client-agent-team/lib/types/client/TeamConversation.d.ts +1 -1
  71. package/packages/client-agent-team/lib/types/client/TeamConversation.d.ts.map +1 -1
  72. package/packages/client-agent-team/lib/types/client/TeamConversation.js +8 -1
  73. package/packages/client-agent-team/lib/types/client/TeamInboxPage.d.ts +21 -0
  74. package/packages/client-agent-team/lib/types/client/TeamInboxPage.d.ts.map +1 -0
  75. package/packages/client-agent-team/lib/types/client/TeamInboxPage.js +71 -0
  76. package/packages/client-agent-team/lib/types/client/TeamMemberEditor.d.ts.map +1 -1
  77. package/packages/client-agent-team/lib/types/client/TeamMemberEditor.js +8 -24
  78. package/packages/client-agent-team/lib/types/client/TeamMessage.d.ts +9 -2
  79. package/packages/client-agent-team/lib/types/client/TeamMessage.d.ts.map +1 -1
  80. package/packages/client-agent-team/lib/types/client/TeamMessage.js +13 -6
  81. package/packages/client-agent-team/lib/types/client/TeamPresenceDot.d.ts +8 -0
  82. package/packages/client-agent-team/lib/types/client/TeamPresenceDot.d.ts.map +1 -1
  83. package/packages/client-agent-team/lib/types/client/TeamPresenceDot.js +21 -1
  84. package/packages/client-agent-team/lib/types/client/TeamThreadPage.d.ts.map +1 -1
  85. package/packages/client-agent-team/lib/types/client/TeamThreadPage.js +106 -32
  86. package/packages/client-agent-team/lib/types/client/TeamWorkspaceBrowser.d.ts +1 -1
  87. package/packages/client-agent-team/lib/types/client/TeamWorkspaceBrowser.d.ts.map +1 -1
  88. package/packages/client-agent-team/lib/types/client/TeamWorkspaceBrowser.js +50 -7
  89. package/packages/client-agent-team/lib/types/client/index.d.ts.map +1 -1
  90. package/packages/client-agent-team/lib/types/client/index.js +25 -9
  91. package/packages/client-agent-team/lib/types/client/locales.d.ts +18 -0
  92. package/packages/client-agent-team/lib/types/client/locales.d.ts.map +1 -1
  93. package/packages/client-agent-team/lib/types/client/locales.js +18 -0
  94. package/packages/client-agent-team/lib/types/client/navigation.d.ts +10 -0
  95. package/packages/client-agent-team/lib/types/client/navigation.d.ts.map +1 -1
  96. package/packages/client-agent-team/lib/types/client/navigation.js +18 -7
  97. package/packages/client-agent-team/lib/types/client/scope-coverage.d.ts +41 -0
  98. package/packages/client-agent-team/lib/types/client/scope-coverage.d.ts.map +1 -0
  99. package/packages/client-agent-team/lib/types/client/scope-coverage.js +64 -0
  100. package/packages/client-agent-team/lib/types/client/slots.d.ts +8 -2
  101. package/packages/client-agent-team/lib/types/client/slots.d.ts.map +1 -1
  102. package/packages/client-agent-team/lib/types/client/team-changes.d.ts +26 -1
  103. package/packages/client-agent-team/lib/types/client/team-changes.d.ts.map +1 -1
  104. package/packages/client-agent-team/lib/types/client/team-changes.js +66 -15
  105. package/packages/client-agent-team/lib/types/client/team-dialog-save.d.ts +20 -0
  106. package/packages/client-agent-team/lib/types/client/team-dialog-save.d.ts.map +1 -0
  107. package/packages/client-agent-team/lib/types/client/team-dialog-save.js +36 -0
  108. package/packages/client-agent-team/lib/types/client/team-formatters.d.ts +9 -0
  109. package/packages/client-agent-team/lib/types/client/team-formatters.d.ts.map +1 -1
  110. package/packages/client-agent-team/lib/types/client/team-formatters.js +34 -6
  111. package/packages/tool-agent-team/README.md +8 -6
  112. package/packages/tool-agent-team/README.zh.md +8 -6
  113. package/packages/tool-agent-team/lib/context-tools.js +18 -14
  114. package/packages/tool-agent-team/lib/host-access.js +20 -0
  115. package/packages/tool-agent-team/lib/index.js +314 -123
  116. package/packages/tool-agent-team/lib/types/context-tools.d.ts.map +1 -1
  117. package/packages/tool-agent-team/lib/types/host-access.d.ts +14 -0
  118. package/packages/tool-agent-team/lib/types/host-access.d.ts.map +1 -0
  119. package/packages/tool-agent-team/lib/types/index.d.ts.map +1 -1
@@ -1,28 +1,41 @@
1
1
  /**
2
- * Merge-extended message sources for Agent Team context management.
2
+ * Plugin-attributed message sources for Agent Team context management.
3
3
  *
4
- * The sources ride ordinary `UserMessage`s and never add a Harness
5
- * `ContextForm`: the handoff snapshot reuses the shipped `snapshot` form, the
6
- * quieter notices reuse `notice`. Predicates here are the single place that
7
- * recognizes these notices, so callers never match on localized body text.
4
+ * Both sources ride ordinary `UserMessage`s under the shipped `plugin` kind
5
+ * with the `snapshot` context form — the same shape the Harness's own
6
+ * system-prompt producer writes. This module declares no `MessageSourceMap`
7
+ * member of its own, and carries no bespoke source members: Session format
8
+ * migration validates a `plugin` source against a closed member list
9
+ * (`kind`, `plugin`, `form`, `sections`, `summary`), and refuses every logged
10
+ * Session that carries anything else. A plugin-declared kind is type-legal yet
11
+ * refused the same way. See `docs/dsh-release-compatibility.md`
12
+ * § "Session message sources".
13
+ *
14
+ * Everything the Host needs to read back therefore rides the admitted payload
15
+ * slots: the handoff envelope and the checkpoint correlation both travel as
16
+ * named {@link ContextSnapshotSection} contributions, distinguished by their
17
+ * stable section names. Sections are the format's designed slot for structured
18
+ * producer payload, and they render as named contributions on any
19
+ * snapshot-aware surface.
20
+ *
21
+ * The validators below are the single place that recognizes these messages, so
22
+ * callers never match on localized body text.
8
23
  * @module @wowyuarm/dsh-agent-team/context-source
9
24
  */
10
25
  import type { ContextSnapshotSection, UserMessage } from '@deepseek-ai/dsh-llm';
11
- declare module '@deepseek-ai/dsh-llm' {
12
- interface MessageSourceMap {
13
- /** First model-facing context of one rollover generation: the model-authored handoff plus a verifiable Host envelope. */
14
- 'agent-team-context-handoff': AgentTeamContextHandoffSource;
15
- /** Host-generated quiet continuation after an explicit checkpoint concluded a turn. */
16
- 'agent-team-context-continuation': AgentTeamContextContinuationSource;
17
- }
18
- }
19
- /** Envelope anchor fields the Host adds around the model's own handoff prose. */
20
- export interface AgentTeamContextHandoffSource {
21
- readonly kind: 'agent-team-context-handoff';
22
- /** Existing semantic form: named contributions rendered by any snapshot-aware surface. */
23
- readonly form: 'snapshot';
24
- /** Envelope version; bumps when the envelope fields change meaning. */
25
- readonly version: 1;
26
+ /** Plugin identity attributing every Agent Team message source. */
27
+ export declare const AGENT_TEAM_PLUGIN_ID = "@wowyuarm/dsh-agent-team";
28
+ /** Handoff snapshot section name carrying the model-authored prose. */
29
+ export declare const HANDOFF_SECTION_NAME = "HANDOFF";
30
+ /** Stable section name marking a checkpoint continuation and carrying its ref. */
31
+ export declare const CHECKPOINT_SECTION_NAME = "Checkpoint";
32
+ /** Fixed text of the quiet checkpoint continuation delivered on the next turn. */
33
+ export declare const CHECKPOINT_CONTINUATION_TEXT = "A context checkpoint was recorded at the end of the previous turn. Continue the work you were doing.";
34
+ /**
35
+ * The rollover handoff envelope: the model-authored prose plus the verifiable
36
+ * Host facts, all as named snapshot contributions.
37
+ */
38
+ export interface AgentTeamContextHandoff {
26
39
  /** The Member's Session before this rollover. */
27
40
  readonly previousSessionId: string;
28
41
  /** The rollover generation this handoff opened. */
@@ -38,24 +51,13 @@ export interface AgentTeamContextHandoffSource {
38
51
  /** Named contributions, starting with the model-authored handoff prose. */
39
52
  readonly sections: readonly ContextSnapshotSection[];
40
53
  }
41
- /** Quiet wake that continues work in the turn after an explicit checkpoint. */
42
- export interface AgentTeamContextContinuationSource {
43
- readonly kind: 'agent-team-context-continuation';
44
- readonly form: 'notice';
45
- /** Stable summary identifying this notice family. */
46
- readonly summary: string;
47
- /** The checkpoint this continuation follows; ties the wake to its anchor. */
48
- readonly checkpointRef: string;
49
- /** Envelope version. */
50
- readonly version: 1;
51
- }
52
- /** Stable one-line account for checkpoint continuation notices. */
53
- export declare const CONTEXT_CONTINUATION_NOTICE_SUMMARY = "Context checkpoint recorded; work continues in the next turn";
54
- /** Handoff snapshot section name carrying the model-authored prose. */
55
- export declare const HANDOFF_SECTION_NAME = "HANDOFF";
56
54
  /**
57
55
  * Build the first model-facing context of one rollover generation. The Host
58
56
  * owns only the verifiable envelope; the prose is the Member's own handoff.
57
+ *
58
+ * The envelope sections are additive structure, not the only carrier of these
59
+ * facts: {@link handoffBody} already states them in the model-facing text, so a
60
+ * surface that renders only the body loses nothing.
59
61
  */
60
62
  export declare function createHandoffMessage(input: {
61
63
  readonly handoff: string;
@@ -74,10 +76,42 @@ export declare function createHandoffMessage(input: {
74
76
  * concluded its turn. Delivery is scheduled only after the checkpoint's
75
77
  * successful tool result is durable, so a result-render failure can never
76
78
  * leave a ghost continuation behind.
79
+ *
80
+ * This is a `snapshot` rather than a `notice` for one reason: the projection
81
+ * must read the checkpoint ref back out of the durable log to record delivery,
82
+ * and `sections` is the only admitted payload slot that carries structure. A
83
+ * notice would have forced the ref into its human-readable one-line summary.
77
84
  */
78
85
  export declare function createCheckpointContinuationMessage(checkpointRef: string): UserMessage;
86
+ /**
87
+ * The rollover handoff one message carries, when it is one.
88
+ * @param message - candidate user message.
89
+ * @returns the envelope, or `undefined` when the message is not a handoff.
90
+ */
91
+ export declare function handoffOf(message: UserMessage): AgentTeamContextHandoff | undefined;
92
+ /**
93
+ * The checkpoint ref one continuation notice carries, when the message is one.
94
+ * @param message - candidate user message.
95
+ * @returns the checkpoint ref, or `undefined` when the message is not a continuation.
96
+ */
97
+ export declare function continuationCheckpointRefOf(message: UserMessage): string | undefined;
79
98
  /** Whether one user message is a rollover handoff snapshot. */
80
99
  export declare function isHandoffMessage(message: UserMessage): boolean;
81
- /** Whether one user message is a checkpoint continuation notice, optionally for one checkpoint. */
100
+ /** Whether one user message is a checkpoint continuation, optionally for one checkpoint. */
82
101
  export declare function isCheckpointContinuationMessage(message: UserMessage, checkpointRef?: string): boolean;
102
+ /**
103
+ * Whether one message carries a rollover-handoff or checkpoint-continuation
104
+ * envelope. Ordinary Team notices share this plugin's attribution, so callers
105
+ * that replace rederived notices must exclude these two families explicitly.
106
+ */
107
+ export declare function isAgentTeamContextSource(message: UserMessage): boolean;
108
+ /** Envelope section names; stable, because they are read back from the log.
109
+ * Exported for the legacy-artifact remediation, which rewrites pre-0.1.10
110
+ * envelopes into exactly these names — one shared vocabulary, no drift. */
111
+ export declare const HANDOFF_PREVIOUS_SESSION = "Previous session";
112
+ export declare const HANDOFF_NEW_SESSION = "New session";
113
+ export declare const HANDOFF_TRIGGER = "Trigger";
114
+ export declare const HANDOFF_EVENT_SEQ = "Handoff event seq";
115
+ export declare const HANDOFF_CHECKPOINT = "Continued from checkpoint";
116
+ export declare const HANDOFF_RELATED_FILES = "Related files";
83
117
  //# sourceMappingURL=context-source.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"context-source.d.ts","sourceRoot":"","sources":["../../src/context-source.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,sBAAsB,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAG/E,OAAO,QAAQ,sBAAsB,CAAC;IACpC,UAAU,gBAAgB;QACxB,yHAAyH;QACzH,4BAA4B,EAAE,6BAA6B,CAAA;QAC3D,uFAAuF;QACvF,iCAAiC,EAAE,kCAAkC,CAAA;KACtE;CACF;AAED,iFAAiF;AACjF,MAAM,WAAW,6BAA6B;IAC5C,QAAQ,CAAC,IAAI,EAAE,4BAA4B,CAAA;IAC3C,0FAA0F;IAC1F,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAA;IACzB,uEAAuE;IACvE,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAA;IACnB,iDAAiD;IACjD,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAA;IAClC,mDAAmD;IACnD,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;IAC7B,iCAAiC;IACjC,QAAQ,CAAC,OAAO,EAAE,OAAO,GAAG,UAAU,CAAA;IACtC,wFAAwF;IACxF,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAChC,2EAA2E;IAC3E,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAA;IAC/B,0DAA0D;IAC1D,QAAQ,CAAC,YAAY,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;IACzC,2EAA2E;IAC3E,QAAQ,CAAC,QAAQ,EAAE,SAAS,sBAAsB,EAAE,CAAA;CACrD;AAED,+EAA+E;AAC/E,MAAM,WAAW,kCAAkC;IACjD,QAAQ,CAAC,IAAI,EAAE,iCAAiC,CAAA;IAChD,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAA;IACvB,qDAAqD;IACrD,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,6EAA6E;IAC7E,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,wBAAwB;IACxB,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAA;CACpB;AAED,mEAAmE;AACnE,eAAO,MAAM,mCAAmC,iEAAiE,CAAA;AAEjH,uEAAuE;AACvE,eAAO,MAAM,oBAAoB,YAAY,CAAA;AAE7C;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE;IAC1C,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAA;IAClC,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;IAC7B,QAAQ,CAAC,OAAO,EAAE,OAAO,GAAG,UAAU,CAAA;IACtC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAChC,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAA;IAC/B,QAAQ,CAAC,YAAY,CAAC,EAAE,SAAS;QAAE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;CACvF,GAAG,WAAW,CAgBd;AAED;;;;;GAKG;AACH,wBAAgB,mCAAmC,CAAC,aAAa,EAAE,MAAM,GAAG,WAAW,CAKtF;AAED,+DAA+D;AAC/D,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAE9D;AAED,mGAAmG;AACnG,wBAAgB,+BAA+B,CAAC,OAAO,EAAE,WAAW,EAAE,aAAa,CAAC,EAAE,MAAM,GAAG,OAAO,CAIrG"}
1
+ {"version":3,"file":"context-source.d.ts","sourceRoot":"","sources":["../../src/context-source.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAEH,OAAO,KAAK,EAAE,sBAAsB,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAG/E,mEAAmE;AACnE,eAAO,MAAM,oBAAoB,6BAA6B,CAAA;AAE9D,uEAAuE;AACvE,eAAO,MAAM,oBAAoB,YAAY,CAAA;AAE7C,kFAAkF;AAClF,eAAO,MAAM,uBAAuB,eAAe,CAAA;AAEnD,kFAAkF;AAClF,eAAO,MAAM,4BAA4B,yGAAyG,CAAA;AAElJ;;;GAGG;AACH,MAAM,WAAW,uBAAuB;IACtC,iDAAiD;IACjD,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAA;IAClC,mDAAmD;IACnD,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;IAC7B,iCAAiC;IACjC,QAAQ,CAAC,OAAO,EAAE,OAAO,GAAG,UAAU,CAAA;IACtC,wFAAwF;IACxF,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAChC,2EAA2E;IAC3E,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAA;IAC/B,0DAA0D;IAC1D,QAAQ,CAAC,YAAY,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;IACzC,2EAA2E;IAC3E,QAAQ,CAAC,QAAQ,EAAE,SAAS,sBAAsB,EAAE,CAAA;CACrD;AAED;;;;;;;GAOG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE;IAC1C,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAA;IAClC,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;IAC7B,QAAQ,CAAC,OAAO,EAAE,OAAO,GAAG,UAAU,CAAA;IACtC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAChC,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAA;IAC/B,QAAQ,CAAC,YAAY,CAAC,EAAE,SAAS;QAAE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;CACvF,GAAG,WAAW,CAUd;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,mCAAmC,CAAC,aAAa,EAAE,MAAM,GAAG,WAAW,CAUtF;AAsCD;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,OAAO,EAAE,WAAW,GAAG,uBAAuB,GAAG,SAAS,CAwBnF;AAED;;;;GAIG;AACH,wBAAgB,2BAA2B,CAAC,OAAO,EAAE,WAAW,GAAG,MAAM,GAAG,SAAS,CAKpF;AAED,+DAA+D;AAC/D,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAE9D;AAED,4FAA4F;AAC5F,wBAAgB,+BAA+B,CAAC,OAAO,EAAE,WAAW,EAAE,aAAa,CAAC,EAAE,MAAM,GAAG,OAAO,CAGrG;AAED;;;;GAIG;AACH,wBAAgB,wBAAwB,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAEtE;AAED;;2EAE2E;AAC3E,eAAO,MAAM,wBAAwB,qBAAqB,CAAA;AAC1D,eAAO,MAAM,mBAAmB,gBAAgB,CAAA;AAChD,eAAO,MAAM,eAAe,YAAY,CAAA;AACxC,eAAO,MAAM,iBAAiB,sBAAsB,CAAA;AACpD,eAAO,MAAM,kBAAkB,8BAA8B,CAAA;AAC7D,eAAO,MAAM,qBAAqB,kBAAkB,CAAA"}
@@ -19,6 +19,24 @@ export { AGENT_TEAM_TOOL_NAMES } from './member-runtime.ts';
19
19
  export declare const AGENT_TEAM_PRESET_MARKER: unique symbol;
20
20
  /** Mark the preset's `team_message` definition as an Agent Team consumer. */
21
21
  export declare function markAgentTeamPreset<T extends object>(definition: T): T;
22
+ /**
23
+ * Whether the running dsh loads workspace packages from source via tsx.
24
+ *
25
+ * The Harness `tsconfig.base.json` maps `@deepseek-ai/*` package names onto
26
+ * `src/` directories; tsx honors those paths, so a CLI launched with
27
+ * `node --import tsx/esm apps/cli/src/bin.ts` imports `@deepseek-ai/dsh-scope`
28
+ * from `src/index.ts` while a profile-installed bundle resolves the compiled
29
+ * `lib/index.js` — two module instances with independent scope keys.
30
+ */
31
+ export declare function isTsxDevMode(): boolean;
32
+ /**
33
+ * The activation diagnostic for a dsh-scope module-instance mismatch.
34
+ *
35
+ * `agentPresets.mount` already rejected an unscoped context, so a scope key
36
+ * the harness sees but this bundle does not can only mean the two sides
37
+ * loaded different physical copies of `@deepseek-ai/dsh-scope`.
38
+ */
39
+ export declare function teamPresetScopeMismatchMessage(tsxDevMode: boolean): string;
22
40
  export interface AgentTeamCommitted {
23
41
  readonly receipt: AgentTeamOperationReceipt;
24
42
  }
@@ -104,6 +122,15 @@ export interface AgentTeamTimelineToolResult {
104
122
  readonly hardLimit: number;
105
123
  readonly handoffAt: number;
106
124
  readonly items: readonly AgentTeamTimelineItem[];
125
+ /**
126
+ * The unreadable ancestor that ended the lineage walk early, when one did:
127
+ * history is complete through the last listed source and provably absent
128
+ * beyond it. Never a Member-availability fact.
129
+ */
130
+ readonly incompleteFrom?: {
131
+ readonly sessionId: SessionId;
132
+ readonly reason: string;
133
+ };
107
134
  }
108
135
  /** Host owner of the single Agent Team in one dshHome. */
109
136
  export default class AgentTeam extends TypertRemoteService {
@@ -119,6 +146,13 @@ export default class AgentTeam extends TypertRemoteService {
119
146
  private readonly runningAgents;
120
147
  /** Per-Member runtime state: tool restrictions, skill mounts, warnings, private memory. */
121
148
  private readonly memberRuntime;
149
+ /**
150
+ * The single seam for every per-Session stored read: handle lifecycle and
151
+ * failure normalization live here, so a DSH persistence-interface change is
152
+ * adapted once, and consumers choose policy by failure category instead of
153
+ * matching error text.
154
+ */
155
+ private readonly sessionReader;
122
156
  /**
123
157
  * Why one Member shows error presence, per failure source. Reads prefer
124
158
  * activation, then runtime, then compaction; slots clear independently, so
@@ -137,6 +171,14 @@ export default class AgentTeam extends TypertRemoteService {
137
171
  * writes Team facts. See docs/team-collaboration.md for the regimes.
138
172
  */
139
173
  private readonly progressNudge;
174
+ /**
175
+ * Incremental fold state for {@link contextManagement}'s projection lookup:
176
+ * one entry per Member, replaced when that Member's Session changes. Keying
177
+ * by Member rather than by Session id is what bounds the map — a rollover
178
+ * that leaves the previous generation's projection behind retains it for the
179
+ * life of the process, and only the current Session can ever read it.
180
+ */
181
+ private readonly contextCursors;
140
182
  /**
141
183
  * Context self-management: the one deep module that turns a Member's
142
184
  * successful `context_rollover` tool result into its next private context
@@ -147,18 +189,29 @@ export default class AgentTeam extends TypertRemoteService {
147
189
  private readonly contextManagement;
148
190
  private lifecycleTail;
149
191
  private accepting;
150
- private changeVersion;
192
+ /**
193
+ * Presence wake epoch: Agent running/idle/failure is runtime state with no
194
+ * durable fact behind it, so the presence scope counts those edge wakes in
195
+ * process. It never takes part in a projection waiter's comparison.
196
+ */
197
+ private presenceEpoch;
151
198
  private readonly changeWaiters;
199
+ /**
200
+ * The startup-opened remediation instance, held for the restart heal: the
201
+ * completion-cache domain may only be opened once per plugin lifecycle, so
202
+ * the restart path reuses this instance instead of opening its own.
203
+ */
204
+ private remediation;
152
205
  constructor(ctx: Context);
153
206
  /** Open the durable ledger and restore every enabled Member independently. */
154
207
  protected [Service.init](): Promise<void>;
155
208
  /**
156
209
  * Whether one Member Session has durable persisted content, decided through
157
- * {@link SessionPersistenceService.inspect} rather than a bare metadata
158
- * listing: inspection first awaits any in-flight retirement drain for the
159
- * id, so a resume racing a suspend's fire-and-forget final flush cannot
160
- * mistake a still-draining persisted Session for an unpersisted one and
161
- * fork a fresh generation over it.
210
+ * {@link SessionPersistence.stat} rather than a bare metadata listing: the
211
+ * backend reports a still-draining session through its pending header, so a
212
+ * resume racing a suspend's fire-and-forget final flush cannot mistake a
213
+ * still-draining persisted Session for an unpersisted one and fork a fresh
214
+ * generation over it.
162
215
  */
163
216
  private sessionPersisted;
164
217
  /** Resolve one exact live Agent to its durable Team Member; forks do not inherit identity. */
@@ -301,7 +354,7 @@ export default class AgentTeam extends TypertRemoteService {
301
354
  reply(request: AgentTeamReplyRequest): Promise<AgentTeamReplyResult>;
302
355
  /** Human's personal Attention operation. */
303
356
  changeAttention(request: AgentTeamThreadAttentionRequest): Promise<AgentTeamThreadAttentionResult>;
304
- /** Host-only Human Inbox projection; the Web Client does not consume it. */
357
+ /** Human Inbox projection; the Web Client consumes the direct-only slice as its mention queue. */
305
358
  inbox(request: AgentTeamInboxRequest): AgentTeamInbox;
306
359
  /** Human's durable, atomically acknowledged Thread read. */
307
360
  readThread(request: AgentTeamThreadReadRequest): Promise<AgentTeamThreadReadResult>;
@@ -355,6 +408,14 @@ export default class AgentTeam extends TypertRemoteService {
355
408
  viewForAgent(agent: Agent, request: AgentTeamViewRequest): AgentTeamView;
356
409
  /** Validate the durable ledger against an independently replayed projection. */
357
410
  validateLedger(): void;
411
+ /**
412
+ * Validate the durable ledger for the invariant's mount check. The
413
+ * constructor already re-derived every durable record against its own
414
+ * scratch projection, so this adopts that conclusion once while nothing has
415
+ * committed since; every other call, and every commit-driven validation,
416
+ * replays the whole table again.
417
+ */
418
+ validateLedgerAtMount(): void;
358
419
  /**
359
420
  * Effective context-pressure budget for one Member's current route:
360
421
  * `hardLimit = min(256K, routeWindow - outputReserve)` and
@@ -423,8 +484,15 @@ export default class AgentTeam extends TypertRemoteService {
423
484
  * CURRENTLY present: delivered `user/message` ids plus the live inbox's
424
485
  * pending next-step/next-turn ids — a historical insert that was already
425
486
  * claimed (and removed) but never surfaced is NOT known and must replay.
426
- * Fail-closed: an unreadable previous Session rejects the activation
427
- * rather than silently dropping the Member's input.
487
+ * Fail-closed for genuinely unreadable previous Sessions (missing/IO) so
488
+ * the Member's input is never dropped silently, with three bounded
489
+ * exceptions: a generation that already started its own turns needs no
490
+ * replay (its carried input was delivered or superseded while it ran), a
491
+ * log-corruption class error skips with a warning (the Host repairs torn
492
+ * tails; a retired generation's corrupt log must not permanently block the
493
+ * Member's activation), and a deterministic released-format refusal skips
494
+ * with a warning (the candidate's own migration audit refuses that
495
+ * artifact, so no retry can ever read it).
428
496
  */
429
497
  private replayCarriedInput;
430
498
  /**
@@ -555,6 +623,18 @@ export default class AgentTeam extends TypertRemoteService {
555
623
  private validateMemberPreset;
556
624
  private memberStatus;
557
625
  private setMemberFailure;
626
+ /** Store one structured activation diagnostic; runtime/compaction slots stay plain messages. */
627
+ private setActivationDiagnostic;
628
+ /**
629
+ * Route one activation failure to its diagnostic class: preset composition
630
+ * failures by their own error class, session failures by the seam's typed
631
+ * classification (our call sites carry it directly; a Harness resume
632
+ * failure carries it through the cause chain), everything else as an
633
+ * unclassified activation failure.
634
+ */
635
+ private activationDiagnosticOf;
636
+ /** Mark a session-refused activation diagnostic as proven non-remediable. */
637
+ private markRefusalNonRemediable;
558
638
  private clearMemberFailure;
559
639
  private requireWorkspace;
560
640
  private requireLedger;
@@ -565,6 +645,12 @@ export default class AgentTeam extends TypertRemoteService {
565
645
  /** Model-visible running/stopping job labels for the pressure notice. */
566
646
  private runningJobLabels;
567
647
  private emitAutoCompactionChanged;
648
+ /**
649
+ * Presence-only invalidation: Agent running/idle/activation/failure changes
650
+ * alter no durable projection, so only members/presence subscribers wake —
651
+ * the workspace catalog and the scope-less Inbox subscriptions stay parked.
652
+ */
653
+ private emitPresenceChanged;
568
654
  /** Wake from durable unread state with bounded facts for direct and state-changing work. */
569
655
  private notifyMember;
570
656
  private isInboxNotice;
@@ -580,8 +666,23 @@ export default class AgentTeam extends TypertRemoteService {
580
666
  * Wake waiters for one committed or lifecycle change. Undefined broadcasts
581
667
  * to everyone; an empty scope list invalidates nobody because no shared
582
668
  * projection changed; otherwise global and matching scoped waiters wake.
669
+ * Presence-only scopes sit outside that: they change no durable projection,
670
+ * so only matching presence waiters wake and the scope-less Inbox
671
+ * subscriptions stay parked.
672
+ *
673
+ * Each woken waiter receives the version of its own scope's domain, so a
674
+ * wake can never hand a projection waiter a presence number or the other way
675
+ * around. Nothing here advances the projection version.
583
676
  */
584
677
  private emitChanged;
678
+ /**
679
+ * The cursor domain of one scope: presence scopes count process-local edge
680
+ * wakes, every other scope compares against the durable ledger position of
681
+ * the newest shared-projection commit. The two domains are deliberately
682
+ * separate, so a presence edge cannot invalidate a projection subscriber and
683
+ * a private read invalidates no one.
684
+ */
685
+ private changeVersionOf;
585
686
  private validateChangeScope;
586
687
  private enqueueLifecycle;
587
688
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAA;AACtD,OAAO,EAAyB,KAAK,KAAK,EAA4C,MAAM,wBAAwB,CAAA;AAMpH,OAAO,EAAW,SAAS,EAAuC,MAAM,0BAA0B,CAAA;AAGlG,OAAO,EAAU,mBAAmB,EAAE,MAAM,kCAAkC,CAAA;AAU9E,OAAO,EAAoE,KAAK,4BAA4B,EAAE,MAAM,aAAa,CAAA;AASjI,OAAO,KAAK,EACV,yBAAyB,EACzB,oBAAoB,EACpB,0BAA0B,EAC1B,8BAA8B,EAC9B,6BAA6B,EAC7B,6BAA6B,EAC7B,4BAA4B,EAE5B,uBAAuB,EACvB,sBAAsB,EAEtB,kBAAkB,EAClB,qBAAqB,EACrB,oBAAoB,EACpB,2BAA2B,EAC3B,6BAA6B,EAG7B,6BAA6B,EAC7B,4BAA4B,EAC5B,6BAA6B,EAC7B,4BAA4B,EAC5B,cAAc,EACd,qBAAqB,EACrB,2BAA2B,EAC3B,0BAA0B,EAI1B,iBAAiB,EACjB,qBAAqB,EACrB,uBAAuB,EACvB,+BAA+B,EAC/B,8BAA8B,EAG9B,yBAAyB,EACzB,6BAA6B,EAC7B,4BAA4B,EAC5B,6BAA6B,EAC7B,4BAA4B,EAC5B,6BAA6B,EAC7B,4BAA4B,EAC5B,kCAAkC,EAClC,iCAAiC,EACjC,+BAA+B,EAC/B,kBAAkB,EAClB,iBAAiB,EAEjB,mCAAmC,EACnC,kCAAkC,EAClC,4BAA4B,EAC5B,2BAA2B,EAC3B,qBAAqB,EACrB,oBAAoB,EACpB,2BAA2B,EAC3B,0BAA0B,EAC1B,8BAA8B,EAC9B,eAAe,EACf,aAAa,EACb,oBAAoB,EACpB,mBAAmB,EACnB,+BAA+B,EAC/B,8BAA8B,EAC9B,8BAA8B,EAC9B,sBAAsB,EACtB,6BAA6B,EAC7B,0BAA0B,EAC1B,yBAAyB,EAGzB,2BAA2B,EAC3B,kCAAkC,EAClC,6BAA6B,EAC7B,4BAA4B,EAC5B,4BAA4B,EAC5B,aAAa,EACb,oBAAoB,EACrB,MAAM,YAAY,CAAA;AAEnB,OAAO,EAAE,mBAAmB,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAA;AACzE,mBAAmB,YAAY,CAAA;AAC/B,OAAO,EAAE,0BAA0B,EAAE,gCAAgC,EAAE,MAAM,aAAa,CAAA;AAC1F,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAA;AAE3D,+EAA+E;AAC/E,eAAO,MAAM,wBAAwB,eAAgD,CAAA;AAoDrF,6EAA6E;AAC7E,wBAAgB,mBAAmB,CAAC,CAAC,SAAS,MAAM,EAAE,UAAU,EAAE,CAAC,GAAG,CAAC,CAGtE;AAED;;;;;;;;GAQG;AACH,wBAAgB,YAAY,IAAI,OAAO,CAKtC;AAED;;;;;;GAMG;AACH,wBAAgB,8BAA8B,CAAC,UAAU,EAAE,OAAO,GAAG,MAAM,CAK1E;AAED,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,OAAO,EAAE,yBAAyB,CAAA;CAC5C;AAED;;;;;GAKG;AACH,qBAAa,wBAAyB,SAAQ,KAAK;IACrC,QAAQ,CAAC,iBAAiB,EAAE,iBAAiB;IAAE,QAAQ,CAAC,eAAe,EAAE,MAAM;gBAAtE,iBAAiB,EAAE,iBAAiB,EAAW,eAAe,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM;CAI7G;AAED,OAAO,QAAQ,qBAAqB,CAAC;IACnC,UAAU,OAAO;QACf,SAAS,EAAE,SAAS,CAAA;KACrB;IAED,UAAU,MAAM;QACd,8EAA8E;QAC9E,sBAAsB,CAAC,KAAK,EAAE,kBAAkB,GAAG,IAAI,CAAA;KACxD;CACF;AAED,2FAA2F;AAC3F,MAAM,WAAW,8BAA8B;IAC7C,QAAQ,CAAC,QAAQ,EAAE,iBAAiB,CAAA;IACpC,2EAA2E;IAC3E,QAAQ,CAAC,aAAa,CAAC,EAAE,6BAA6B,CAAA;IACtD,QAAQ,CAAC,YAAY,CAAC,EAAE,SAAS;QAAE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;CACtF;AAED,qFAAqF;AACrF,MAAM,WAAW,8BAA8B;IAC7C,QAAQ,CAAC,IAAI,EAAE,OAAO,GAAG,iBAAiB,CAAA;CAC3C;AAED,8FAA8F;AAC9F,MAAM,WAAW,8BAA8B;IAC7C,QAAQ,CAAC,QAAQ,EAAE,iBAAiB,CAAA;IACpC,iFAAiF;IACjF,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;IACvB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;CACtB;AAED,4FAA4F;AAC5F,MAAM,WAAW,8BAA8B;IAC7C,QAAQ,CAAC,aAAa,EAAE,6BAA6B,CAAA;IACrD,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;CACtB;AAED,qEAAqE;AACrE,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,CAAC,QAAQ,EAAE,iBAAiB,CAAA;IACpC,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CACxB;AAED,qFAAqF;AACrF,MAAM,WAAW,qBAAqB;IACpC,qFAAqF;IACrF,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;IACrB,kDAAkD;IAClD,QAAQ,CAAC,MAAM,EAAE,OAAO,GAAG,eAAe,GAAG,SAAS,GAAG,YAAY,GAAG,MAAM,CAAA;IAC9E,iFAAiF;IACjF,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;IAC/B,gFAAgF;IAChF,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAChC;;;;OAIG;IACH,QAAQ,CAAC,eAAe,EAAE,SAAS,MAAM,EAAE,CAAA;IAC3C,oEAAoE;IACpE,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAA;IAC5B,+CAA+C;IAC/C,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAA;IACxB,oFAAoF;IACpF,QAAQ,CAAC,eAAe,CAAC,EAAE,SAAS,CAAA;CACrC;AAED,oFAAoF;AACpF,MAAM,WAAW,2BAA2B;IAC1C,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAA;IAC5B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAC1B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAC1B,QAAQ,CAAC,KAAK,EAAE,SAAS,qBAAqB,EAAE,CAAA;IAChD;;;;OAIG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE;QAAE,QAAQ,CAAC,SAAS,EAAE,SAAS,CAAC;QAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAA;CACrF;AAaD,0DAA0D;AAC1D,MAAM,CAAC,OAAO,OAAO,SAAU,SAAQ,mBAAmB;IACxD,MAAM,CAAC,MAAM,WAQZ;IAED,OAAO,CAAC,MAAM,CAAC,CAAoC;IACnD,OAAO,CAAC,MAAM,CAAC,CAAiB;IAChC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAA4C;IACpE,0EAA0E;IAC1E,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAA0C;IAC5E,qFAAqF;IACrF,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAkD;IAClF,4EAA4E;IAC5E,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAuB;IACrD,2FAA2F;IAC3F,OAAO,CAAC,QAAQ,CAAC,aAAa,CAU5B;IACF;;;;;OAKG;IACH,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAoC;IAClE;;;;;;OAMG;IACH,OAAO,CAAC,QAAQ,CAAC,cAAc,CAO3B;IACJ,OAAO,CAAC,QAAQ,CAAC,cAAc,CAA2B;IAC1D,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAuC;IACrE,OAAO,CAAC,iBAAiB,CAAC,CAA4C;IAEtE,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAQvB;IACF;;;;OAIG;IACH,OAAO,CAAC,QAAQ,CAAC,aAAa,CAS5B;IACF;;;;;;OAMG;IACH,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAyF;IACxH;;;;;;OAMG;IACH,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAwBhC;IACF,OAAO,CAAC,aAAa,CAAmC;IACxD,OAAO,CAAC,SAAS,CAAO;IACxB;;;;OAIG;IACH,OAAO,CAAC,aAAa,CAAI;IACzB,OAAO,CAAC,QAAQ,CAAC,aAAa,CAA0B;IACxD;;;;OAIG;IACH,OAAO,CAAC,WAAW,CAAgC;gBAEvC,GAAG,EAAE,OAAO;IAoBxB,8EAA8E;cAC9D,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC;IAuG/C;;;;;;;OAOG;YACW,gBAAgB;IAI9B,8FAA8F;IAC9F,cAAc,CAAC,KAAK,EAAE,KAAK,GAAG,oBAAoB,GAAG,SAAS;IAO9D,qEAAqE;IACrE,OAAO,IAAI,SAAS,0BAA0B,EAAE;IAIhD,iFAAiF;IAEjF,eAAe,CAAC,OAAO,EAAE,+BAA+B,GAAG,8BAA8B;IAWzF,4EAA4E;IAE5E,gBAAgB,CAAC,OAAO,EAAE,uBAAuB,GAAG,SAAS,2BAA2B,EAAE;IAO1F,sFAAsF;IAEhF,OAAO,CAAC,OAAO,EAAE,uBAAuB,EAAE,MAAM,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,sBAAsB,CAAC;IAoCtG,qFAAqF;IACrF,MAAM,IAAI,eAAe;IAKnB,aAAa,CAAC,OAAO,EAAE,6BAA6B,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAUlG,gFAAgF;IAE1E,aAAa,CAAC,OAAO,EAAE,6BAA6B,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAQlG;;;;;OAKG;IAEG,cAAc,CAAC,OAAO,EAAE,8BAA8B,GAAG,OAAO,CAAC,6BAA6B,CAAC;IAQrG,kFAAkF;IAE5E,SAAS,CAAC,OAAO,EAAE,yBAAyB,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAyBnF,wFAAwF;IAClF,aAAa,CAAC,OAAO,EAAE,8BAA8B,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAS5F,qEAAqE;IAC/D,YAAY,CAAC,OAAO,EAAE,8BAA8B,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAgB3F;;;;;;OAMG;IAEG,aAAa,CAAC,OAAO,EAAE,6BAA6B,GAAG,OAAO,CAAC,4BAA4B,CAAC;IA2ClG;;;;;;;;;;OAUG;IAEG,kBAAkB,CAAC,OAAO,EAAE,kCAAkC,GAAG,OAAO,CAAC,iCAAiC,CAAC;IAmCjH;;;;;OAKG;YACW,sBAAsB;IAsBpC;;;;;;;OAOG;YACW,uBAAuB;IA0ErC,0EAA0E;IAC1E,OAAO,CAAC,WAAW;IAInB;;;;;OAKG;IACH,OAAO,CAAC,iBAAiB;IASzB,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,gBAAgB;IAIxB;;;;OAIG;IACH,OAAO,CAAC,WAAW;IAkBnB,oFAAoF;IACpF,OAAO,CAAC,cAAc;IAQtB;;;;;OAKG;IAEG,YAAY,CAAC,OAAO,EAAE,4BAA4B,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAoBzF;;;;;;;;OAQG;YACW,mBAAmB;IAajC,6FAA6F;IACvF,YAAY,CAAC,OAAO,EAAE,4BAA4B,GAAG,OAAO,CAAC,2BAA2B,CAAC;IAU/F;;;;;OAKG;IAEG,aAAa,CAAC,OAAO,EAAE,6BAA6B,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAUlG,kFAAkF;IAE5E,UAAU,CAAC,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAQ7E,sFAAsF;IAEhF,aAAa,CAAC,OAAO,EAAE,6BAA6B,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAQlG,sFAAsF;IAEhF,WAAW,CAAC,OAAO,EAAE,2BAA2B,GAAG,OAAO,CAAC,0BAA0B,CAAC;IAS5F,wEAAwE;IAElE,mBAAmB,CAAC,OAAO,EAAE,mCAAmC,GAAG,OAAO,CAAC,kCAAkC,CAAC;IAOpH,8EAA8E;IAExE,WAAW,CAAC,OAAO,EAAE,2BAA2B,GAAG,OAAO,CAAC,0BAA0B,CAAC;IAI5F;;;;OAIG;YACW,yBAAyB;IASvC,yDAAyD;YAC3C,kBAAkB;IAWhC;;;OAGG;IACH,OAAO,CAAC,qBAAqB;IAO7B,uFAAuF;IAEjF,aAAa,CAAC,OAAO,EAAE,6BAA6B,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAWlG,4GAA4G;IAEtG,aAAa,CAAC,OAAO,EAAE,6BAA6B,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAMlG,wFAAwF;IAElF,KAAK,CAAC,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAI1E,4CAA4C;IAEtC,eAAe,CAAC,OAAO,EAAE,+BAA+B,GAAG,OAAO,CAAC,8BAA8B,CAAC;IAOxG,kGAAkG;IAElG,KAAK,CAAC,OAAO,EAAE,qBAAqB,GAAG,cAAc;IAKrD,4DAA4D;IAEtD,UAAU,CAAC,OAAO,EAAE,0BAA0B,GAAG,OAAO,CAAC,yBAAyB,CAAC;IASzF,gEAAgE;IAEhE,kBAAkB,CAAC,OAAO,EAAE,kCAAkC,GAAG,2BAA2B;IAK5F,mDAAmD;IAEnD,aAAa,CAAC,OAAO,EAAE,6BAA6B,GAAG,sBAAsB;IAK7E,yEAAyE;IAEzE,IAAI,CAAC,OAAO,EAAE,oBAAoB,GAAG,aAAa;IAKlD,kGAAkG;IAC5F,mBAAmB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,2BAA2B,GAAG,OAAO,CAAC,0BAA0B,CAAC;IAIlH,wCAAwC;IAClC,aAAa,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAIhG,4CAA4C;IACtC,uBAAuB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,+BAA+B,GAAG,OAAO,CAAC,8BAA8B,CAAC;IAO9H,uBAAuB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE;QAAE,WAAW,EAAE,oBAAoB,CAAC,aAAa,CAAC,CAAC;QAAC,SAAS,CAAC,EAAE,+BAA+B,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC;QAAC,OAAO,CAAC,EAAE,aAAa,CAAC,SAAS,CAAC,GAAG,SAAS,CAAA;KAAE,GAAG,8BAA8B;IAM1P,iCAAiC;IAC3B,mBAAmB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAOtG,kBAAkB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE;QAAE,WAAW,EAAE,oBAAoB,CAAC,aAAa,CAAC,CAAC;QAAC,OAAO,EAAE,aAAa,CAAC,SAAS,CAAC,CAAA;KAAE,GAAG,kBAAkB;IAMtJ,aAAa,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,qBAAqB,GAAG,cAAc;IAMrE,kBAAkB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,0BAA0B,GAAG,OAAO,CAAC,yBAAyB,CAAC;IAgB/G;;;;;OAKG;YACW,uBAAuB;IAQrC,8EAA8E;YAChE,gBAAgB;IAwB9B,OAAO,CAAC,iBAAiB;IAMzB;;;;;;OAMG;IACG,UAAU,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,kBAAkB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAyBvF,2EAA2E;IAC3E,OAAO,CAAC,WAAW;IAQnB,qBAAqB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,6BAA6B,GAAG,sBAAsB;IAMnG,+CAA+C;IAC/C,YAAY,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,oBAAoB,GAAG,aAAa;IAOxE,gFAAgF;IAChF,cAAc,IAAI,IAAI;IAItB;;;;;;OAMG;IACH,qBAAqB,IAAI,IAAI;IAI7B;;;;OAIG;IACH,OAAO,CAAC,aAAa;IAMrB;;;;;;;;OAQG;YACW,mBAAmB;IA0BjC,mFAAmF;IACnF,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAwC;IAErE;;;;;;OAMG;YACW,qBAAqB;IAenC;;;;;;OAMG;YACW,qBAAqB;IAsFnC;;;;;;;;;OASG;YACW,yBAAyB;IA6BvC;;;;;;;;;;OAUG;YACW,wBAAwB;IAoBtC;;;;;;;;;;;;;;;;;;;;OAoBG;YACW,kBAAkB;IA4DhC;;;;;;;;OAQG;IACH,wBAAwB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,8BAA8B,GAAG,8BAA8B;IAU/G;;;;;;;OAOG;IACG,uBAAuB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,4BAA4B,GAAG,OAAO,CAAC,2BAA2B,CAAC;IA+DxH;;;;;;;OAOG;YACW,iBAAiB;IAkB/B;;;;;;;;OAQG;IACH,OAAO,CAAC,gBAAgB;IAMxB;;;;;;;OAOG;IACH,OAAO,CAAC,sBAAsB;IAqD9B;;;;;;;;;OASG;IACH,OAAO,CAAC,eAAe;IA4DvB;;;;;OAKG;IACG,iBAAiB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,8BAA8B,GAAG,OAAO,CAAC,8BAA8B,CAAC;IAgCvH;;;;;OAKG;IACH,OAAO,CAAC,yBAAyB;IAQjC;;;;;OAKG;IACG,uBAAuB,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,+BAA+B,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAO5H,OAAO,CAAC,oBAAoB;IAM5B,OAAO,CAAC,6BAA6B;IAQrC,sGAAsG;YACxF,aAAa;IAW3B,wFAAwF;YAC1E,OAAO;IAWrB,iFAAiF;IACjF,OAAO,CAAC,SAAS;IAMjB,sFAAsF;IACtF,OAAO,CAAC,UAAU;IAOlB,OAAO,CAAC,WAAW;IAMnB,OAAO,CAAC,qBAAqB;IAI7B;;;;OAIG;YACW,gBAAgB;IAa9B;;;;;;;;OAQG;YACW,uBAAuB;YAWvB,cAAc;IAgN5B;;;;;;;;;OASG;IACH,OAAO,CAAC,gBAAgB;IAoBxB;;;;OAIG;IACH,OAAO,CAAC,iBAAiB;IAYzB,OAAO,CAAC,oBAAoB;IAgB5B,OAAO,CAAC,YAAY;IA4BpB,OAAO,CAAC,gBAAgB;IAMxB,gGAAgG;IAChG,OAAO,CAAC,uBAAuB;IAM/B;;;;;;OAMG;IACH,OAAO,CAAC,sBAAsB;IAU9B,6EAA6E;IAC7E,OAAO,CAAC,wBAAwB;IAOhC,OAAO,CAAC,kBAAkB;IAQ1B,OAAO,CAAC,gBAAgB;IAMxB,OAAO,CAAC,aAAa;IAKrB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,aAAa;IAsBrB,iEAAiE;IACjE,OAAO,CAAC,iBAAiB;IAWzB,yEAAyE;IACzE,OAAO,CAAC,gBAAgB;IAUxB,OAAO,CAAC,yBAAyB;IAMjC;;;;OAIG;IACH,OAAO,CAAC,mBAAmB;IAI3B,4FAA4F;IAC5F,OAAO,CAAC,YAAY;IAiDpB,OAAO,CAAC,aAAa;IAMrB,OAAO,CAAC,gBAAgB;IAMxB,OAAO,CAAC,gBAAgB;IA6CxB,OAAO,CAAC,uBAAuB;IAK/B,OAAO,CAAC,oBAAoB;IAwC5B,6EAA6E;YAC/D,oBAAoB;IAalC,OAAO,CAAC,wBAAwB;IAOhC,OAAO,CAAC,4BAA4B;IAIpC;;;;;;;;;;;OAWG;IACH,OAAO,CAAC,WAAW;IAanB;;;;;;OAMG;IACH,OAAO,CAAC,eAAe;IAKvB,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,gBAAgB;CAMzB"}
@@ -1 +1 @@
1
- {"version":3,"file":"invariant.d.ts","sourceRoot":"","sources":["../../src/invariant.ts"],"names":[],"mappings":"AAAA,wEAAwE;AAExE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAA;AAKlD,oCAAoC;AACpC,eAAO,MAAM,IAAI,yBAAyB,CAAA;AAC1C,sEAAsE;AACtE,eAAO,MAAM,MAAM,UAAiB,CAAA;AAiBpC;;;;GAIG;AACH,eAAO,MAAM,KAAK,GAAI,KAAK,OAAO,KAAG,OAAO,CAAC,MAAM,IAAI,CACU,CAAA"}
1
+ {"version":3,"file":"invariant.d.ts","sourceRoot":"","sources":["../../src/invariant.ts"],"names":[],"mappings":"AAAA,wEAAwE;AAExE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAA;AAKlD,oCAAoC;AACpC,eAAO,MAAM,IAAI,yBAAyB,CAAA;AAC1C,sEAAsE;AACtE,eAAO,MAAM,MAAM,UAAiB,CAAA;AAkDpC;;;;GAIG;AACH,eAAO,MAAM,KAAK,GAAI,KAAK,OAAO,KAAG,OAAO,CAAC,MAAM,IAAI,CACU,CAAA"}