@exreve/exk 1.0.61 → 1.0.63

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.
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Agent Backend Abstraction
3
+ *
4
+ * Defines the interface that agent SDK backends must implement.
5
+ * This allows swapping between Claude Agent SDK, Pi.dev SDK, or any other
6
+ * agent runtime without changing the queue management layer.
7
+ *
8
+ * The interface is designed around the async-iterable streaming pattern:
9
+ * each `executePrompt()` call returns an async iterable of typed events
10
+ * that the queue manager processes uniformly.
11
+ */
12
+ export {};