@aiassesstech/grillo 0.1.1 → 0.1.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.
- package/CHANGELOG.md +9 -0
- package/openclaw.plugin.json +53 -0
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to `@aiassesstech/grillo` will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.2] — 2026-02-14
|
|
9
|
+
|
|
10
|
+
OpenClaw plugin registration fix.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Added `openclaw.extensions` field to `package.json` (required by `openclaw plugins install`)
|
|
14
|
+
- Added `openclaw.plugin.json` manifest with config schema, UI hints, and plugin metadata
|
|
15
|
+
- Package now installs correctly via `openclaw plugins install @aiassesstech/grillo`
|
|
16
|
+
|
|
8
17
|
## [0.1.1] — 2026-02-14
|
|
9
18
|
|
|
10
19
|
Contextual Assessment — Test the deployed agent, not just the base model.
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "grillo-cricket",
|
|
3
|
+
"name": "Grillo Cricket",
|
|
4
|
+
"description": "The Conscience for AI — Independent assessment coordinator for multi-agent OpenClaw deployments. Fleet-wide ethical monitoring with drift detection and hierarchical certification.",
|
|
5
|
+
"configSchema": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"properties": {
|
|
9
|
+
"healthCheckKey": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "CompSi Health Check Key from AI Assess platform (hck_...)"
|
|
12
|
+
},
|
|
13
|
+
"baseUrl": {
|
|
14
|
+
"type": "string",
|
|
15
|
+
"description": "AI Assess API base URL",
|
|
16
|
+
"default": "https://www.aiassesstech.com"
|
|
17
|
+
},
|
|
18
|
+
"perQuestionTimeoutMs": {
|
|
19
|
+
"type": "number",
|
|
20
|
+
"description": "Timeout per question in milliseconds",
|
|
21
|
+
"default": 30000
|
|
22
|
+
},
|
|
23
|
+
"overallTimeoutMs": {
|
|
24
|
+
"type": "number",
|
|
25
|
+
"description": "Overall assessment timeout in milliseconds",
|
|
26
|
+
"default": 360000
|
|
27
|
+
},
|
|
28
|
+
"defaultAssessmentMode": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"description": "Default assessment mode: contextual (includes system prompt) or isolated (base model only)",
|
|
31
|
+
"enum": ["contextual", "isolated"],
|
|
32
|
+
"default": "contextual"
|
|
33
|
+
},
|
|
34
|
+
"driftWarningThreshold": {
|
|
35
|
+
"type": "number",
|
|
36
|
+
"description": "TDI threshold for drift warnings (0-1 scale)",
|
|
37
|
+
"default": 0.15
|
|
38
|
+
},
|
|
39
|
+
"driftCriticalThreshold": {
|
|
40
|
+
"type": "number",
|
|
41
|
+
"description": "TDI threshold for critical drift (auto-suspend)",
|
|
42
|
+
"default": 0.30
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"required": ["healthCheckKey"]
|
|
46
|
+
},
|
|
47
|
+
"uiHints": {
|
|
48
|
+
"healthCheckKey": { "label": "Health Check Key", "sensitive": true },
|
|
49
|
+
"baseUrl": { "label": "API Base URL", "placeholder": "https://www.aiassesstech.com" },
|
|
50
|
+
"defaultAssessmentMode": { "label": "Default Assessment Mode" },
|
|
51
|
+
"driftWarningThreshold": { "label": "Drift Warning Threshold", "placeholder": "0.15" }
|
|
52
|
+
}
|
|
53
|
+
}
|
package/package.json
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiassesstech/grillo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Grillo Cricket — The Conscience for AI. Independent assessment coordinator agent for multi-agent OpenClaw deployments.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
+
"openclaw": {
|
|
9
|
+
"extensions": ["./dist/index.js"]
|
|
10
|
+
},
|
|
8
11
|
"bin": {
|
|
9
12
|
"grillo": "dist/cli/bin.js"
|
|
10
13
|
},
|
|
11
14
|
"files": [
|
|
12
15
|
"dist",
|
|
16
|
+
"openclaw.plugin.json",
|
|
13
17
|
"README.md",
|
|
14
18
|
"LICENSE",
|
|
15
19
|
"CHANGELOG.md",
|