pragma-openclaw 0.1.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/LICENSE +21 -0
- package/agents/kairos/AGENTS.md +261 -0
- package/agents/kairos/SOUL.md +46 -0
- package/agents/pragma/AGENTS.md +248 -0
- package/agents/pragma/SOUL.md +46 -0
- package/agents/thymos/AGENTS.md +200 -0
- package/agents/thymos/SOUL.md +46 -0
- package/dist/index.js +27390 -0
- package/openclaw.plugin.json +16 -0
- package/package.json +46 -0
- package/server/index.js +242 -0
- package/skills/pragma-autonomous/SKILL.md +214 -0
- package/skills/pragma-core/SKILL.md +358 -0
- package/skills/pragma-delegation/SKILL.md +300 -0
- package/skills/pragma-mode/SKILL.md +42 -0
- package/skills/pragma-setup/SKILL.md +164 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "pragma",
|
|
3
|
+
"name": "pragma",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "vibetrading for OpenClaw — on-chain trading and market intelligence on monad",
|
|
6
|
+
"skills": ["./skills"],
|
|
7
|
+
"configSchema": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"additionalProperties": false,
|
|
10
|
+
"properties": {
|
|
11
|
+
"mode": { "type": "string", "enum": ["byok", "x402"], "default": "x402" },
|
|
12
|
+
"configPath": { "type": "string", "default": "~/.pragma/config.json" },
|
|
13
|
+
"sessionKeyPath": { "type": "string", "default": "~/.pragma/session-key.json" }
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pragma-openclaw",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "pragma plugin for OpenClaw — on-chain trading and market intelligence on monad",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist/index.js",
|
|
9
|
+
"server/index.js",
|
|
10
|
+
"openclaw.plugin.json",
|
|
11
|
+
"agents/",
|
|
12
|
+
"skills/"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build:plugin": "esbuild src/index.ts --bundle --platform=node --target=node22 --outfile=dist/index.js --format=esm --banner:js=\"import { createRequire } from 'module'; const require = createRequire(import.meta.url);\"",
|
|
16
|
+
"sync": "cp ../pragma-mcp/servers/pragma-mcp/dist/index.js server/index.js && echo 'Synced server/index.js from pragma-mcp'",
|
|
17
|
+
"build": "npm run build:plugin",
|
|
18
|
+
"release": "npm run build:plugin && npm run sync && npm publish",
|
|
19
|
+
"typecheck": "tsc --noEmit"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
23
|
+
"viem": "^2.23.2"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"esbuild": "^0.25.0",
|
|
27
|
+
"typescript": "^5.7.3"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20.0.0"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"author": {
|
|
34
|
+
"name": "s0nderlabs",
|
|
35
|
+
"url": "https://github.com/s0nderlabs"
|
|
36
|
+
},
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/s0nderlabs/pragma-openclaw"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/s0nderlabs/pragma-openclaw#readme",
|
|
42
|
+
"keywords": ["openclaw", "pragma", "monad", "trading", "mcp", "blockchain", "defi", "agent"],
|
|
43
|
+
"openclaw": {
|
|
44
|
+
"extensions": ["./dist/index.js"]
|
|
45
|
+
}
|
|
46
|
+
}
|