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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/skill/SKILL.md +18 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moltblock",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "Framework for building evolving composite AI intelligences (Entities)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
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 potentially dangerous task
46
- npx moltblock "delete all temporary files older than 30 days" --json
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 user authentication" --test ./tests/auth.test.ts --json
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
- "task": "...",
57
- "verificationPassed": true,
58
- "verificationEvidence": "All policy rules passed.",
59
- "riskLevel": "high",
60
- "riskReasons": ["Recursive file deletion (rm -rf)"]
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.