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.
Files changed (2) hide show
  1. package/README.md +9 -3
  2. 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 files from the repository to `~/.kiro/hooks/`:
121
+ Copy hook script and hook files to `~/.kiro/hooks/`:
122
122
 
123
123
  ```bash
124
- curl -sL https://raw.githubusercontent.com/nalbam/vibe-monitor/main/config/kiro/hooks/vibe-monitor-pre-tool-use.kiro.hook -o ~/.kiro/hooks/vibe-monitor-pre-tool-use.kiro.hook
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`, `PostToolUse`, etc. |
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`) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-monitor",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "AI coding assistant status monitor",
5
5
  "main": "main.js",
6
6
  "bin": {