reflexive 1.0.13 → 1.0.14

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
@@ -4,45 +4,37 @@
4
4
 
5
5
  [View full video (mp4)](demo1_clipped_4x.mp4)
6
6
 
7
- Embed Claude inside your running Node.js app. It sees logs, reads source, edits files, sets breakpoints, and responds to runtime events.
7
+ Embed Claude inside your running application. It sees logs, reads source, edits files, sets breakpoints, and responds to runtime events.
8
+
9
+ **Supports:** Node.js, Python, Go, .NET, Rust
8
10
 
9
11
  ## Quickstart
10
12
 
11
13
  ```bash
14
+ # Node.js
12
15
  echo "console.log('hello')" > app.js
13
16
  npx reflexive --write app.js
14
- # Open http://localhost:3099
15
- # Say: "Turn this into an Express server with a /users endpoint"
17
+
18
+ # Python
19
+ echo "print('hello')" > app.py
20
+ npx reflexive --write app.py
21
+
22
+ # Open http://localhost:3099 and chat with your app
16
23
  ```
17
24
 
18
25
  ## Oneliner
19
26
  ```bash
20
- npm i -g reflexive
27
+ npm i -g reflexive
21
28
  echo "console.log('hello')" > app.js; reflexive --write --inject --open app.js
22
29
  ```
23
30
 
24
- ## Versions
25
-
26
- As of v0.2.0, the default `reflexive` command uses:
27
- - **TypeScript CLI** - Modular architecture with separate managers for process, sandbox, and debugging
28
- - **Next.js Dashboard** - Modern React UI with real-time log streaming, ANSI color support, and watch triggers
29
-
30
- The original single-file JavaScript version is still available:
31
-
32
- ```bash
33
- # Use legacy single-file JavaScript version
34
- reflexive-legacy ./app.js
35
- ```
36
-
37
- Both versions have the same CLI interface and capabilities.
38
-
39
31
  ## What This Is
40
32
 
41
- Claude Agent SDK (Claude Code as a library) + your running Node.js process = an agent that:
33
+ Claude Agent SDK (Claude Code as a library) + your running application = an agent that:
42
34
 
43
35
  - **Agent loop** - keeps working until done, tool calls, retries, reasoning
44
36
  - **Process lifecycle** - start, stop, restart, watch for file changes
45
- - **V8 debugger** - real breakpoints, stepping, scope inspection via Inspector protocol
37
+ - **Multi-language debugging** - breakpoints, stepping, scope inspection (Node.js, Python, Go, .NET, Rust)
46
38
  - **Watch triggers** - pattern-match logs and auto-prompt the agent
47
39
  - **File read/write + shell** - behind explicit flags
48
40
 
@@ -54,9 +46,9 @@ Claude Agent SDK (Claude Code as a library) + your running Node.js process = an
54
46
  | - Process control, file ops, shell |
55
47
  | |
56
48
  | +---------------------------------------------------+ |
57
- | | your-app.js (child process) | |
49
+ | | your-app.js / app.py / main.go (child process) | |
58
50
  | | - stdout/stderr captured | |
59
- | | - Optional: deep instrumentation via --inject | |
51
+ | | - Optional: deep instrumentation (Node.js) | |
60
52
  | +---------------------------------------------------+ |
61
53
  +---------------------------------------------------------+
62
54
  ```
@@ -71,9 +63,9 @@ Capabilities require explicit opt-in:
71
63
  |------|---------|
72
64
  | `--write` | File modification |
73
65
  | `--shell` | Shell command execution |
74
- | `--inject` | Deep instrumentation (console intercept, diagnostics, perf metrics) |
75
- | `--eval` | Runtime code evaluation (implies --inject) |
76
- | `--debug` | V8 Inspector debugging (breakpoints, stepping, scope inspection) |
66
+ | `--inject` | Deep instrumentation (Node.js only: console intercept, diagnostics, perf metrics) |
67
+ | `--eval` | Runtime code evaluation (Node.js only, implies --inject) |
68
+ | `--debug` | Multi-language debugging (breakpoints, stepping, scope inspection) |
77
69
 
78
70
  This is a development tool. For production, use read-only mode.
79
71
 
@@ -108,13 +100,13 @@ reflexive [options] [entry-file] [-- app-args...]
108
100
  -i, --interactive Proxy stdin/stdout for CLI apps
109
101
  --mcp Run as MCP server for external AI agents
110
102
  --no-webui Disable web dashboard (MCP mode only)
111
- --inject Deep instrumentation
112
- --eval Runtime eval (DANGEROUS)
113
- -d, --debug V8 Inspector debugging
103
+ --inject Deep instrumentation (Node.js only)
104
+ --eval Runtime eval (Node.js only, DANGEROUS)
105
+ -d, --debug Multi-language debugging (breakpoints, stepping)
114
106
  --write Enable file writing
115
107
  --shell Enable shell access
116
108
  --dangerously-skip-permissions Enable everything
117
- --node-args <args> Pass args to Node.js
109
+ --node-args <args> Pass args to Node.js (Node.js only)
118
110
  ```
119
111
 
120
112
  ### Examples
@@ -123,13 +115,18 @@ reflexive [options] [entry-file] [-- app-args...]
123
115
  # Basic - read-only monitoring
124
116
  npx reflexive ./server.js
125
117
 
118
+ # Python app
119
+ npx reflexive ./app.py
120
+
126
121
  # Development - full control
127
122
  npx reflexive --write --shell --watch ./server.js
128
123
 
129
- # Debugging - set breakpoints, step through code
130
- npx reflexive --debug ./server.js
124
+ # Debugging - set breakpoints, step through code (any language)
125
+ npx reflexive --debug ./server.js # Node.js
126
+ npx reflexive --debug ./app.py # Python (requires: pip install debugpy)
127
+ npx reflexive --debug ./main.go # Go (requires: dlv)
131
128
 
132
- # Deep instrumentation - GC stats, event loop, HTTP tracking
129
+ # Deep instrumentation - GC stats, event loop, HTTP tracking (Node.js only)
133
130
  npx reflexive --inject ./server.js
134
131
 
135
132
  # MCP server - let Claude Code or other AI agents control your app
@@ -143,7 +140,7 @@ npx reflexive ./server.js -- --port 8080
143
140
 
144
141
  Run reflexive as an MCP server that external AI agents can connect to. This lets you control your app from Claude Code, Claude Desktop, ChatGPT, or any MCP-compatible client.
145
142
 
146
- The MCP server can run with or without a pre-specified app - use the `run_app` tool to dynamically start or switch between different Node.js applications.
143
+ The MCP server can run with or without a pre-specified app - use the `run_app` tool to dynamically start or switch between different applications (Node.js, Python, Go, etc.).
147
144
 
148
145
  ```bash
149
146
  # Start with a specific app
@@ -207,7 +204,7 @@ When running as an MCP server, these tools are available to connected agents:
207
204
 
208
205
  | Tool | Description |
209
206
  |------|-------------|
210
- | `run_app` | Start or switch to a different Node.js app |
207
+ | `run_app` | Start or switch to a different app (Node.js, Python, Go, etc.) |
211
208
  | `get_process_state` | Get app status (PID, uptime, running state) |
212
209
  | `get_output_logs` | Get stdout/stderr logs |
213
210
  | `restart_process` | Restart the app |
@@ -223,8 +220,8 @@ When running as an MCP server, these tools are available to connected agents:
223
220
  | `chat` | Chat with embedded Reflexive agent |
224
221
  | `reflexive_self_knowledge` | Get Reflexive documentation |
225
222
 
226
- With `--debug`: `debug_set_breakpoint`, `debug_resume`, `debug_step_*`, etc.
227
- With `--eval`: `evaluate_in_app`, `list_app_globals`
223
+ With `--debug`: `debug_set_breakpoint`, `debug_resume`, `debug_step_*`, etc. (all languages)
224
+ With `--eval`: `evaluate_in_app`, `list_app_globals` (Node.js only)
228
225
 
229
226
  ### Dynamic App Switching
230
227
 
@@ -242,9 +239,9 @@ The web dashboard also supports file picking to switch apps via the browser's Fi
242
239
 
243
240
  ---
244
241
 
245
- ## Library Mode
242
+ ## Library Mode (Node.js/TypeScript)
246
243
 
247
- Embed the agent inside your app for deeper introspection.
244
+ Embed the agent inside your Node.js app for deeper introspection. A [Python SDK](./python-sdk/) is also available.
248
245
 
249
246
  **Note:** Web UI is disabled by default for security. The `chat()` function works regardless.
250
247
 
@@ -388,9 +385,9 @@ Use cases:
388
385
  - "When 'user signed up' appears, summarize the signup"
389
386
  - "When memory exceeds 500MB, analyze what's using it"
390
387
 
391
- ## Injection Mode
388
+ ## Injection Mode (Node.js Only)
392
389
 
393
- With `--inject`, your app gets automatic instrumentation without code changes:
390
+ With `--inject`, your Node.js app gets automatic instrumentation without code changes:
394
391
 
395
392
  | What's Captured | Source |
396
393
  |-----------------|--------|
@@ -409,9 +406,9 @@ if (process.reflexive) {
409
406
  }
410
407
  ```
411
408
 
412
- ## Runtime Eval
409
+ ## Runtime Eval (Node.js Only)
413
410
 
414
- With `--eval`, the agent can execute code in your running app:
411
+ With `--eval`, the agent can execute JavaScript in your running Node.js app:
415
412
 
416
413
  ```
417
414
  You: "What's in the config object?"
@@ -450,7 +447,8 @@ npm run demo:ai # AI-powered endpoints
450
447
  ## Links
451
448
 
452
449
  - Built on [Claude Agent SDK](https://docs.anthropic.com/en/docs/claude-code/agent-sdk) (Claude Code as a library)
453
- - TypeScript CLI with Next.js dashboard (legacy single-file version available via `reflexive-legacy`)
450
+ - TypeScript CLI with Next.js dashboard
451
+ - [Python SDK](./python-sdk/) for embedding in Python apps
454
452
  - [Troubleshooting](./FAILURES.md)
455
453
 
456
454
  ## License
@@ -1 +1 @@
1
- <!DOCTYPE html><!--AMJwwhcWnGeQ9zK3ZcWU5--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/reflexive/_next/static/chunks/15847c93d76612e8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/reflexive/_next/static/chunks/09f4abd78132c894.js"/><script src="/reflexive/_next/static/chunks/43d761df92da7cb6.js" async=""></script><script src="/reflexive/_next/static/chunks/4ad98f4bdea0291d.js" async=""></script><script src="/reflexive/_next/static/chunks/turbopack-1d602ad9939477f9.js" async=""></script><script src="/reflexive/_next/static/chunks/64ee9622541d967c.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Reflexive Dashboard</title><meta name="description" content="AI-powered introspection for Node.js applications"/><link rel="icon" href="/reflexive/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/reflexive/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/reflexive/_next/static/chunks/09f4abd78132c894.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[57043,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n3:I[27657,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n4:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"ViewportBoundary\"]\n9:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"MetadataBoundary\"]\nb:I[30687,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n:HL[\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"AMJwwhcWnGeQ9zK3ZcWU5\",\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"c:I[71393,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"IconMark\"]\n6:null\na:[[\"$\",\"title\",\"0\",{\"children\":\"Reflexive Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-powered introspection for Node.js applications\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/reflexive/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Lc\",\"3\",{}]]\n"])</script></body></html>
1
+ <!DOCTYPE html><!--tBGYCuCzLOncdZ4ACwpUK--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/reflexive/_next/static/chunks/15847c93d76612e8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/reflexive/_next/static/chunks/09f4abd78132c894.js"/><script src="/reflexive/_next/static/chunks/43d761df92da7cb6.js" async=""></script><script src="/reflexive/_next/static/chunks/4ad98f4bdea0291d.js" async=""></script><script src="/reflexive/_next/static/chunks/turbopack-1d602ad9939477f9.js" async=""></script><script src="/reflexive/_next/static/chunks/64ee9622541d967c.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Reflexive Dashboard</title><meta name="description" content="AI-powered introspection for Node.js applications"/><link rel="icon" href="/reflexive/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/reflexive/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/reflexive/_next/static/chunks/09f4abd78132c894.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[57043,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n3:I[27657,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n4:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"ViewportBoundary\"]\n9:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"MetadataBoundary\"]\nb:I[30687,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n:HL[\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"tBGYCuCzLOncdZ4ACwpUK\",\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"c:I[71393,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"IconMark\"]\n6:null\na:[[\"$\",\"title\",\"0\",{\"children\":\"Reflexive Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-powered introspection for Node.js applications\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/reflexive/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Lc\",\"3\",{}]]\n"])</script></body></html>
@@ -1 +1 @@
1
- <!DOCTYPE html><!--AMJwwhcWnGeQ9zK3ZcWU5--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/reflexive/_next/static/chunks/15847c93d76612e8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/reflexive/_next/static/chunks/09f4abd78132c894.js"/><script src="/reflexive/_next/static/chunks/43d761df92da7cb6.js" async=""></script><script src="/reflexive/_next/static/chunks/4ad98f4bdea0291d.js" async=""></script><script src="/reflexive/_next/static/chunks/turbopack-1d602ad9939477f9.js" async=""></script><script src="/reflexive/_next/static/chunks/64ee9622541d967c.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Reflexive Dashboard</title><meta name="description" content="AI-powered introspection for Node.js applications"/><link rel="icon" href="/reflexive/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/reflexive/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/reflexive/_next/static/chunks/09f4abd78132c894.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[57043,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n3:I[27657,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n4:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"ViewportBoundary\"]\n9:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"MetadataBoundary\"]\nb:I[30687,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n:HL[\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"AMJwwhcWnGeQ9zK3ZcWU5\",\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"c:I[71393,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"IconMark\"]\n6:null\na:[[\"$\",\"title\",\"0\",{\"children\":\"Reflexive Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-powered introspection for Node.js applications\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/reflexive/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Lc\",\"3\",{}]]\n"])</script></body></html>
1
+ <!DOCTYPE html><!--tBGYCuCzLOncdZ4ACwpUK--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/reflexive/_next/static/chunks/15847c93d76612e8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/reflexive/_next/static/chunks/09f4abd78132c894.js"/><script src="/reflexive/_next/static/chunks/43d761df92da7cb6.js" async=""></script><script src="/reflexive/_next/static/chunks/4ad98f4bdea0291d.js" async=""></script><script src="/reflexive/_next/static/chunks/turbopack-1d602ad9939477f9.js" async=""></script><script src="/reflexive/_next/static/chunks/64ee9622541d967c.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Reflexive Dashboard</title><meta name="description" content="AI-powered introspection for Node.js applications"/><link rel="icon" href="/reflexive/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/reflexive/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/reflexive/_next/static/chunks/09f4abd78132c894.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[57043,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n3:I[27657,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n4:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"ViewportBoundary\"]\n9:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"MetadataBoundary\"]\nb:I[30687,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n:HL[\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"tBGYCuCzLOncdZ4ACwpUK\",\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"c:I[71393,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"IconMark\"]\n6:null\na:[[\"$\",\"title\",\"0\",{\"children\":\"Reflexive Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-powered introspection for Node.js applications\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/reflexive/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Lc\",\"3\",{}]]\n"])</script></body></html>
@@ -3,7 +3,7 @@
3
3
  3:I[23733,["/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js"],"default"]
4
4
  6:I[56978,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"OutletBoundary"]
5
5
  7:"$Sreact.suspense"
6
- 0:{"buildId":"AMJwwhcWnGeQ9zK3ZcWU5","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
6
+ 0:{"buildId":"tBGYCuCzLOncdZ4ACwpUK","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
7
7
  4:{}
8
8
  5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
9
9
  8:null
@@ -11,7 +11,7 @@ f:I[30687,[],"default"]
11
11
  :HL["/reflexive/_next/static/chunks/15847c93d76612e8.css","style"]
12
12
  :HL["/reflexive/_next/static/media/70bc3e132a0a741e-s.p.15008bfb.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
13
13
  :HL["/reflexive/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
14
- 0:{"P":null,"b":"AMJwwhcWnGeQ9zK3ZcWU5","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@6","$@7"]}}],[["$","script","script-0",{"src":"/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js","async":true,"nonce":"$undefined"}]],["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$Le"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$f",[]],"S":true}
14
+ 0:{"P":null,"b":"tBGYCuCzLOncdZ4ACwpUK","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@6","$@7"]}}],[["$","script","script-0",{"src":"/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js","async":true,"nonce":"$undefined"}]],["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$Le"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$f",[]],"S":true}
15
15
  6:{}
16
16
  7:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
17
17
  c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
@@ -3,4 +3,4 @@
3
3
  3:I[56978,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"MetadataBoundary"]
4
4
  4:"$Sreact.suspense"
5
5
  5:I[71393,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"IconMark"]
6
- 0:{"buildId":"AMJwwhcWnGeQ9zK3ZcWU5","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Reflexive Dashboard"}],["$","meta","1",{"name":"description","content":"AI-powered introspection for Node.js applications"}],["$","link","2",{"rel":"icon","href":"/reflexive/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
6
+ 0:{"buildId":"tBGYCuCzLOncdZ4ACwpUK","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Reflexive Dashboard"}],["$","meta","1",{"name":"description","content":"AI-powered introspection for Node.js applications"}],["$","link","2",{"rel":"icon","href":"/reflexive/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
@@ -2,4 +2,4 @@
2
2
  2:I[57043,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"default"]
3
3
  3:I[27657,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"default"]
4
4
  :HL["/reflexive/_next/static/chunks/15847c93d76612e8.css","style"]
5
- 0:{"buildId":"AMJwwhcWnGeQ9zK3ZcWU5","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
5
+ 0:{"buildId":"tBGYCuCzLOncdZ4ACwpUK","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
@@ -1,4 +1,4 @@
1
1
  :HL["/reflexive/_next/static/chunks/15847c93d76612e8.css","style"]
2
2
  :HL["/reflexive/_next/static/media/70bc3e132a0a741e-s.p.15008bfb.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
3
3
  :HL["/reflexive/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
4
- 0:{"buildId":"AMJwwhcWnGeQ9zK3ZcWU5","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
4
+ 0:{"buildId":"tBGYCuCzLOncdZ4ACwpUK","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
@@ -7,7 +7,7 @@
7
7
  9:I[56978,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"MetadataBoundary"]
8
8
  b:I[30687,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"default"]
9
9
  :HL["/reflexive/_next/static/chunks/15847c93d76612e8.css","style"]
10
- 0:{"P":null,"b":"AMJwwhcWnGeQ9zK3ZcWU5","c":["","_not-found",""],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
10
+ 0:{"P":null,"b":"tBGYCuCzLOncdZ4ACwpUK","c":["","_not-found",""],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
11
11
  8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
12
12
  c:I[71393,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"IconMark"]
13
13
  6:null
@@ -3,4 +3,4 @@
3
3
  3:I[56978,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"MetadataBoundary"]
4
4
  4:"$Sreact.suspense"
5
5
  5:I[71393,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"IconMark"]
6
- 0:{"buildId":"AMJwwhcWnGeQ9zK3ZcWU5","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Reflexive Dashboard"}],["$","meta","1",{"name":"description","content":"AI-powered introspection for Node.js applications"}],["$","link","2",{"rel":"icon","href":"/reflexive/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
6
+ 0:{"buildId":"tBGYCuCzLOncdZ4ACwpUK","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Reflexive Dashboard"}],["$","meta","1",{"name":"description","content":"AI-powered introspection for Node.js applications"}],["$","link","2",{"rel":"icon","href":"/reflexive/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
@@ -2,4 +2,4 @@
2
2
  2:I[57043,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"default"]
3
3
  3:I[27657,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"default"]
4
4
  :HL["/reflexive/_next/static/chunks/15847c93d76612e8.css","style"]
5
- 0:{"buildId":"AMJwwhcWnGeQ9zK3ZcWU5","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
5
+ 0:{"buildId":"tBGYCuCzLOncdZ4ACwpUK","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
@@ -1,5 +1,5 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[56978,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"OutletBoundary"]
3
3
  3:"$Sreact.suspense"
4
- 0:{"buildId":"AMJwwhcWnGeQ9zK3ZcWU5","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"tBGYCuCzLOncdZ4ACwpUK","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
5
5
  4:null
@@ -1,4 +1,4 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[57043,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"default"]
3
3
  3:I[27657,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"default"]
4
- 0:{"buildId":"AMJwwhcWnGeQ9zK3ZcWU5","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"tBGYCuCzLOncdZ4ACwpUK","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1,2 +1,2 @@
1
1
  :HL["/reflexive/_next/static/chunks/15847c93d76612e8.css","style"]
2
- 0:{"buildId":"AMJwwhcWnGeQ9zK3ZcWU5","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
2
+ 0:{"buildId":"tBGYCuCzLOncdZ4ACwpUK","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
@@ -1 +1 @@
1
- <!DOCTYPE html><!--AMJwwhcWnGeQ9zK3ZcWU5--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/reflexive/_next/static/chunks/15847c93d76612e8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/reflexive/_next/static/chunks/09f4abd78132c894.js"/><script src="/reflexive/_next/static/chunks/43d761df92da7cb6.js" async=""></script><script src="/reflexive/_next/static/chunks/4ad98f4bdea0291d.js" async=""></script><script src="/reflexive/_next/static/chunks/turbopack-1d602ad9939477f9.js" async=""></script><script src="/reflexive/_next/static/chunks/64ee9622541d967c.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Reflexive Dashboard</title><meta name="description" content="AI-powered introspection for Node.js applications"/><link rel="icon" href="/reflexive/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/reflexive/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/reflexive/_next/static/chunks/09f4abd78132c894.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[57043,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n3:I[27657,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n4:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"ViewportBoundary\"]\n9:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"MetadataBoundary\"]\nb:I[30687,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n:HL[\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"AMJwwhcWnGeQ9zK3ZcWU5\",\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"c:I[71393,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"IconMark\"]\n6:null\na:[[\"$\",\"title\",\"0\",{\"children\":\"Reflexive Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-powered introspection for Node.js applications\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/reflexive/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Lc\",\"3\",{}]]\n"])</script></body></html>
1
+ <!DOCTYPE html><!--tBGYCuCzLOncdZ4ACwpUK--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/reflexive/_next/static/chunks/15847c93d76612e8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/reflexive/_next/static/chunks/09f4abd78132c894.js"/><script src="/reflexive/_next/static/chunks/43d761df92da7cb6.js" async=""></script><script src="/reflexive/_next/static/chunks/4ad98f4bdea0291d.js" async=""></script><script src="/reflexive/_next/static/chunks/turbopack-1d602ad9939477f9.js" async=""></script><script src="/reflexive/_next/static/chunks/64ee9622541d967c.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Reflexive Dashboard</title><meta name="description" content="AI-powered introspection for Node.js applications"/><link rel="icon" href="/reflexive/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/reflexive/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/reflexive/_next/static/chunks/09f4abd78132c894.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[57043,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n3:I[27657,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n4:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"ViewportBoundary\"]\n9:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"MetadataBoundary\"]\nb:I[30687,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n:HL[\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"tBGYCuCzLOncdZ4ACwpUK\",\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"c:I[71393,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"IconMark\"]\n6:null\na:[[\"$\",\"title\",\"0\",{\"children\":\"Reflexive Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-powered introspection for Node.js applications\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/reflexive/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Lc\",\"3\",{}]]\n"])</script></body></html>
@@ -7,7 +7,7 @@
7
7
  9:I[56978,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"MetadataBoundary"]
8
8
  b:I[30687,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"default"]
9
9
  :HL["/reflexive/_next/static/chunks/15847c93d76612e8.css","style"]
10
- 0:{"P":null,"b":"AMJwwhcWnGeQ9zK3ZcWU5","c":["","_not-found",""],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
10
+ 0:{"P":null,"b":"tBGYCuCzLOncdZ4ACwpUK","c":["","_not-found",""],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
11
11
  8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
12
12
  c:I[71393,["/reflexive/_next/static/chunks/64ee9622541d967c.js"],"IconMark"]
13
13
  6:null
@@ -1 +1 @@
1
- <!DOCTYPE html><!--AMJwwhcWnGeQ9zK3ZcWU5--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/reflexive/_next/static/media/70bc3e132a0a741e-s.p.15008bfb.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/reflexive/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" as="image" href="/logo-carbon.png"/><link rel="stylesheet" href="/reflexive/_next/static/chunks/15847c93d76612e8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/reflexive/_next/static/chunks/09f4abd78132c894.js"/><script src="/reflexive/_next/static/chunks/43d761df92da7cb6.js" async=""></script><script src="/reflexive/_next/static/chunks/4ad98f4bdea0291d.js" async=""></script><script src="/reflexive/_next/static/chunks/turbopack-1d602ad9939477f9.js" async=""></script><script src="/reflexive/_next/static/chunks/64ee9622541d967c.js" async=""></script><script src="/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js" async=""></script><meta name="next-size-adjust" content=""/><title>Reflexive Dashboard</title><meta name="description" content="AI-powered introspection for Node.js applications"/><link rel="icon" href="/reflexive/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/reflexive/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950"><div hidden=""><!--$--><!--/$--></div><div class="h-screen overflow-hidden bg-zinc-950 text-zinc-200 flex flex-col"><div class="max-w-7xl mx-auto px-3 py-1 w-full flex flex-col h-full"><header class="flex justify-between items-center py-1 px-0 border-b border-zinc-800 mb-2"><div><h1 class="text-lg font-bold flex items-center gap-0"><img src="/logo-carbon.png" alt="R" class="h-[90px] w-auto -mr-[26px] -mt-1 -ml-4 relative z-10 drop-shadow-[0_0_4px_rgba(74,222,128,0.2)]"/><span class="text-2xl font-bold tracking-wider bg-gradient-to-r from-green-400 via-green-500 to-green-600 bg-clip-text text-transparent -ml-3">EFLEXIVE</span></h1></div><div class="flex gap-2"><button class="px-3 py-1.5 text-xs bg-zinc-800 border border-blue-500 rounded text-white hover:bg-blue-900" title="Run a different app">Run App</button><button class="px-3 py-1.5 text-xs bg-zinc-800 border border-green-500 rounded text-white hover:bg-green-900 disabled:opacity-50 disabled:cursor-not-allowed">Start</button><button class="px-3 py-1.5 text-xs bg-zinc-800 border border-zinc-600 rounded text-white hover:bg-zinc-700">Restart</button><button disabled="" class="px-3 py-1.5 text-xs bg-zinc-800 border border-red-500 rounded text-white hover:bg-red-900 disabled:opacity-50 disabled:cursor-not-allowed">Stop</button><button class="px-2.5 py-1.5 text-base bg-zinc-800 border border-amber-500 rounded text-amber-500 hover:bg-amber-900" title="Shutdown Reflexive">⏻</button></div></header><div class="flex gap-0 flex-1 min-h-0"><div class="flex-1 flex flex-col bg-zinc-900 border border-zinc-800 rounded-md overflow-hidden min-w-0"><div class="px-3.5 py-2.5 bg-zinc-800/80 border-b border-zinc-800 flex justify-between items-center text-sm font-medium"><span>Chat with your app</span><div class="flex items-center gap-2"><button class="px-2 py-0.5 text-xs text-zinc-400 border border-zinc-700 rounded hover:bg-zinc-700 hover:text-white">+ New</button><div class="flex items-center gap-1.5 text-xs"><span class="w-2 h-2 rounded-full bg-red-500"></span><span>Stopped</span></div></div></div><div class="flex-1 overflow-y-auto" style="padding:12px"><div></div></div><div class="p-3 border-t border-zinc-800"><form class="flex gap-2"><input type="text" placeholder="Ask about your app..." class="flex-1 px-3 py-2.5 bg-zinc-800 border border-zinc-700 rounded-md text-sm text-white placeholder:text-zinc-500 focus:outline-none focus:border-blue-500" value=""/><button type="submit" disabled="" class="px-5 py-2.5 bg-blue-500 rounded-md text-white font-medium hover:bg-blue-600 disabled:opacity-50">Send</button></form><div class="flex items-center mt-2 pt-2 border-t border-zinc-800"><label class="flex items-center gap-2 text-xs cursor-pointer hover:text-white text-zinc-500"><input type="checkbox" class="w-4 h-4 accent-blue-500"/><span>Let agent continue after output</span></label></div></div></div><div class="w-3 flex-shrink-0 relative group" style="cursor:col-resize"><div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 flex flex-col gap-1"><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div></div><div class="absolute inset-0 bg-zinc-700 opacity-0 group-hover:opacity-30 transition-opacity"></div></div><div class="flex flex-col bg-zinc-900 border border-zinc-800 rounded-md overflow-hidden" style="width:380px;flex-shrink:0"><div class="flex justify-end px-1 pt-1"><button class="text-zinc-500 hover:text-white hover:bg-zinc-800 rounded p-0.5 text-[10px]" title="Collapse panel">▶▶</button></div><div class="flex flex-col flex-1 min-h-0 overflow-hidden"><div class="flex items-center gap-1.5 px-3.5 py-2.5 bg-zinc-800/80 cursor-pointer select-none border-b border-zinc-800 hover:bg-zinc-800"><span class="text-xs transition-transform ">▼</span><span class="text-sm font-medium">Process Output</span><div class="ml-auto flex gap-1.5"><button class="px-2 py-0.5 text-xs text-zinc-400 border border-zinc-700 rounded hover:bg-zinc-700 hover:text-white" title="Clear logs">⌫</button><button class="px-2 py-0.5 text-xs border rounded text-zinc-400 border-zinc-700 hover:bg-zinc-700 hover:text-white" title="Pause auto-scroll">⏸</button></div></div><div class="flex items-center gap-2 px-3 py-1.5 bg-zinc-950 border-b border-zinc-800"><input type="text" placeholder="Filter logs..." class="w-36 px-2 py-1 text-xs bg-zinc-900 border border-zinc-700 rounded text-zinc-300 placeholder:text-zinc-600 focus:outline-none focus:border-blue-500" style="font-family:&#x27;SF Mono&#x27;, Monaco, monospace" value=""/><div class="flex gap-1.5 flex-wrap"><button title="Standard output from your application" class="px-2 py-0.5 text-[10px] font-mono rounded-full border transition-opacity border-green-500 text-green-500 bg-green-500/10 opacity-100">stdout</button><button title="Standard error output from your application" class="px-2 py-0.5 text-[10px] font-mono rounded-full border transition-opacity border-red-500 text-red-500 bg-red-500/10 opacity-100">stderr</button><button title="Reflexive system messages (start, stop, errors)" class="px-2 py-0.5 text-[10px] font-mono rounded-full border transition-opacity border-blue-500 text-blue-500 bg-blue-500/10 opacity-100">system</button><button title="Instrumentation logs from injected code" class="px-2 py-0.5 text-[10px] font-mono rounded-full border transition-opacity border-purple-500 text-purple-500 bg-purple-500/10 opacity-100">inject</button></div></div><div class="flex-1 overflow-y-auto p-2 text-[11px]" style="font-family:&#x27;SF Mono&#x27;, Monaco, monospace"><div></div></div><div class="flex items-center gap-4 px-3 py-3 bg-zinc-950 border-t border-zinc-800"><div class="flex flex-col items-center"><span class="text-[9px] text-zinc-500 uppercase tracking-wider mb-0.5">PID</span><span class="text-xs font-mono text-emerald-400 bg-emerald-950/50 px-2 py-0.5 rounded-md border border-emerald-900">--</span></div><div class="flex flex-col items-center"><span class="text-[9px] text-zinc-500 uppercase tracking-wider mb-0.5">Uptime</span><div class="relative"><svg width="44" height="44" viewBox="0 0 44 44" class="transform -rotate-90"><circle cx="22" cy="22" r="18" fill="none" stroke="#27272a" stroke-width="4"></circle><circle cx="22" cy="22" r="18" fill="none" stroke="url(#uptimeGradient)" stroke-width="4" stroke-linecap="round" stroke-dasharray="0 113" class="transition-all duration-1000"></circle><defs><linearGradient id="uptimeGradient" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#3b82f6"></stop><stop offset="100%" stop-color="#06b6d4"></stop></linearGradient></defs></svg><span class="absolute inset-0 flex items-center justify-center text-[10px] font-mono text-white">0s</span></div></div><div class="flex flex-col items-center"><span class="text-[9px] text-zinc-500 uppercase tracking-wider mb-0.5">Restarts</span><div class="flex items-center justify-center w-8 h-8 rounded-full text-xs font-mono bg-zinc-800 text-zinc-400 border border-zinc-700">0</div></div><div class="flex-1 flex justify-end"><svg width="60" height="24" viewBox="0 0 60 24" class="opacity-30"><path d="M0,20 Q5,18 10,16 T20,12 T30,14 T40,8 T50,10 T60,6" fill="none" stroke="#3b82f6" stroke-width="1.5" class="animate-pulse"></path><path d="M0,20 Q5,18 10,16 T20,12 T30,14 T40,8 T50,10 T60,6 L60,24 L0,24 Z" fill="url(#sparklineGradient)" opacity="0.3"></path><defs><linearGradient id="sparklineGradient" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="#3b82f6"></stop><stop offset="100%" stop-color="transparent"></stop></linearGradient></defs></svg></div></div><div class="h-3 flex-shrink-0 relative group" style="cursor:row-resize"><div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 flex flex-row gap-1"><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div></div><div class="absolute inset-0 bg-zinc-700 opacity-0 group-hover:opacity-30 transition-opacity"></div></div></div><div class="flex flex-col border-t border-zinc-800 overflow-y-auto" style="height:180px;flex-shrink:0"><div class="border-b border-zinc-900"><div class="flex items-center gap-1.5 px-3 py-1.5 bg-zinc-950 cursor-pointer select-none hover:text-white text-zinc-400"><span class="text-[10px] transition-transform ">▼</span><span class="text-xs">Modes</span></div><div class="bg-zinc-900"><div class="grid grid-cols-2 gap-1 p-2"><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-zinc-600 cursor-pointer hover:bg-zinc-800" title="Proxy stdin/stdout"><input type="checkbox" class="w-3 h-3 accent-blue-500"/><span>Interactive</span></div><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-zinc-600 cursor-pointer hover:bg-zinc-800" title="V8 Inspector breakpoints"><input type="checkbox" class="w-3 h-3 accent-blue-500"/><span>Debug</span></div><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-zinc-600 cursor-pointer hover:bg-zinc-800" title="Runtime eval + injection"><input type="checkbox" class="w-3 h-3 accent-blue-500"/><span>Eval</span></div></div></div></div><div class="border-b border-zinc-900"><div class="flex items-center gap-1.5 px-3 py-1.5 bg-zinc-950 cursor-pointer select-none hover:text-white text-zinc-400"><span class="text-[10px] transition-transform ">▼</span><span class="text-xs">Permissions</span></div><div class="bg-zinc-900"><div class="grid grid-cols-2 gap-1 p-2"><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-green-400 cursor-pointer hover:bg-zinc-800"><span class="text-green-400">✓</span><span>Read Files</span></div><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-zinc-600 opacity-70 cursor-pointer hover:bg-zinc-800"><span class="text-red-500">✗</span><span>Write Files</span></div><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-zinc-600 opacity-70 cursor-pointer hover:bg-zinc-800"><span class="text-red-500">✗</span><span>Shell Access</span></div><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-green-400 cursor-pointer hover:bg-zinc-800"><span class="text-green-400">✓</span><span>Restart</span></div></div></div></div><div class="border-b border-zinc-900"><div class="flex items-center gap-1.5 px-3 py-1.5 bg-zinc-950 cursor-pointer select-none hover:text-white text-zinc-400"><span class="text-[10px] transition-transform ">▼</span><span class="text-xs">Watch</span><span class="ml-auto px-1.5 py-0.5 text-[10px] bg-zinc-800 rounded-full">0</span></div><div class="bg-zinc-900"><div class="p-3 text-center text-xs text-zinc-600">No watches. Click 👁 on a log entry to add one.</div></div></div></div></div></div></div></div><!--$--><!--/$--><script src="/reflexive/_next/static/chunks/09f4abd78132c894.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[57043,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n3:I[27657,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n4:I[16339,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"ClientPageRoot\"]\n5:I[23733,[\"/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js\"],\"default\"]\n8:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"OutletBoundary\"]\n9:\"$Sreact.suspense\"\nb:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"ViewportBoundary\"]\nd:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"MetadataBoundary\"]\nf:I[30687,[],\"default\"]\n:HL[\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"style\"]\n:HL[\"/reflexive/_next/static/media/70bc3e132a0a741e-s.p.15008bfb.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/reflexive/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"AMJwwhcWnGeQ9zK3ZcWU5\",\"c\":[\"\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L4\",null,{\"Component\":\"$5\",\"serverProvidedParams\":{\"searchParams\":{},\"params\":{},\"promises\":[\"$@6\",\"$@7\"]}}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@a\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$Lb\",null,{\"children\":\"$Lc\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Ld\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Le\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$f\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"6:{}\n7:\"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params\"\n"])</script><script>self.__next_f.push([1,"c:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"10:I[71393,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"IconMark\"]\na:null\ne:[[\"$\",\"title\",\"0\",{\"children\":\"Reflexive Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-powered introspection for Node.js applications\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/reflexive/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$L10\",\"3\",{}]]\n"])</script></body></html>
1
+ <!DOCTYPE html><!--tBGYCuCzLOncdZ4ACwpUK--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/reflexive/_next/static/media/70bc3e132a0a741e-s.p.15008bfb.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/reflexive/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" as="image" href="/logo-carbon.png"/><link rel="stylesheet" href="/reflexive/_next/static/chunks/15847c93d76612e8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/reflexive/_next/static/chunks/09f4abd78132c894.js"/><script src="/reflexive/_next/static/chunks/43d761df92da7cb6.js" async=""></script><script src="/reflexive/_next/static/chunks/4ad98f4bdea0291d.js" async=""></script><script src="/reflexive/_next/static/chunks/turbopack-1d602ad9939477f9.js" async=""></script><script src="/reflexive/_next/static/chunks/64ee9622541d967c.js" async=""></script><script src="/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js" async=""></script><meta name="next-size-adjust" content=""/><title>Reflexive Dashboard</title><meta name="description" content="AI-powered introspection for Node.js applications"/><link rel="icon" href="/reflexive/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/reflexive/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950"><div hidden=""><!--$--><!--/$--></div><div class="h-screen overflow-hidden bg-zinc-950 text-zinc-200 flex flex-col"><div class="max-w-7xl mx-auto px-3 py-1 w-full flex flex-col h-full"><header class="flex justify-between items-center py-1 px-0 border-b border-zinc-800 mb-2"><div><h1 class="text-lg font-bold flex items-center gap-0"><img src="/logo-carbon.png" alt="R" class="h-[90px] w-auto -mr-[26px] -mt-1 -ml-4 relative z-10 drop-shadow-[0_0_4px_rgba(74,222,128,0.2)]"/><span class="text-2xl font-bold tracking-wider bg-gradient-to-r from-green-400 via-green-500 to-green-600 bg-clip-text text-transparent -ml-3">EFLEXIVE</span></h1></div><div class="flex gap-2"><button class="px-3 py-1.5 text-xs bg-zinc-800 border border-blue-500 rounded text-white hover:bg-blue-900" title="Run a different app">Run App</button><button class="px-3 py-1.5 text-xs bg-zinc-800 border border-green-500 rounded text-white hover:bg-green-900 disabled:opacity-50 disabled:cursor-not-allowed">Start</button><button class="px-3 py-1.5 text-xs bg-zinc-800 border border-zinc-600 rounded text-white hover:bg-zinc-700">Restart</button><button disabled="" class="px-3 py-1.5 text-xs bg-zinc-800 border border-red-500 rounded text-white hover:bg-red-900 disabled:opacity-50 disabled:cursor-not-allowed">Stop</button><button class="px-2.5 py-1.5 text-base bg-zinc-800 border border-amber-500 rounded text-amber-500 hover:bg-amber-900" title="Shutdown Reflexive">⏻</button></div></header><div class="flex gap-0 flex-1 min-h-0"><div class="flex-1 flex flex-col bg-zinc-900 border border-zinc-800 rounded-md overflow-hidden min-w-0"><div class="px-3.5 py-2.5 bg-zinc-800/80 border-b border-zinc-800 flex justify-between items-center text-sm font-medium"><span>Chat with your app</span><div class="flex items-center gap-2"><button class="px-2 py-0.5 text-xs text-zinc-400 border border-zinc-700 rounded hover:bg-zinc-700 hover:text-white">+ New</button><div class="flex items-center gap-1.5 text-xs"><span class="w-2 h-2 rounded-full bg-red-500"></span><span>Stopped</span></div></div></div><div class="flex-1 overflow-y-auto" style="padding:12px"><div></div></div><div class="p-3 border-t border-zinc-800"><form class="flex gap-2"><input type="text" placeholder="Ask about your app..." class="flex-1 px-3 py-2.5 bg-zinc-800 border border-zinc-700 rounded-md text-sm text-white placeholder:text-zinc-500 focus:outline-none focus:border-blue-500" value=""/><button type="submit" disabled="" class="px-5 py-2.5 bg-blue-500 rounded-md text-white font-medium hover:bg-blue-600 disabled:opacity-50">Send</button></form><div class="flex items-center mt-2 pt-2 border-t border-zinc-800"><label class="flex items-center gap-2 text-xs cursor-pointer hover:text-white text-zinc-500"><input type="checkbox" class="w-4 h-4 accent-blue-500"/><span>Let agent continue after output</span></label></div></div></div><div class="w-3 flex-shrink-0 relative group" style="cursor:col-resize"><div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 flex flex-col gap-1"><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div></div><div class="absolute inset-0 bg-zinc-700 opacity-0 group-hover:opacity-30 transition-opacity"></div></div><div class="flex flex-col bg-zinc-900 border border-zinc-800 rounded-md overflow-hidden" style="width:380px;flex-shrink:0"><div class="flex justify-end px-1 pt-1"><button class="text-zinc-500 hover:text-white hover:bg-zinc-800 rounded p-0.5 text-[10px]" title="Collapse panel">▶▶</button></div><div class="flex flex-col flex-1 min-h-0 overflow-hidden"><div class="flex items-center gap-1.5 px-3.5 py-2.5 bg-zinc-800/80 cursor-pointer select-none border-b border-zinc-800 hover:bg-zinc-800"><span class="text-xs transition-transform ">▼</span><span class="text-sm font-medium">Process Output</span><div class="ml-auto flex gap-1.5"><button class="px-2 py-0.5 text-xs text-zinc-400 border border-zinc-700 rounded hover:bg-zinc-700 hover:text-white" title="Clear logs">⌫</button><button class="px-2 py-0.5 text-xs border rounded text-zinc-400 border-zinc-700 hover:bg-zinc-700 hover:text-white" title="Pause auto-scroll">⏸</button></div></div><div class="flex items-center gap-2 px-3 py-1.5 bg-zinc-950 border-b border-zinc-800"><input type="text" placeholder="Filter logs..." class="w-36 px-2 py-1 text-xs bg-zinc-900 border border-zinc-700 rounded text-zinc-300 placeholder:text-zinc-600 focus:outline-none focus:border-blue-500" style="font-family:&#x27;SF Mono&#x27;, Monaco, monospace" value=""/><div class="flex gap-1.5 flex-wrap"><button title="Standard output from your application" class="px-2 py-0.5 text-[10px] font-mono rounded-full border transition-opacity border-green-500 text-green-500 bg-green-500/10 opacity-100">stdout</button><button title="Standard error output from your application" class="px-2 py-0.5 text-[10px] font-mono rounded-full border transition-opacity border-red-500 text-red-500 bg-red-500/10 opacity-100">stderr</button><button title="Reflexive system messages (start, stop, errors)" class="px-2 py-0.5 text-[10px] font-mono rounded-full border transition-opacity border-blue-500 text-blue-500 bg-blue-500/10 opacity-100">system</button><button title="Instrumentation logs from injected code" class="px-2 py-0.5 text-[10px] font-mono rounded-full border transition-opacity border-purple-500 text-purple-500 bg-purple-500/10 opacity-100">inject</button></div></div><div class="flex-1 overflow-y-auto p-2 text-[11px]" style="font-family:&#x27;SF Mono&#x27;, Monaco, monospace"><div></div></div><div class="flex items-center gap-4 px-3 py-3 bg-zinc-950 border-t border-zinc-800"><div class="flex flex-col items-center"><span class="text-[9px] text-zinc-500 uppercase tracking-wider mb-0.5">PID</span><span class="text-xs font-mono text-emerald-400 bg-emerald-950/50 px-2 py-0.5 rounded-md border border-emerald-900">--</span></div><div class="flex flex-col items-center"><span class="text-[9px] text-zinc-500 uppercase tracking-wider mb-0.5">Uptime</span><div class="relative"><svg width="44" height="44" viewBox="0 0 44 44" class="transform -rotate-90"><circle cx="22" cy="22" r="18" fill="none" stroke="#27272a" stroke-width="4"></circle><circle cx="22" cy="22" r="18" fill="none" stroke="url(#uptimeGradient)" stroke-width="4" stroke-linecap="round" stroke-dasharray="0 113" class="transition-all duration-1000"></circle><defs><linearGradient id="uptimeGradient" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#3b82f6"></stop><stop offset="100%" stop-color="#06b6d4"></stop></linearGradient></defs></svg><span class="absolute inset-0 flex items-center justify-center text-[10px] font-mono text-white">0s</span></div></div><div class="flex flex-col items-center"><span class="text-[9px] text-zinc-500 uppercase tracking-wider mb-0.5">Restarts</span><div class="flex items-center justify-center w-8 h-8 rounded-full text-xs font-mono bg-zinc-800 text-zinc-400 border border-zinc-700">0</div></div><div class="flex-1 flex justify-end"><svg width="60" height="24" viewBox="0 0 60 24" class="opacity-30"><path d="M0,20 Q5,18 10,16 T20,12 T30,14 T40,8 T50,10 T60,6" fill="none" stroke="#3b82f6" stroke-width="1.5" class="animate-pulse"></path><path d="M0,20 Q5,18 10,16 T20,12 T30,14 T40,8 T50,10 T60,6 L60,24 L0,24 Z" fill="url(#sparklineGradient)" opacity="0.3"></path><defs><linearGradient id="sparklineGradient" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="#3b82f6"></stop><stop offset="100%" stop-color="transparent"></stop></linearGradient></defs></svg></div></div><div class="h-3 flex-shrink-0 relative group" style="cursor:row-resize"><div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 flex flex-row gap-1"><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div><div class="w-1 h-1 rounded-full bg-zinc-600 group-hover:bg-zinc-400 transition-colors"></div></div><div class="absolute inset-0 bg-zinc-700 opacity-0 group-hover:opacity-30 transition-opacity"></div></div></div><div class="flex flex-col border-t border-zinc-800 overflow-y-auto" style="height:180px;flex-shrink:0"><div class="border-b border-zinc-900"><div class="flex items-center gap-1.5 px-3 py-1.5 bg-zinc-950 cursor-pointer select-none hover:text-white text-zinc-400"><span class="text-[10px] transition-transform ">▼</span><span class="text-xs">Modes</span></div><div class="bg-zinc-900"><div class="grid grid-cols-2 gap-1 p-2"><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-zinc-600 cursor-pointer hover:bg-zinc-800" title="Proxy stdin/stdout"><input type="checkbox" class="w-3 h-3 accent-blue-500"/><span>Interactive</span></div><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-zinc-600 cursor-pointer hover:bg-zinc-800" title="V8 Inspector breakpoints"><input type="checkbox" class="w-3 h-3 accent-blue-500"/><span>Debug</span></div><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-zinc-600 cursor-pointer hover:bg-zinc-800" title="Runtime eval + injection"><input type="checkbox" class="w-3 h-3 accent-blue-500"/><span>Eval</span></div></div></div></div><div class="border-b border-zinc-900"><div class="flex items-center gap-1.5 px-3 py-1.5 bg-zinc-950 cursor-pointer select-none hover:text-white text-zinc-400"><span class="text-[10px] transition-transform ">▼</span><span class="text-xs">Permissions</span></div><div class="bg-zinc-900"><div class="grid grid-cols-2 gap-1 p-2"><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-green-400 cursor-pointer hover:bg-zinc-800"><span class="text-green-400">✓</span><span>Read Files</span></div><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-zinc-600 opacity-70 cursor-pointer hover:bg-zinc-800"><span class="text-red-500">✗</span><span>Write Files</span></div><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-zinc-600 opacity-70 cursor-pointer hover:bg-zinc-800"><span class="text-red-500">✗</span><span>Shell Access</span></div><div class="flex items-center gap-1.5 px-2 py-1 rounded text-[10px] bg-zinc-900 text-green-400 cursor-pointer hover:bg-zinc-800"><span class="text-green-400">✓</span><span>Restart</span></div></div></div></div><div class="border-b border-zinc-900"><div class="flex items-center gap-1.5 px-3 py-1.5 bg-zinc-950 cursor-pointer select-none hover:text-white text-zinc-400"><span class="text-[10px] transition-transform ">▼</span><span class="text-xs">Watch</span><span class="ml-auto px-1.5 py-0.5 text-[10px] bg-zinc-800 rounded-full">0</span></div><div class="bg-zinc-900"><div class="p-3 text-center text-xs text-zinc-600">No watches. Click 👁 on a log entry to add one.</div></div></div></div></div></div></div></div><!--$--><!--/$--><script src="/reflexive/_next/static/chunks/09f4abd78132c894.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[57043,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n3:I[27657,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"default\"]\n4:I[16339,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"ClientPageRoot\"]\n5:I[23733,[\"/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js\"],\"default\"]\n8:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"OutletBoundary\"]\n9:\"$Sreact.suspense\"\nb:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"ViewportBoundary\"]\nd:I[56978,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"MetadataBoundary\"]\nf:I[30687,[],\"default\"]\n:HL[\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"style\"]\n:HL[\"/reflexive/_next/static/media/70bc3e132a0a741e-s.p.15008bfb.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/reflexive/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"tBGYCuCzLOncdZ4ACwpUK\",\"c\":[\"\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/reflexive/_next/static/chunks/15847c93d76612e8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L4\",null,{\"Component\":\"$5\",\"serverProvidedParams\":{\"searchParams\":{},\"params\":{},\"promises\":[\"$@6\",\"$@7\"]}}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@a\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$Lb\",null,{\"children\":\"$Lc\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Ld\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Le\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$f\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"6:{}\n7:\"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params\"\n"])</script><script>self.__next_f.push([1,"c:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"10:I[71393,[\"/reflexive/_next/static/chunks/64ee9622541d967c.js\"],\"IconMark\"]\na:null\ne:[[\"$\",\"title\",\"0\",{\"children\":\"Reflexive Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI-powered introspection for Node.js applications\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/reflexive/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$L10\",\"3\",{}]]\n"])</script></body></html>
@@ -11,7 +11,7 @@ f:I[30687,[],"default"]
11
11
  :HL["/reflexive/_next/static/chunks/15847c93d76612e8.css","style"]
12
12
  :HL["/reflexive/_next/static/media/70bc3e132a0a741e-s.p.15008bfb.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
13
13
  :HL["/reflexive/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
14
- 0:{"P":null,"b":"AMJwwhcWnGeQ9zK3ZcWU5","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@6","$@7"]}}],[["$","script","script-0",{"src":"/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js","async":true,"nonce":"$undefined"}]],["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$Le"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$f",[]],"S":true}
14
+ 0:{"P":null,"b":"tBGYCuCzLOncdZ4ACwpUK","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/reflexive/_next/static/chunks/15847c93d76612e8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_786c1081-module__J60SBq__variable jetbrains_mono_8dec50e9-module__V6cRDq__variable bg-zinc-950","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@6","$@7"]}}],[["$","script","script-0",{"src":"/reflexive/_next/static/chunks/664b1b6fe32f6a8a.js","async":true,"nonce":"$undefined"}]],["$","$L8",null,{"children":["$","$9",null,{"name":"Next.MetadataOutlet","children":"$@a"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Lb",null,{"children":"$Lc"}],["$","div",null,{"hidden":true,"children":["$","$Ld",null,{"children":["$","$9",null,{"name":"Next.Metadata","children":"$Le"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$f",[]],"S":true}
15
15
  6:{}
16
16
  7:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
17
17
  c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
@@ -1 +1 @@
1
- {"version":3,"file":"knowledge-tools.d.ts","sourceRoot":"","sources":["../../src/mcp/knowledge-tools.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAOH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAkP/C;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,OAAO,CA4B7C;AAED;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,OAAO,EAAE,CAEhD"}
1
+ {"version":3,"file":"knowledge-tools.d.ts","sourceRoot":"","sources":["../../src/mcp/knowledge-tools.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAOH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAmP/C;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,OAAO,CA+B7C;AAED;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,OAAO,EAAE,CAEhD"}
@@ -92,6 +92,7 @@ function listDocs() {
92
92
  '| `getting-started` | Installation, authentication, first steps |',
93
93
  '| `user-guide` | CLI usage, dashboard, configuration, watch triggers |',
94
94
  '| `api-reference` | Library API, MCP Server Mode, REST API, MCP tools |',
95
+ '| `python-sdk` | Python SDK for embedding Reflexive in Python apps |',
95
96
  '| `mcp` or `mcp-server` | MCP Server Mode for Claude Code, Claude Desktop, ChatGPT |',
96
97
  '| `developer-guide` | Architecture, code structure, contributing |',
97
98
  '| `deployment` | Railway, Docker, production deployment |',
@@ -184,7 +185,7 @@ function listDocs() {
184
185
  '```',
185
186
  '',
186
187
  'Tools available to connected agents:',
187
- '- `run_app` - start or switch to a different Node.js app',
188
+ '- `run_app` - start or switch to a different app (Node.js, Python, Go, etc.)',
188
189
  '- `get_process_state`, `get_output_logs`, `restart_process`, `stop_process`',
189
190
  '- `read_file`, `write_file`, `edit_file`, `list_directory` (with --write)',
190
191
  '- `exec_shell` (with --shell)',
@@ -240,16 +241,19 @@ function listDocs() {
240
241
  export function createKnowledgeTool() {
241
242
  return createTool('reflexive_self_knowledge', `Get detailed documentation about Reflexive's capabilities.
242
243
 
244
+ Reflexive supports multiple languages: Node.js, Python, Go, .NET, and Rust.
245
+
243
246
  Use this tool when you need to:
244
247
  - Help users write code that uses Reflexive features
245
248
  - Understand the API for makeReflexive, chat(), setState(), etc.
246
249
  - Explain how to create hybrid AI-native applications
247
250
  - Look up CLI options, configuration, or deployment options
251
+ - Learn about multi-language debugging (Python, Go, .NET, Rust)
248
252
 
249
- Topics: overview, getting-started, user-guide, api-reference, developer-guide, deployment
253
+ Topics: overview, getting-started, user-guide, api-reference, python-sdk, developer-guide, deployment
250
254
 
251
255
  Call with no topic to see a quick reference and list of available topics.`, {
252
- topic: z.string().optional().describe('Documentation topic to retrieve. Options: overview, getting-started, user-guide, api-reference, developer-guide, deployment. Omit for quick reference.'),
256
+ topic: z.string().optional().describe('Documentation topic to retrieve. Options: overview, getting-started, user-guide, api-reference, python-sdk, developer-guide, deployment. Omit for quick reference.'),
253
257
  }, async ({ topic }) => {
254
258
  if (!topic) {
255
259
  return textResult(listDocs());
@@ -1 +1 @@
1
- {"version":3,"file":"knowledge-tools.js","sourceRoot":"","sources":["../../src/mcp/knowledge-tools.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"knowledge-tools.js","sourceRoot":"","sources":["../../src/mcp/knowledge-tools.ts"],"names":[],"mappings":"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"}
package/docs/index.md CHANGED
@@ -124,17 +124,25 @@ Practical examples for all operating modes, including library mode integration,
124
124
 
125
125
  ## Version Information
126
126
 
127
- **Current Version**: 0.2.0
127
+ **Current Version**: 1.0.13
128
128
 
129
129
  **Requirements**:
130
- - Node.js >= 18.0.0
130
+ - Node.js >= 18.0.0 (for running Reflexive CLI)
131
131
  - Claude API access (via Claude Code CLI or API key)
132
132
 
133
+ **Supported Languages**:
134
+ - Node.js/TypeScript - Full support including injection and eval
135
+ - Python - Debugging via debugpy (`pip install debugpy`)
136
+ - Go - Debugging via Delve (`go install github.com/go-delve/delve/cmd/dlv@latest`)
137
+ - .NET - Debugging via netcoredbg
138
+ - Rust - Debugging via CodeLLDB
139
+
133
140
  **Runtime Dependencies**:
134
141
  - `@anthropic-ai/claude-agent-sdk` - Claude AI integration
135
142
  - `zod` - Parameter validation for MCP tools
136
- - `ws` - WebSocket for V8 Inspector protocol
143
+ - `ws` - WebSocket for debugger protocols
137
144
  - `ms` - Time string parsing
145
+ - `node-debugprotocol-client` - DAP client for multi-language debugging
138
146
 
139
147
  **Optional Dependencies**:
140
148
  - `@vercel/sandbox` - Sandbox mode isolation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reflexive",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "AI-powered introspection for Node.js apps. Monitor external processes or instrument your own with Claude Agent SDK.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",