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/.proagents/AI_INSTRUCTIONS.md +216 -3291
- package/.proagents/docs/README.md +27 -0
- package/.proagents/docs/command-details.md +813 -0
- package/.proagents/docs/testing.md +241 -0
- package/.proagents/prompts/06-testing.md +172 -0
- package/.proagents/prompts/07-documentation.md +62 -0
- package/.proagents/prompts/10-debug-logs.md +1130 -0
- package/README.md +22 -0
- package/package.json +1 -1
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
|
|---------|-------------|
|