moltblock 0.7.3 → 0.7.4

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 +3 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moltblock",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
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,15 +1,10 @@
1
1
  ---
2
2
  name: moltblock
3
3
  description: Verification gating for AI-generated artifacts. Policy checks and code verification to catch dangerous patterns before execution.
4
- version: 0.7.3
4
+ version: 0.7.4
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
  anyBins:
14
9
  - npx
15
10
  - node
@@ -20,7 +15,7 @@ metadata:
20
15
  homepage: https://github.com/moltblock/moltblock
21
16
  install:
22
17
  - kind: node
23
- package: moltblock@0.7.3
18
+ package: moltblock@0.7.4
24
19
  bins: [moltblock]
25
20
  ---
26
21
 
@@ -103,7 +98,7 @@ npx moltblock "your task" --json
103
98
 
104
99
  ## Configuration
105
100
 
106
- 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.
101
+ No configuration file is required. Moltblock auto-detects your LLM provider from environment variables and falls back to sensible defaults.
107
102
 
108
103
  Optionally, place `moltblock.json` in your project root or `~/.moltblock/moltblock.json` to customize bindings or policy rules:
109
104