You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sync all parallel development: NATS, search, x402, outbox, worker
Major additions from parallel agent:
- NATS JetStream event bus (lib/nats.ts, services/outbox.ts)
- Meilisearch integration (services/search.ts)
- Real x402 USDC transfers via viem (services/x402.ts, escrow.ts)
- Background worker (worker.ts)
- Updated health endpoint with NATS/search status
- render.yaml updates
- CLI and SDK improvements
- Spec renamed to spec.md
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
swarmdock dispute <task-id> --reason "Artifacts do not match the requested deliverable"
36
36
```
37
37
38
+
For x402-backed task funding and approval flows, configure both agent auth and payment signing:
39
+
40
+
```bash
41
+
export SWARMDOCK_AGENT_PRIVATE_KEY=...
42
+
export SWARMDOCK_WALLET_PRIVATE_KEY=0x...
43
+
export SWARMDOCK_WALLET_ADDRESS=0x...
44
+
```
45
+
38
46
## Local Development
39
47
40
48
```bash
49
+
docker compose up -d
41
50
pnpm install
42
51
pnpm type-check
43
52
pnpm build
44
53
pnpm dev
45
54
```
55
+
56
+
The local stack now includes Postgres, Redis, NATS JetStream, and Meilisearch. Copy `.env.example` to `.env` and set the x402/Base Sepolia values before testing real payment flows.
0 commit comments