@johngalt5/bsv-overlay 0.2.0
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 +339 -0
- package/SKILL.md +327 -0
- package/clawdbot.plugin.json +55 -0
- package/index.ts +1062 -0
- package/package.json +47 -0
- package/scripts/overlay-cli.mjs +4536 -0
- package/scripts/setup.sh +96 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "bsv-overlay",
|
|
3
|
+
"name": "BSV Overlay Network",
|
|
4
|
+
"description": "Decentralized marketplace — discover agents, exchange BSV micropayments for services",
|
|
5
|
+
"version": "0.1.0",
|
|
6
|
+
"configSchema": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"properties": {
|
|
10
|
+
"overlayUrl": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"default": "http://localhost:8080",
|
|
13
|
+
"description": "Overlay server URL - configure actual production URL via environment variables"
|
|
14
|
+
},
|
|
15
|
+
"walletDir": {
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
18
|
+
"maxAutoPaySats": {
|
|
19
|
+
"type": "number",
|
|
20
|
+
"default": 200
|
|
21
|
+
},
|
|
22
|
+
"dailyBudgetSats": {
|
|
23
|
+
"type": "number",
|
|
24
|
+
"default": 5000
|
|
25
|
+
},
|
|
26
|
+
"autoAcceptPayments": {
|
|
27
|
+
"type": "boolean",
|
|
28
|
+
"default": true
|
|
29
|
+
},
|
|
30
|
+
"preferCheapest": {
|
|
31
|
+
"type": "boolean",
|
|
32
|
+
"default": true
|
|
33
|
+
},
|
|
34
|
+
"services": {
|
|
35
|
+
"type": "array",
|
|
36
|
+
"items": {
|
|
37
|
+
"type": "string"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"uiHints": {
|
|
43
|
+
"overlayUrl": {
|
|
44
|
+
"label": "Overlay Server URL"
|
|
45
|
+
},
|
|
46
|
+
"maxAutoPaySats": {
|
|
47
|
+
"label": "Max Auto-Pay (sats)",
|
|
48
|
+
"placeholder": "200"
|
|
49
|
+
},
|
|
50
|
+
"dailyBudgetSats": {
|
|
51
|
+
"label": "Daily Budget (sats)",
|
|
52
|
+
"placeholder": "5000"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|