@wrongstack/core 0.302.0 → 0.302.2

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 (42) hide show
  1. package/dist/agent-status-tracker.d.ts +6 -2
  2. package/dist/chronicle/index.js +1836 -1645
  3. package/dist/chronicle/metrics-store.d.ts +14 -0
  4. package/dist/chronicle/project-server-protocol.d.ts +13 -0
  5. package/dist/chronicle/project-server.js +1759 -1583
  6. package/dist/chronicle/rollup-adapter.d.ts +2 -0
  7. package/dist/chronicle/sqlite-journal.d.ts +59 -0
  8. package/dist/coordination/index.js +790 -248
  9. package/dist/coordination/mail-tools.d.ts +2 -2
  10. package/dist/core/continue-intent.d.ts +2 -0
  11. package/dist/core/conversation-state.d.ts +5 -0
  12. package/dist/core/index.js +120 -19
  13. package/dist/defaults/index.js +927 -373
  14. package/dist/execution/index.js +27 -10
  15. package/dist/index.d.ts +3 -1
  16. package/dist/index.js +8762 -6780
  17. package/dist/infrastructure/index.js +722 -672
  18. package/dist/kernel/events/memory-events.d.ts +62 -0
  19. package/dist/plugin/index.js +2154 -1979
  20. package/dist/session-catalog/client.d.ts +62 -0
  21. package/dist/session-catalog/endpoint.d.ts +6 -0
  22. package/dist/session-catalog/index.d.ts +6 -0
  23. package/dist/session-catalog/index.js +1978 -0
  24. package/dist/session-catalog/project-server.d.ts +3 -0
  25. package/dist/session-catalog/project-server.js +1838 -0
  26. package/dist/session-catalog/protocol.d.ts +275 -0
  27. package/dist/session-catalog/registry.d.ts +59 -0
  28. package/dist/session-catalog/store.d.ts +55 -0
  29. package/dist/storage/index.d.ts +42 -38
  30. package/dist/storage/index.js +14279 -13393
  31. package/dist/storage/session-event-bridge.d.ts +2 -2
  32. package/dist/storage/session-store.d.ts +6 -0
  33. package/dist/tools/index.js +8 -2
  34. package/dist/types/context-evidence.d.ts +2 -0
  35. package/dist/types/messages.d.ts +8 -0
  36. package/dist/types/session.d.ts +19 -0
  37. package/dist/utils/context-evidence.d.ts +13 -1
  38. package/dist/utils/index.js +26 -2
  39. package/instructions/system-lite.md +11 -2
  40. package/instructions/system-pro.md +14 -0
  41. package/instructions/system.md +14 -0
  42. package/package.json +7 -3
@@ -1,8 +1,11 @@
1
1
  import type { EventBus } from './kernel/events.js';
2
- import type { AgentEntry, SessionRegistry } from './session-registry.js';
2
+ import type { AgentEntry } from './session-registry.js';
3
+ interface SessionPresenceRegistry {
4
+ updateAgents(agents: AgentEntry[]): Promise<void>;
5
+ }
3
6
  export interface AgentStatusTrackerOptions {
4
7
  events: EventBus;
5
- registry: SessionRegistry;
8
+ registry: SessionPresenceRegistry;
6
9
  /** Session id whose live agent state is mirrored by this tracker. */
7
10
  sessionId?: string | (() => string | undefined) | undefined;
8
11
  /** Leader agent name shown in the registry. Default: "leader". */
@@ -86,4 +89,5 @@ export declare class AgentStatusTracker {
86
89
  private markLeaderStarted;
87
90
  private captureLeaderContext;
88
91
  }
92
+ export {};
89
93
  //# sourceMappingURL=agent-status-tracker.d.ts.map