moltblock 0.7.2 → 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 +13 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moltblock",
3
- "version": "0.7.2",
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,22 @@
1
1
  ---
2
- name: moltblock — Trust Layer for AI Agents
2
+ name: moltblock
3
3
  description: Verification gating for AI-generated artifacts. Policy checks and code verification to catch dangerous patterns before execution.
4
- homepage: https://github.com/moltblock/moltblock
4
+ version: 0.7.4
5
5
  metadata:
6
6
  openclaw:
7
7
  requires:
8
- bins:
9
- - node
8
+ anyBins:
10
9
  - npx
10
+ - node
11
+ config:
12
+ - moltblock.json
13
+ - ~/.moltblock/moltblock.json
11
14
  primaryEnv: OPENAI_API_KEY
12
- install: npm install -g moltblock@0.7.2
15
+ homepage: https://github.com/moltblock/moltblock
16
+ install:
17
+ - kind: node
18
+ package: moltblock@0.7.4
19
+ bins: [moltblock]
13
20
  ---
14
21
 
15
22
  # moltblock — Trust Layer for AI Agents
@@ -91,7 +98,7 @@ npx moltblock "your task" --json
91
98
 
92
99
  ## Configuration
93
100
 
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.
101
+ No configuration file is required. Moltblock auto-detects your LLM provider from environment variables and falls back to sensible defaults.
95
102
 
96
103
  Optionally, place `moltblock.json` in your project root or `~/.moltblock/moltblock.json` to customize bindings or policy rules:
97
104