moltblock 0.6.0 → 0.6.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 +18 -8
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: moltblock
|
|
3
|
+
description: Verification gating for AI-generated artifacts. Policy checks and code verification to catch dangerous patterns before execution.
|
|
4
|
+
---
|
|
5
|
+
|
|
1
6
|
# moltblock — Trust Layer for AI Agents
|
|
2
7
|
|
|
3
8
|
## Description
|
|
@@ -42,22 +47,23 @@ Set one of these for provider auto-detection:
|
|
|
42
47
|
### Example
|
|
43
48
|
|
|
44
49
|
```bash
|
|
45
|
-
# Verify a
|
|
46
|
-
npx moltblock "
|
|
50
|
+
# Verify a task
|
|
51
|
+
npx moltblock "implement a function that validates email addresses" --json
|
|
47
52
|
|
|
48
53
|
# Verify code with tests
|
|
49
|
-
npx moltblock "implement
|
|
54
|
+
npx moltblock "implement a markdown-to-html converter" --test ./tests/markdown.test.ts --json
|
|
50
55
|
```
|
|
51
56
|
|
|
52
57
|
### Output (JSON mode)
|
|
53
58
|
|
|
54
59
|
```json
|
|
55
60
|
{
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
+
"verification_passed": true,
|
|
62
|
+
"verification_evidence": "All policy rules passed.",
|
|
63
|
+
"authoritative_artifact": "...",
|
|
64
|
+
"draft": "...",
|
|
65
|
+
"critique": "...",
|
|
66
|
+
"final_candidate": "..."
|
|
61
67
|
}
|
|
62
68
|
```
|
|
63
69
|
|
|
@@ -101,3 +107,7 @@ Optional. Place `moltblock.json` in your project root or `~/.moltblock/moltblock
|
|
|
101
107
|
}
|
|
102
108
|
}
|
|
103
109
|
```
|
|
110
|
+
|
|
111
|
+
## Disclaimer
|
|
112
|
+
|
|
113
|
+
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.
|