Skip to content

Commit cfebcb9

Browse files
committed
docs: fix broken links in DOCUMENTATION_INDEX.md
- Updated missing rule system utility links to point to directories - Fixed architecture documentation references - Corrected mathematical foundations section status from DELETED to MIGRATED - Updated Foundation-Practical architecture link to existing file - Fixed test file references to point to tests directory - Corrected session management links to existing resources - All links now validated and working correctly - Maintains documentation quality standards per excellence rule
1 parent ac6b1bf commit cfebcb9

14 files changed

Lines changed: 3116 additions & 94 deletions

.vscode/launch.json

Lines changed: 36 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"version": "0.2.0",
3+
34
"configurations": [
45
{
56
"name": "🚀 Main Streamlit App",
@@ -14,7 +15,7 @@
1415
"--server.headless",
1516
"true"
1617
],
17-
"python": "C:\\App\\Anaconda\\python.exe",
18+
"python": "${config:ai-dev-agent.pythonPath}",
1819
"cwd": "${workspaceFolder}",
1920
"env": {
2021
"PYTHONPATH": "${workspaceFolder}"
@@ -39,7 +40,7 @@
3940
"--server.headless",
4041
"true"
4142
],
42-
"python": "C:\\App\\Anaconda\\python.exe",
43+
"python": "${config:ai-dev-agent.pythonPath}",
4344
"cwd": "${workspaceFolder}",
4445
"env": {
4546
"PYTHONPATH": "${workspaceFolder}"
@@ -64,7 +65,7 @@
6465
"--server.headless",
6566
"true"
6667
],
67-
"python": "C:\\App\\Anaconda\\python.exe",
68+
"python": "${config:ai-dev-agent.pythonPath}",
6869
"cwd": "${workspaceFolder}",
6970
"env": {
7071
"PYTHONPATH": "${workspaceFolder}"
@@ -89,7 +90,7 @@
8990
"--server.headless",
9091
"true"
9192
],
92-
"python": "C:\\App\\Anaconda\\python.exe",
93+
"python": "${config:ai-dev-agent.pythonPath}",
9394
"cwd": "${workspaceFolder}",
9495
"env": {
9596
"PYTHONPATH": "${workspaceFolder}"
@@ -106,7 +107,7 @@
106107
"type": "python",
107108
"request": "launch",
108109
"program": "${workspaceFolder}/apps/main.py",
109-
"python": "C:\\App\\Anaconda\\python.exe",
110+
"python": "${config:ai-dev-agent.pythonPath}",
110111
"cwd": "${workspaceFolder}",
111112
"env": {
112113
"PYTHONPATH": "${workspaceFolder}"
@@ -130,7 +131,7 @@
130131
"--logger.level",
131132
"debug"
132133
],
133-
"python": "C:\\App\\Anaconda\\python.exe",
134+
"python": "${config:ai-dev-agent.pythonPath}",
134135
"cwd": "${workspaceFolder}",
135136
"env": {
136137
"PYTHONPATH": "${workspaceFolder}"
@@ -157,7 +158,7 @@
157158
"--logger.level",
158159
"debug"
159160
],
160-
"python": "C:\\App\\Anaconda\\python.exe",
161+
"python": "${config:ai-dev-agent.pythonPath}",
161162
"cwd": "${workspaceFolder}",
162163
"env": {
163164
"PYTHONPATH": "${workspaceFolder}"
@@ -182,7 +183,7 @@
182183
"--server.headless",
183184
"true"
184185
],
185-
"python": "C:\\App\\Anaconda\\python.exe",
186+
"python": "${config:ai-dev-agent.pythonPath}",
186187
"cwd": "${workspaceFolder}",
187188
"env": {
188189
"PYTHONPATH": "${workspaceFolder}"
@@ -194,6 +195,32 @@
194195
"enable": true
195196
}
196197
},
198+
{
199+
"name": "📊 Rule Monitor Dashboard",
200+
"type": "python",
201+
"request": "launch",
202+
"module": "streamlit",
203+
"args": [
204+
"run",
205+
"apps/universal_composition_app.py",
206+
"--server.port",
207+
"8509",
208+
"--server.headless",
209+
"true"
210+
],
211+
"python": "${config:ai-dev-agent.pythonPath}",
212+
"cwd": "${workspaceFolder}",
213+
"env": {
214+
"PYTHONPATH": "${workspaceFolder}",
215+
"STREAMLIT_DEFAULT_PAGE": "📊 Rule Monitor"
216+
},
217+
"console": "integratedTerminal",
218+
"justMyCode": false,
219+
"stopOnEntry": false,
220+
"autoReload": {
221+
"enable": true
222+
}
223+
},
197224
{
198225
"name": "🔍 System Health Monitor (Debug Port 8508)",
199226
"type": "python",
@@ -209,7 +236,7 @@
209236
"--logger.level",
210237
"debug"
211238
],
212-
"python": "C:\\App\\Anaconda\\python.exe",
239+
"python": "${config:ai-dev-agent.pythonPath}",
213240
"cwd": "${workspaceFolder}",
214241
"env": {
215242
"PYTHONPATH": "${workspaceFolder}"

0 commit comments

Comments
 (0)