proagents 1.6.9 → 1.6.10

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
@@ -184,6 +184,9 @@ Type these in any AI assistant (Claude, ChatGPT, Gemini, Cursor, etc.):
184
184
  | `pa:r` | `pa:requirements` |
185
185
  | `pa:p` | `pa:plan` |
186
186
  | `pa:i` | `pa:implement` |
187
+ | `pa:rev` | `pa:review` |
188
+ | `pa:dbg` | `pa:debug` |
189
+ | `pa:l` | `pa:logs` |
187
190
 
188
191
  ### Core Commands
189
192
  | Command | Description |
@@ -366,6 +369,25 @@ Type these in any AI assistant (Claude, ChatGPT, Gemini, Cursor, etc.):
366
369
  | `pa:duplication` | Find duplicate code blocks |
367
370
  | `pa:hotspots` | Find frequently changed files |
368
371
 
372
+ ### Debug & Logs
373
+ | Command | Description |
374
+ |---------|-------------|
375
+ | `pa:debug` | Start debug session |
376
+ | `pa:debug-add` | Add debug logs to code |
377
+ | `pa:debug-add "file"` | Add logs to specific file |
378
+ | `pa:debug-trace "func"` | Add entry/exit logs to function |
379
+ | `pa:debug-var "var"` | Track variable changes |
380
+ | `pa:debug-api` | Add API request/response logging |
381
+ | `pa:debug-state` | Add state change logging |
382
+ | `pa:debug-error` | Add error boundary logging |
383
+ | `pa:debug-web` | Web console debugging |
384
+ | `pa:debug-rn` | React Native debugging |
385
+ | `pa:debug-android` | Android native (logcat) |
386
+ | `pa:debug-ios` | iOS native debugging |
387
+ | `pa:logs` | View recent logs |
388
+ | `pa:logs-filter "term"` | Filter logs by term |
389
+ | `pa:debug-clean` | Remove all debug statements |
390
+
369
391
  ### Testing Advanced
370
392
  | Command | Description |
371
393
  |---------|-------------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proagents",
3
- "version": "1.6.9",
3
+ "version": "1.6.10",
4
4
  "description": "AI-agnostic development workflow framework that automates the full software development lifecycle",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",