moltblock 0.7.5 → 0.7.7

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 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moltblock",
3
- "version": "0.7.5",
3
+ "version": "0.7.7",
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,7 +1,7 @@
1
1
  ---
2
- name: moltblock
2
+ name: moltblock - Trust Layer for AI Agents
3
3
  description: Verification gating for AI-generated artifacts. Policy checks and code verification to catch dangerous patterns before execution.
4
- version: 0.7.5
4
+ version: 0.7.7
5
5
  metadata:
6
6
  openclaw:
7
7
  requires:
@@ -15,7 +15,7 @@ metadata:
15
15
  homepage: https://github.com/moltblock/moltblock
16
16
  install:
17
17
  - kind: node
18
- package: moltblock@latest
18
+ package: moltblock@0.7.7
19
19
  bins: [moltblock]
20
20
  ---
21
21
 
@@ -25,11 +25,11 @@ metadata:
25
25
 
26
26
  Moltblock provides verification gating for AI-generated artifacts. It runs policy checks and optional code verification (via vitest) to catch dangerous patterns before they reach production.
27
27
 
28
- **What moltblock does NOT do:**
29
- - Does not execute generated code on your system
30
- - Does not access, read, or modify files outside its own config
31
- - Does not make network calls beyond the configured LLM API
32
- - Does not store or transmit your API keysthey are read from env vars at runtime only
28
+ **What moltblock does:**
29
+ - Generates code via LLM API calls, then runs policy checks against the output
30
+ - When `--test` is provided, executes vitest to verify generated code against the test file
31
+ - Reads its own config files (`moltblock.json`, `~/.moltblock/moltblock.json`) if present
32
+ - API keys are read from environment variables at runtime never stored or transmitted beyond the configured LLM provider
33
33
 
34
34
  ## When to Use
35
35
 
@@ -46,7 +46,7 @@ Verify a task before execution.
46
46
  ### Usage
47
47
 
48
48
  ```bash
49
- npx moltblock@latest "<task description>" --provider <provider> --json
49
+ npx moltblock@0.7.7 "<task description>" --provider <provider> --json
50
50
  ```
51
51
 
52
52
  ### Parameters
@@ -71,10 +71,10 @@ No API key is required — moltblock falls back to a local LLM (localhost:1234)
71
71
 
72
72
  ```bash
73
73
  # Verify a task
74
- npx moltblock@latest "implement a function that validates email addresses" --json
74
+ npx moltblock@0.7.7 "implement a function that validates email addresses" --json
75
75
 
76
76
  # Verify code with tests
77
- npx moltblock@latest "implement a markdown-to-html converter" --test ./tests/markdown.test.ts --json
77
+ npx moltblock@0.7.7 "implement a markdown-to-html converter" --test ./tests/markdown.test.ts --json
78
78
  ```
79
79
 
80
80
  ### Output (JSON mode)
@@ -95,13 +95,13 @@ npx moltblock@latest "implement a markdown-to-html converter" --test ./tests/mar
95
95
  Use directly with npx (recommended, no install needed):
96
96
 
97
97
  ```bash
98
- npx moltblock@latest "your task" --json
98
+ npx moltblock@0.7.7 "your task" --json
99
99
  ```
100
100
 
101
101
  Or install globally:
102
102
 
103
103
  ```bash
104
- npm install -g moltblock@latest
104
+ npm install -g moltblock@0.7.7
105
105
  ```
106
106
 
107
107
  ## Configuration