@vibetasks/cli 0.5.3 → 0.5.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/README.md CHANGED
@@ -166,6 +166,94 @@ Delete a task.
166
166
  **Options:**
167
167
  - `-f, --force` - Skip confirmation
168
168
 
169
+ ### `vibetasks error [text]`
170
+ Capture errors and create high-priority tasks instantly.
171
+
172
+ **Input Methods:**
173
+ ```bash
174
+ # Pipe from terminal
175
+ npm run build 2>&1 | vibetasks error
176
+ tsc --noEmit | vibetasks error
177
+
178
+ # Paste directly
179
+ vibetasks error "TypeError: Cannot read property..."
180
+
181
+ # Read from stdin
182
+ cat error.log | vibetasks error
183
+ ```
184
+
185
+ **Supported Error Types:**
186
+ - ✅ TypeScript (TS2304, TS2339, TS2345, etc.)
187
+ - ✅ Node.js (TypeError, ReferenceError, SyntaxError)
188
+ - ✅ npm/yarn (ERESOLVE, E404, ENOENT)
189
+ - ✅ Webpack/Vite (Module not found, build failures)
190
+ - ✅ Expo/React Native (Metro, Invariant Violation)
191
+ - ✅ Python (NameError, ValueError, TypeError)
192
+ - ✅ Rust (error[E0xxx])
193
+ - ✅ Go (build errors)
194
+ - ✅ General errors (auto-detected)
195
+
196
+ **What Gets Extracted:**
197
+ - Error type and category
198
+ - File path, line number, column
199
+ - Error message
200
+ - Stack trace
201
+ - Suggested fix
202
+ - Project tag (auto-detected)
203
+
204
+ **Examples:**
205
+ ```bash
206
+ # TypeScript compilation errors
207
+ tsc --noEmit 2>&1 | vibetasks error
208
+
209
+ # npm install failures
210
+ npm install 2>&1 | vibetasks error
211
+
212
+ # Build errors
213
+ npm run build 2>&1 | vibetasks error
214
+
215
+ # Test failures
216
+ npm test 2>&1 | vibetasks error
217
+ ```
218
+
219
+ ### `vibetasks watch`
220
+ Watch clipboard for errors and auto-create tasks.
221
+
222
+ Runs as background daemon. Copy any error → automatically detected → prompted to create task.
223
+
224
+ **Usage:**
225
+ ```bash
226
+ vibetasks watch
227
+
228
+ # Press Ctrl+E to capture clipboard
229
+ # Press Ctrl+C to stop
230
+ ```
231
+
232
+ ### `vibetasks check`
233
+ One-time clipboard check for errors.
234
+
235
+ ```bash
236
+ # Copy an error, then:
237
+ vibetasks check
238
+ # If error detected, task created immediately
239
+ ```
240
+
241
+ ### `vibetasks inbox [options]`
242
+ View inbox items from all sources (errors, feedback, integrations).
243
+
244
+ **Options:**
245
+ - `--type <type>` - Filter: errors, feedback
246
+ - `--source <source>` - Filter: github, sentry, email, slack, manual
247
+ - `--status <status>` - Filter: new, vibing, done
248
+
249
+ **Examples:**
250
+ ```bash
251
+ vibetasks inbox
252
+ vibetasks inbox --type errors
253
+ vibetasks inbox --source github
254
+ vibetasks inbox --status new
255
+ ```
256
+
169
257
  ### `vibetasks config [key] [value]`
170
258
  View or set configuration.
171
259