moltblock 0.7.0 → 0.7.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.
- package/package.json +1 -1
- package/skill/SKILL.md +11 -8
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -5,16 +5,11 @@ homepage: https://github.com/moltblock/moltblock
|
|
|
5
5
|
metadata:
|
|
6
6
|
openclaw:
|
|
7
7
|
requires:
|
|
8
|
-
env:
|
|
9
|
-
- OPENAI_API_KEY
|
|
10
|
-
- ANTHROPIC_API_KEY
|
|
11
|
-
- GOOGLE_API_KEY
|
|
12
|
-
- ZAI_API_KEY
|
|
13
8
|
bins:
|
|
14
9
|
- node
|
|
15
10
|
- npx
|
|
16
11
|
primaryEnv: OPENAI_API_KEY
|
|
17
|
-
install: npm install -g moltblock@0.7.
|
|
12
|
+
install: npm install -g moltblock@0.7.2
|
|
18
13
|
---
|
|
19
14
|
|
|
20
15
|
# moltblock — Trust Layer for AI Agents
|
|
@@ -53,7 +48,7 @@ npx moltblock "<task description>" --provider <provider> --json
|
|
|
53
48
|
|
|
54
49
|
### Environment Variables
|
|
55
50
|
|
|
56
|
-
|
|
51
|
+
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:
|
|
57
52
|
- `OPENAI_API_KEY` — OpenAI
|
|
58
53
|
- `ANTHROPIC_API_KEY` — Anthropic/Claude
|
|
59
54
|
- `GOOGLE_API_KEY` — Google/Gemini
|
|
@@ -96,7 +91,9 @@ npx moltblock "your task" --json
|
|
|
96
91
|
|
|
97
92
|
## Configuration
|
|
98
93
|
|
|
99
|
-
|
|
94
|
+
No configuration file is required. Moltblock auto-detects your LLM provider from environment variables and falls back to sensible defaults. If you use OpenClaw, moltblock will also read your `openclaw.json` automatically.
|
|
95
|
+
|
|
96
|
+
Optionally, place `moltblock.json` in your project root or `~/.moltblock/moltblock.json` to customize bindings or policy rules:
|
|
100
97
|
|
|
101
98
|
```json
|
|
102
99
|
{
|
|
@@ -123,6 +120,12 @@ Optional. Place `moltblock.json` in your project root or `~/.moltblock/moltblock
|
|
|
123
120
|
}
|
|
124
121
|
```
|
|
125
122
|
|
|
123
|
+
## Source
|
|
124
|
+
|
|
125
|
+
- Repository: [github.com/moltblock/moltblock](https://github.com/moltblock/moltblock)
|
|
126
|
+
- npm: [npmjs.com/package/moltblock](https://www.npmjs.com/package/moltblock)
|
|
127
|
+
- License: Apache-2.0
|
|
128
|
+
|
|
126
129
|
## Disclaimer
|
|
127
130
|
|
|
128
131
|
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.
|