vibe-monitor 1.0.5 → 1.0.6
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/README.md +9 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -118,10 +118,16 @@ See [GitHub repository](https://github.com/nalbam/vibe-monitor) for full configu
|
|
|
118
118
|
|
|
119
119
|
### Kiro IDE
|
|
120
120
|
|
|
121
|
-
Copy hook
|
|
121
|
+
Copy hook script and hook files to `~/.kiro/hooks/`:
|
|
122
122
|
|
|
123
123
|
```bash
|
|
124
|
-
|
|
124
|
+
# Create hooks directory
|
|
125
|
+
mkdir -p ~/.kiro/hooks
|
|
126
|
+
|
|
127
|
+
# Copy hook script and hook files
|
|
128
|
+
cp config/kiro/hooks/vibe-monitor.sh ~/.kiro/hooks/
|
|
129
|
+
cp config/kiro/hooks/*.kiro.hook ~/.kiro/hooks/
|
|
130
|
+
chmod +x ~/.kiro/hooks/vibe-monitor.sh
|
|
125
131
|
```
|
|
126
132
|
|
|
127
133
|
## API
|
|
@@ -141,7 +147,7 @@ curl -X POST http://127.0.0.1:19280/status \
|
|
|
141
147
|
| Field | Description |
|
|
142
148
|
|-------|-------------|
|
|
143
149
|
| `state` | `start`, `idle`, `thinking`, `working`, `notification`, `done`, `sleep` |
|
|
144
|
-
| `event` | `PreToolUse`, `
|
|
150
|
+
| `event` | `SessionStart`, `PreToolUse`, `Stop`, etc. |
|
|
145
151
|
| `tool` | Tool name (e.g., `Bash`, `Read`, `Edit`) |
|
|
146
152
|
| `project` | Project name |
|
|
147
153
|
| `model` | Model name (e.g., `opus`, `sonnet`) |
|