moltblock 0.11.3 → 0.11.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.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +8 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Moltblock — framework for evolving composite intelligences (Entities).
|
|
3
3
|
*/
|
|
4
|
-
export declare const VERSION = "0.11.
|
|
4
|
+
export declare const VERSION = "0.11.4";
|
|
5
5
|
export type { ModelBinding, BindingEntry, AgentConfig, MoltblockConfig, ChatMessage, VerifiedMemoryEntry, CheckpointEntry, OutcomeEntry, InboxEntry, StrategySuggestion, ReceivedArtifact, GovernanceConfig, } from "./types.js";
|
|
6
6
|
export { WorkingMemory } from "./memory.js";
|
|
7
7
|
export { signArtifact, verifyArtifact, artifactHash } from "./signing.js";
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: moltblock - Trust Layer for AI Agents
|
|
3
3
|
description: Verification gating for AI-generated artifacts. Policy checks to catch dangerous patterns before execution.
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.4
|
|
5
|
+
homepage: https://github.com/moltblock/moltblock
|
|
6
|
+
repository: https://github.com/moltblock/moltblock
|
|
5
7
|
metadata:
|
|
6
8
|
openclaw:
|
|
7
9
|
requires:
|
|
@@ -19,7 +21,7 @@ metadata:
|
|
|
19
21
|
homepage: https://github.com/moltblock/moltblock
|
|
20
22
|
install:
|
|
21
23
|
- kind: node
|
|
22
|
-
package: moltblock@0.11.
|
|
24
|
+
package: moltblock@0.11.4
|
|
23
25
|
bins: [moltblock]
|
|
24
26
|
---
|
|
25
27
|
|
|
@@ -51,7 +53,7 @@ Verify a task before execution.
|
|
|
51
53
|
### Usage
|
|
52
54
|
|
|
53
55
|
```bash
|
|
54
|
-
npx moltblock@0.11.
|
|
56
|
+
npx moltblock@0.11.4 "<task description>" --provider <provider> --json
|
|
55
57
|
```
|
|
56
58
|
|
|
57
59
|
### Parameters
|
|
@@ -75,7 +77,7 @@ Moltblock auto-detects the LLM provider from whichever API key is set. If no key
|
|
|
75
77
|
|
|
76
78
|
```bash
|
|
77
79
|
# Verify a task
|
|
78
|
-
npx moltblock@0.11.
|
|
80
|
+
npx moltblock@0.11.4 "implement a function that validates email addresses" --json
|
|
79
81
|
```
|
|
80
82
|
|
|
81
83
|
### Output (JSON mode)
|
|
@@ -96,13 +98,13 @@ npx moltblock@0.11.3 "implement a function that validates email addresses" --jso
|
|
|
96
98
|
Use directly with npx (recommended, no install needed):
|
|
97
99
|
|
|
98
100
|
```bash
|
|
99
|
-
npx moltblock@0.11.
|
|
101
|
+
npx moltblock@0.11.4 "your task" --json
|
|
100
102
|
```
|
|
101
103
|
|
|
102
104
|
Or install globally:
|
|
103
105
|
|
|
104
106
|
```bash
|
|
105
|
-
npm install -g moltblock@0.11.
|
|
107
|
+
npm install -g moltblock@0.11.4
|
|
106
108
|
```
|
|
107
109
|
|
|
108
110
|
## Configuration
|