pilotswarm-sdk 0.1.3 → 0.1.4
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/README.md +26 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# pilotswarm-sdk
|
|
2
|
+
|
|
3
|
+
Durable runtime primitives for building apps on top of PilotSwarm.
|
|
4
|
+
|
|
5
|
+
Install:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install pilotswarm-sdk
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Minimal usage:
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { PilotSwarmClient, PilotSwarmWorker, defineTool } from "pilotswarm-sdk";
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
`pilotswarm-sdk` ships PilotSwarm's embedded framework prompt, framework skills, and management plugins inside the package. App code should provide its own `plugin/` directory and worker-side tool handlers on top of that base.
|
|
18
|
+
|
|
19
|
+
Common docs:
|
|
20
|
+
|
|
21
|
+
- SDK apps: `https://github.com/affandar/PilotSwarm/blob/main/docs/sdk/building-apps.md`
|
|
22
|
+
- SDK agents: `https://github.com/affandar/PilotSwarm/blob/main/docs/sdk/building-agents.md`
|
|
23
|
+
- Configuration: `https://github.com/affandar/PilotSwarm/blob/main/docs/configuration.md`
|
|
24
|
+
- Architecture: `https://github.com/affandar/PilotSwarm/blob/main/docs/architecture.md`
|
|
25
|
+
|
|
26
|
+
If you want the shipped terminal UI, install `pilotswarm-cli`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pilotswarm-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "A durable execution runtime for GitHub Copilot SDK agents. Crash recovery, durable timers, session dehydration, and multi-node scaling — powered by duroxide.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|