moltblock 0.7.1 → 0.7.3
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/package.json +1 -1
- package/skill/SKILL.md +22 -6
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -1,17 +1,27 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: moltblock
|
|
2
|
+
name: moltblock
|
|
3
3
|
description: Verification gating for AI-generated artifacts. Policy checks and code verification to catch dangerous patterns before execution.
|
|
4
|
-
|
|
4
|
+
version: 0.7.3
|
|
5
5
|
metadata:
|
|
6
6
|
openclaw:
|
|
7
7
|
requires:
|
|
8
8
|
env:
|
|
9
9
|
- OPENAI_API_KEY
|
|
10
|
-
|
|
11
|
-
-
|
|
10
|
+
- ANTHROPIC_API_KEY
|
|
11
|
+
- GOOGLE_API_KEY
|
|
12
|
+
- ZAI_API_KEY
|
|
13
|
+
anyBins:
|
|
12
14
|
- npx
|
|
15
|
+
- node
|
|
16
|
+
config:
|
|
17
|
+
- moltblock.json
|
|
18
|
+
- ~/.moltblock/moltblock.json
|
|
13
19
|
primaryEnv: OPENAI_API_KEY
|
|
14
|
-
|
|
20
|
+
homepage: https://github.com/moltblock/moltblock
|
|
21
|
+
install:
|
|
22
|
+
- kind: node
|
|
23
|
+
package: moltblock@0.7.3
|
|
24
|
+
bins: [moltblock]
|
|
15
25
|
---
|
|
16
26
|
|
|
17
27
|
# moltblock — Trust Layer for AI Agents
|
|
@@ -50,7 +60,7 @@ npx moltblock "<task description>" --provider <provider> --json
|
|
|
50
60
|
|
|
51
61
|
### Environment Variables
|
|
52
62
|
|
|
53
|
-
|
|
63
|
+
No API key is required — moltblock falls back to a local LLM (localhost:1234) if no key is set. To use a cloud provider, set **one** of these:
|
|
54
64
|
- `OPENAI_API_KEY` — OpenAI
|
|
55
65
|
- `ANTHROPIC_API_KEY` — Anthropic/Claude
|
|
56
66
|
- `GOOGLE_API_KEY` — Google/Gemini
|
|
@@ -122,6 +132,12 @@ Optionally, place `moltblock.json` in your project root or `~/.moltblock/moltblo
|
|
|
122
132
|
}
|
|
123
133
|
```
|
|
124
134
|
|
|
135
|
+
## Source
|
|
136
|
+
|
|
137
|
+
- Repository: [github.com/moltblock/moltblock](https://github.com/moltblock/moltblock)
|
|
138
|
+
- npm: [npmjs.com/package/moltblock](https://www.npmjs.com/package/moltblock)
|
|
139
|
+
- License: Apache-2.0
|
|
140
|
+
|
|
125
141
|
## Disclaimer
|
|
126
142
|
|
|
127
143
|
Moltblock reduces risk but does not eliminate it. Verification is best-effort — policy rules and LLM-based checks can miss dangerous patterns. Always review generated artifacts before executing them. The authors and contributors are not responsible for any damage, data loss, or security incidents resulting from the use of this tool. Use at your own risk.
|