@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.
- package/dist/agent-status-tracker.d.ts +6 -2
- package/dist/chronicle/index.js +1836 -1645
- package/dist/chronicle/metrics-store.d.ts +14 -0
- package/dist/chronicle/project-server-protocol.d.ts +13 -0
- package/dist/chronicle/project-server.js +1759 -1583
- package/dist/chronicle/rollup-adapter.d.ts +2 -0
- package/dist/chronicle/sqlite-journal.d.ts +59 -0
- package/dist/coordination/index.js +790 -248
- package/dist/coordination/mail-tools.d.ts +2 -2
- package/dist/core/continue-intent.d.ts +2 -0
- package/dist/core/conversation-state.d.ts +5 -0
- package/dist/core/index.js +120 -19
- package/dist/defaults/index.js +927 -373
- package/dist/execution/index.js +27 -10
- package/dist/index.d.ts +3 -1
- package/dist/index.js +8762 -6780
- package/dist/infrastructure/index.js +722 -672
- package/dist/kernel/events/memory-events.d.ts +62 -0
- package/dist/plugin/index.js +2154 -1979
- package/dist/session-catalog/client.d.ts +62 -0
- package/dist/session-catalog/endpoint.d.ts +6 -0
- package/dist/session-catalog/index.d.ts +6 -0
- package/dist/session-catalog/index.js +1978 -0
- package/dist/session-catalog/project-server.d.ts +3 -0
- package/dist/session-catalog/project-server.js +1838 -0
- package/dist/session-catalog/protocol.d.ts +275 -0
- package/dist/session-catalog/registry.d.ts +59 -0
- package/dist/session-catalog/store.d.ts +55 -0
- package/dist/storage/index.d.ts +42 -38
- package/dist/storage/index.js +14279 -13393
- package/dist/storage/session-event-bridge.d.ts +2 -2
- package/dist/storage/session-store.d.ts +6 -0
- package/dist/tools/index.js +8 -2
- package/dist/types/context-evidence.d.ts +2 -0
- package/dist/types/messages.d.ts +8 -0
- package/dist/types/session.d.ts +19 -0
- package/dist/utils/context-evidence.d.ts +13 -1
- package/dist/utils/index.js +26 -2
- package/instructions/system-lite.md +11 -2
- package/instructions/system-pro.md +14 -0
- package/instructions/system.md +14 -0
- package/package.json +7 -3
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import type { EventBus } from './kernel/events.js';
|
|
2
|
-
import type { AgentEntry
|
|
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:
|
|
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
|