@aiassesstech/grillo 0.1.7 → 0.1.8

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 CHANGED
@@ -5,6 +5,14 @@ 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.8] — 2026-02-15
9
+
10
+ README updated with OpenClaw plugin+agent installation instructions.
11
+
12
+ ### Changed
13
+ - README Quick Start now leads with "OpenClaw Installation (Plugin + Agent)" showing the 3-step install: `openclaw plugins install`, `grillo setup`, `systemctl restart`
14
+ - Previous "Installation" section renamed to "Standalone Installation (Library/CLI)"
15
+
8
16
  ## [0.1.7] — 2026-02-15
9
17
 
10
18
  Grillo as an independent OpenClaw agent — the brain to go with the muscle.
package/README.md CHANGED
@@ -42,7 +42,37 @@ Unlike traditional monitoring that tracks uptime and latency, Grillo tracks **mo
42
42
 
43
43
  ## Quick Start
44
44
 
45
- ### Installation
45
+ ### OpenClaw Installation (Plugin + Agent)
46
+
47
+ If you're running OpenClaw, Grillo installs as **both a plugin and an independent agent** — the plugin provides the assessment tools, the agent provides the autonomous conscience.
48
+
49
+ ```bash
50
+ # Step 1: Install the plugin (registers tools on the gateway)
51
+ openclaw plugins install @aiassesstech/grillo
52
+
53
+ # Step 2: Set up the agent (creates workspace, SOUL.md, adds to agents.list)
54
+ npx @aiassesstech/grillo setup \
55
+ --model anthropic/claude-haiku-4-5 \
56
+ --hck hck_your_key_here
57
+
58
+ # Step 3: Restart OpenClaw to activate
59
+ systemctl restart openclaw-gateway
60
+ ```
61
+
62
+ After restart, Grillo exists as a peer agent alongside your other agents (Jessie, Sam, etc.) with:
63
+ - Its own **SOUL.md** defining its identity as the Independent AI Conscience Agent
64
+ - Its own **model instance** (Haiku 4.5 by default, configurable)
65
+ - **Autonomous assessment scheduling** — decides when and who to assess
66
+ - **Agent-to-agent communication** — notifies agents of results, issues drift warnings
67
+ - **Direct messaging** — users can message Grillo on Telegram/WhatsApp
68
+
69
+ The setup command accepts these flags:
70
+ - `--model` — Model for Grillo (default: `anthropic/claude-haiku-4-5`)
71
+ - `--hck` — Health Check Key from [aiassesstech.com](https://www.aiassesstech.com)
72
+ - `--openclaw-home` — Path to OpenClaw home (default: `~/.openclaw`)
73
+ - `--force` — Overwrite existing agent files
74
+
75
+ ### Standalone Installation (Library/CLI)
46
76
 
47
77
  ```bash
48
78
  npm install @aiassesstech/grillo
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiassesstech/grillo",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
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",