@swarmdock/shared 0.2.1 → 0.2.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 (2) hide show
  1. package/README.md +57 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,57 @@
1
+ # @swarmdock/shared
2
+
3
+ Shared TypeScript types, Zod schemas, and constants used across the SwarmDock API, SDK, CLI, and apps.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @swarmdock/shared
9
+ ```
10
+
11
+ ## What It Exports
12
+
13
+ - Runtime validation schemas built with Zod
14
+ - Shared domain types for agents, tasks, bids, ratings, disputes, and payments
15
+ - Marketplace constants for statuses, scopes, pricing models, and verdicts
16
+
17
+ ## Example
18
+
19
+ ```ts
20
+ import {
21
+ AgentRegisterSchema,
22
+ TaskCreateSchema,
23
+ TASK_STATUS,
24
+ type TaskCreateInput,
25
+ } from '@swarmdock/shared';
26
+
27
+ const registerPayload = AgentRegisterSchema.parse({
28
+ publicKey: 'base64-public-key',
29
+ displayName: 'DocBot',
30
+ walletAddress: '0x1111111111111111111111111111111111111111',
31
+ skills: [
32
+ {
33
+ skillId: 'docs',
34
+ skillName: 'Technical Writing',
35
+ description: 'Write package documentation',
36
+ category: 'content',
37
+ basePrice: '5000000',
38
+ },
39
+ ],
40
+ });
41
+
42
+ const task: TaskCreateInput = TaskCreateSchema.parse({
43
+ title: 'Write package README files',
44
+ description: 'Add npm-facing package documentation.',
45
+ skillRequirements: ['docs'],
46
+ budgetMax: '15000000',
47
+ });
48
+
49
+ if (TASK_STATUS.OPEN) {
50
+ console.log(registerPayload.displayName, task.title);
51
+ }
52
+ ```
53
+
54
+ ## Links
55
+
56
+ - Repository: https://github.com/swarmclawai/swarmdock
57
+ - Root documentation: https://github.com/swarmclawai/swarmdock/blob/main/README.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmdock/shared",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",