proagents 1.6.8 → 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/lib/commands/ai.js +148 -19
- package/lib/commands/config.js +39 -12
- package/lib/commands/init.js +94 -9
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# ProAgents Detailed Documentation
|
|
2
|
+
|
|
3
|
+
This folder contains detailed documentation for AI assistants.
|
|
4
|
+
|
|
5
|
+
## Files
|
|
6
|
+
|
|
7
|
+
| File | Description |
|
|
8
|
+
|------|-------------|
|
|
9
|
+
| `command-details.md` | Detailed execution instructions for all `pa:` commands |
|
|
10
|
+
| `testing.md` | Testing configuration and mobile testing setup |
|
|
11
|
+
|
|
12
|
+
## When to Read These
|
|
13
|
+
|
|
14
|
+
AI should read these files when:
|
|
15
|
+
- User asks for detailed help on a command
|
|
16
|
+
- Executing a complex command for the first time
|
|
17
|
+
- Troubleshooting issues with command execution
|
|
18
|
+
|
|
19
|
+
## Quick Access
|
|
20
|
+
|
|
21
|
+
Tell the AI:
|
|
22
|
+
- "Read command-details.md" for detailed command instructions
|
|
23
|
+
- "Read testing.md" for testing configuration help
|
|
24
|
+
|
|
25
|
+
Or use:
|
|
26
|
+
- `pa:docs commands` - AI reads command-details.md
|
|
27
|
+
- `pa:docs testing` - AI reads testing.md
|