moltblock 0.7.1 → 0.7.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 +8 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moltblock",
3
- "version": "0.7.1",
3
+ "version": "0.7.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
@@ -5,13 +5,11 @@ homepage: https://github.com/moltblock/moltblock
5
5
  metadata:
6
6
  openclaw:
7
7
  requires:
8
- env:
9
- - OPENAI_API_KEY
10
8
  bins:
11
9
  - node
12
10
  - npx
13
11
  primaryEnv: OPENAI_API_KEY
14
- install: npm install -g moltblock@0.7.1
12
+ install: npm install -g moltblock@0.7.2
15
13
  ---
16
14
 
17
15
  # moltblock — Trust Layer for AI Agents
@@ -50,7 +48,7 @@ npx moltblock "<task description>" --provider <provider> --json
50
48
 
51
49
  ### Environment Variables
52
50
 
53
- Set one of these for provider auto-detection:
51
+ No API key is required — moltblock falls back to a local LLM (localhost:1234) if no key is set. To use a cloud provider, set **one** of these:
54
52
  - `OPENAI_API_KEY` — OpenAI
55
53
  - `ANTHROPIC_API_KEY` — Anthropic/Claude
56
54
  - `GOOGLE_API_KEY` — Google/Gemini
@@ -122,6 +120,12 @@ Optionally, place `moltblock.json` in your project root or `~/.moltblock/moltblo
122
120
  }
123
121
  ```
124
122
 
123
+ ## Source
124
+
125
+ - Repository: [github.com/moltblock/moltblock](https://github.com/moltblock/moltblock)
126
+ - npm: [npmjs.com/package/moltblock](https://www.npmjs.com/package/moltblock)
127
+ - License: Apache-2.0
128
+
125
129
  ## Disclaimer
126
130
 
127
131
  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.