moltblock 0.7.7 → 0.7.8
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 +7 -7
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: moltblock - Trust Layer for AI Agents
|
|
3
3
|
description: Verification gating for AI-generated artifacts. Policy checks and code verification to catch dangerous patterns before execution.
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.8
|
|
5
5
|
metadata:
|
|
6
6
|
openclaw:
|
|
7
7
|
requires:
|
|
@@ -15,7 +15,7 @@ metadata:
|
|
|
15
15
|
homepage: https://github.com/moltblock/moltblock
|
|
16
16
|
install:
|
|
17
17
|
- kind: node
|
|
18
|
-
package: moltblock@0.7.
|
|
18
|
+
package: moltblock@0.7.8
|
|
19
19
|
bins: [moltblock]
|
|
20
20
|
---
|
|
21
21
|
|
|
@@ -46,7 +46,7 @@ Verify a task before execution.
|
|
|
46
46
|
### Usage
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
npx moltblock@0.7.
|
|
49
|
+
npx moltblock@0.7.8 "<task description>" --provider <provider> --json
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
### Parameters
|
|
@@ -71,10 +71,10 @@ No API key is required — moltblock falls back to a local LLM (localhost:1234)
|
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
73
|
# Verify a task
|
|
74
|
-
npx moltblock@0.7.
|
|
74
|
+
npx moltblock@0.7.8 "implement a function that validates email addresses" --json
|
|
75
75
|
|
|
76
76
|
# Verify code with tests
|
|
77
|
-
npx moltblock@0.7.
|
|
77
|
+
npx moltblock@0.7.8 "implement a markdown-to-html converter" --test ./tests/markdown.test.ts --json
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
### Output (JSON mode)
|
|
@@ -95,13 +95,13 @@ npx moltblock@0.7.7 "implement a markdown-to-html converter" --test ./tests/mark
|
|
|
95
95
|
Use directly with npx (recommended, no install needed):
|
|
96
96
|
|
|
97
97
|
```bash
|
|
98
|
-
npx moltblock@0.7.
|
|
98
|
+
npx moltblock@0.7.8 "your task" --json
|
|
99
99
|
```
|
|
100
100
|
|
|
101
101
|
Or install globally:
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
|
-
npm install -g moltblock@0.7.
|
|
104
|
+
npm install -g moltblock@0.7.8
|
|
105
105
|
```
|
|
106
106
|
|
|
107
107
|
## Configuration
|