@pyreon/mcp 0.13.1 → 0.15.0

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
@@ -93,7 +93,20 @@ count.update(n => n + 1) // update
93
93
  validate({ code: "import { useState } from 'react'" })
94
94
  ```
95
95
 
96
- Returns diagnostics for React patterns, wrong imports, and common Pyreon mistakes.
96
+ Runs two detectors and returns the merged result, sorted by source line:
97
+
98
+ - **React / coming-from-React mistakes** — `useState`, `useEffect`, `useMemo`, `useRef`, `className`, `htmlFor`, `onChange` on inputs, `.value` writes on signals, `Array.map()` in JSX, `memo` / `forwardRef` wrappers, React-package imports.
99
+ - **Pyreon / using-Pyreon-wrong mistakes** (added 2026-Q2):
100
+ - `for-missing-by` — `<For each={...}>` without a `by` prop.
101
+ - `for-with-key` — `<For key={...}>` (the keying prop is `by`; JSX reserves `key`).
102
+ - `props-destructured` — `({ foo }: Props) => <JSX />` captures props at setup and loses reactivity. Use `props.foo` or `splitProps(props, [...])`.
103
+ - `process-dev-gate` — `typeof process !== 'undefined' && process.env.NODE_ENV !== 'production'` is dead code in real Vite browser bundles. Use `import.meta.env?.DEV`.
104
+ - `empty-theme` — `.theme({})` is a no-op chain.
105
+ - `raw-add-event-listener` / `raw-remove-event-listener` — use `useEventListener` from `@pyreon/hooks` for auto-cleanup.
106
+ - `date-math-random-id` — `Date.now() + Math.random()` ID schemes collide under rapid operations; use a monotonic counter.
107
+ - `on-click-undefined` — `onClick={undefined}` (or any `on*={undefined}`); omit the prop or gate with a ternary.
108
+
109
+ Each diagnostic carries `{ code, message, line, column, current, suggested, fixable }`. **React diagnostics may report `fixable: true`** (handled by the `migrate_react` tool). **All Pyreon diagnostics report `fixable: false`** — no companion `migrate_pyreon` tool exists yet, so claiming auto-fix here would mislead consumers wiring UX off the flag. The invariant is locked in `packages/core/compiler/src/tests/pyreon-intercept.test.ts` under "fixable contract".
97
110
 
98
111
  ### `migrate_react` — Convert React code to Pyreon
99
112
 
@@ -152,6 +165,36 @@ diagnose({ error: "TypeError: count is not a function" })
152
165
  <div>{count()}</div>
153
166
  ```
154
167
 
168
+ ### `get_pattern` — Fetch a "how do I do X" pattern
169
+
170
+ ```
171
+ get_pattern({ name: "dev-warnings" }) # full body of the pattern
172
+ get_pattern({}) # list available patterns
173
+ ```
174
+
175
+ Reads `docs/patterns/<name>.md` from the Pyreon monorepo. Each pattern file answers a "how do I do X the right way" question with a correct example, the rationale, and the anti-pattern to avoid. 8 foundational patterns ship today: `dev-warnings`, `controllable-state`, `ssr-safe-hooks`, `signal-writes`, `keyed-lists`, `reactive-context`, `event-listeners`, `form-fields`. A misspelled name returns substring-match suggestions. Complements `get_api` (symbol reference) and `get_anti_patterns` (catalogue of mistakes).
176
+
177
+ ### `get_anti_patterns` — Browse the anti-patterns catalog
178
+
179
+ ```
180
+ get_anti_patterns({}) # full list
181
+ get_anti_patterns({ category: "reactivity" }) # single category
182
+ ```
183
+
184
+ Parses `.claude/rules/anti-patterns.md` into per-category listings. Valid categories: `reactivity`, `jsx`, `context`, `architecture`, `testing`, `lifecycle`, `documentation`, `all`. Each entry carries a title, a rationale, and — when applicable — a `[detector: <code>]` tag pairing it with a `validate`-tool diagnostic. Use it BEFORE writing new code: the catalog is the surface `validate` enforces reactively.
185
+
186
+ ### `get_changelog` — Recent release notes for a @pyreon/* package
187
+
188
+ ```
189
+ get_changelog({ package: "query" }) # latest 5 substantive versions
190
+ get_changelog({ package: "query", limit: 10 }) # expand the window
191
+ get_changelog({ package: "query", since: "0.12.0" }) # only versions newer than 0.12.0
192
+ get_changelog({ package: "query", includeDependencyUpdates: true })
193
+ get_changelog({}) # list every package + latest version
194
+ ```
195
+
196
+ Parses the `CHANGELOG.md` file (changesets-populated) for the named package. The short slug auto-prefixes `@pyreon/` — `"query"` and `"@pyreon/query"` resolve to the same result. Empty "ceremonial" version bumps (pure dependency bumps with no user-facing body) are filtered by default; when the whole history is ceremonial, the tool surfaces a clear "no substantive changes" message. `since` accepts any semver-ish string changesets emits (`"0.13.0"`, `"1.0.0-alpha.3"`) — when the floor equals or exceeds the latest substantive version, the tool returns a dedicated "no changes since vX" miss message. Complements `get_api` (current symbol reference) — changelog answers "what changed" while api-reference answers "what is it now".
197
+
155
198
  ### `get_routes` — List project routes
156
199
 
157
200
  ```
@@ -168,6 +211,24 @@ get_components({})
168
211
 
169
212
  Returns component names, file paths, props, and signal usage.
170
213
 
214
+ ### `audit_test_environment` — Scan tests for mock-vnode patterns
215
+
216
+ ```
217
+ audit_test_environment({}) # risk-grouped report (minRisk: medium)
218
+ audit_test_environment({ minRisk: "high" }) # only the riskiest
219
+ audit_test_environment({ minRisk: "low", limit: 3 }) # full coverage, 3 per group
220
+ ```
221
+
222
+ Scans every `*.test.ts` / `*.test.tsx` file under the `packages` tree for **mock-vnode patterns** — tests that construct `{ type, props, children }` object literals or a custom `vnode()` helper instead of going through the real `h()` from `@pyreon/core`. This class of pattern silently drops rocketstyle / compiler / attrs work from the pipeline and was the cause of PR #197's silent metadata drop.
223
+
224
+ Classification per file:
225
+
226
+ - **HIGH** — mock patterns present, no real `h()` calls, and no `h` import from `@pyreon/core`. At risk: the file has no pathway to exercise the real pipeline.
227
+ - **MEDIUM** — mock patterns present AND some real `h()` usage, but mocks outnumber real calls. Spot-check coverage.
228
+ - **LOW** — either no mocks, or mock count is dwarfed by real usage.
229
+
230
+ Each entry reports the literal count, helper count (definitions of `vnode` / `mockVNode` / `createVNode` / `VNodeMock` / `makeVNode`), real `h(...)` call count, and whether `h` is imported. Use the tool BEFORE modifying a test file to see if strengthening is warranted, or AFTER a framework change to audit for regression.
231
+
171
232
  ## Pyreon Patterns for AI
172
233
 
173
234
  These are the key patterns the MCP server teaches AI assistants:
@@ -5386,7 +5386,7 @@ var drawChart = (function (exports) {
5386
5386
  </script>
5387
5387
  <script>
5388
5388
  /*<!--*/
5389
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"home/runner/work/pyreon/pyreon/node_modules/.bun","children":[{"name":"zod@4.3.6/node_modules/zod","children":[{"name":"v3","children":[{"name":"helpers","children":[{"uid":"99f139dd-1","name":"util.js"},{"uid":"99f139dd-9","name":"parseUtil.js"},{"uid":"99f139dd-11","name":"errorUtil.js"}]},{"uid":"99f139dd-3","name":"ZodError.js"},{"name":"locales/en.js","uid":"99f139dd-5"},{"uid":"99f139dd-7","name":"errors.js"},{"uid":"99f139dd-13","name":"types.js"}]},{"name":"v4","children":[{"name":"core","children":[{"uid":"99f139dd-15","name":"core.js"},{"uid":"99f139dd-17","name":"util.js"},{"uid":"99f139dd-19","name":"errors.js"},{"uid":"99f139dd-21","name":"parse.js"},{"uid":"99f139dd-23","name":"regexes.js"},{"uid":"99f139dd-25","name":"checks.js"},{"uid":"99f139dd-27","name":"doc.js"},{"uid":"99f139dd-29","name":"versions.js"},{"uid":"99f139dd-31","name":"schemas.js"},{"uid":"99f139dd-33","name":"registries.js"},{"uid":"99f139dd-35","name":"api.js"},{"uid":"99f139dd-37","name":"to-json-schema.js"},{"uid":"99f139dd-39","name":"json-schema-processors.js"}]},{"name":"mini/schemas.js","uid":"99f139dd-41"},{"name":"classic","children":[{"uid":"99f139dd-45","name":"iso.js"},{"uid":"99f139dd-47","name":"errors.js"},{"uid":"99f139dd-49","name":"parse.js"},{"uid":"99f139dd-51","name":"schemas.js"}]}]}]},{"name":"@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm","children":[{"name":"server","children":[{"uid":"99f139dd-43","name":"zod-compat.js"},{"uid":"99f139dd-131","name":"zod-json-schema-compat.js"},{"uid":"99f139dd-141","name":"index.js"},{"uid":"99f139dd-143","name":"completable.js"},{"uid":"99f139dd-149","name":"mcp.js"},{"uid":"99f139dd-153","name":"stdio.js"}]},{"uid":"99f139dd-53","name":"types.js"},{"name":"experimental/tasks","children":[{"uid":"99f139dd-55","name":"interfaces.js"},{"uid":"99f139dd-137","name":"server.js"},{"uid":"99f139dd-139","name":"helpers.js"},{"uid":"99f139dd-147","name":"mcp-server.js"}]},{"name":"shared","children":[{"uid":"99f139dd-133","name":"protocol.js"},{"uid":"99f139dd-145","name":"toolNameValidation.js"},{"uid":"99f139dd-151","name":"stdio.js"}]},{"name":"validation/ajv-provider.js","uid":"99f139dd-135"}]},{"name":"zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm","children":[{"uid":"99f139dd-57","name":"Options.js"},{"uid":"99f139dd-59","name":"Refs.js"},{"uid":"99f139dd-61","name":"errorMessages.js"},{"uid":"99f139dd-63","name":"getRelativePath.js"},{"name":"parsers","children":[{"uid":"99f139dd-65","name":"any.js"},{"uid":"99f139dd-67","name":"array.js"},{"uid":"99f139dd-69","name":"bigint.js"},{"uid":"99f139dd-71","name":"boolean.js"},{"uid":"99f139dd-73","name":"branded.js"},{"uid":"99f139dd-75","name":"catch.js"},{"uid":"99f139dd-77","name":"date.js"},{"uid":"99f139dd-79","name":"default.js"},{"uid":"99f139dd-81","name":"effects.js"},{"uid":"99f139dd-83","name":"enum.js"},{"uid":"99f139dd-85","name":"intersection.js"},{"uid":"99f139dd-87","name":"literal.js"},{"uid":"99f139dd-89","name":"string.js"},{"uid":"99f139dd-91","name":"record.js"},{"uid":"99f139dd-93","name":"map.js"},{"uid":"99f139dd-95","name":"nativeEnum.js"},{"uid":"99f139dd-97","name":"never.js"},{"uid":"99f139dd-99","name":"null.js"},{"uid":"99f139dd-101","name":"union.js"},{"uid":"99f139dd-103","name":"nullable.js"},{"uid":"99f139dd-105","name":"number.js"},{"uid":"99f139dd-107","name":"object.js"},{"uid":"99f139dd-109","name":"optional.js"},{"uid":"99f139dd-111","name":"pipeline.js"},{"uid":"99f139dd-113","name":"promise.js"},{"uid":"99f139dd-115","name":"set.js"},{"uid":"99f139dd-117","name":"tuple.js"},{"uid":"99f139dd-119","name":"undefined.js"},{"uid":"99f139dd-121","name":"unknown.js"},{"uid":"99f139dd-123","name":"readonly.js"}]},{"uid":"99f139dd-125","name":"selectParser.js"},{"uid":"99f139dd-127","name":"parseDef.js"},{"uid":"99f139dd-129","name":"zodToJsonSchema.js"}]}]},{"uid":"99f139dd-155","name":"package.json"},{"name":"src","children":[{"uid":"99f139dd-157","name":"api-reference.ts"},{"uid":"99f139dd-159","name":"project-scanner.ts"},{"uid":"99f139dd-161","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"99f139dd-1":{"renderedLength":3035,"gzipLength":1099,"brotliLength":0,"metaUid":"99f139dd-0"},"99f139dd-3":{"renderedLength":2700,"gzipLength":1006,"brotliLength":0,"metaUid":"99f139dd-2"},"99f139dd-5":{"renderedLength":4422,"gzipLength":1053,"brotliLength":0,"metaUid":"99f139dd-4"},"99f139dd-7":{"renderedLength":176,"gzipLength":143,"brotliLength":0,"metaUid":"99f139dd-6"},"99f139dd-9":{"renderedLength":2722,"gzipLength":981,"brotliLength":0,"metaUid":"99f139dd-8"},"99f139dd-11":{"renderedLength":361,"gzipLength":212,"brotliLength":0,"metaUid":"99f139dd-10"},"99f139dd-13":{"renderedLength":87762,"gzipLength":14306,"brotliLength":0,"metaUid":"99f139dd-12"},"99f139dd-15":{"renderedLength":1833,"gzipLength":832,"brotliLength":0,"metaUid":"99f139dd-14"},"99f139dd-17":{"renderedLength":9618,"gzipLength":2903,"brotliLength":0,"metaUid":"99f139dd-16"},"99f139dd-19":{"renderedLength":1914,"gzipLength":695,"brotliLength":0,"metaUid":"99f139dd-18"},"99f139dd-21":{"renderedLength":3997,"gzipLength":735,"brotliLength":0,"metaUid":"99f139dd-20"},"99f139dd-23":{"renderedLength":3840,"gzipLength":1507,"brotliLength":0,"metaUid":"99f139dd-22"},"99f139dd-25":{"renderedLength":10719,"gzipLength":1943,"brotliLength":0,"metaUid":"99f139dd-24"},"99f139dd-27":{"renderedLength":891,"gzipLength":469,"brotliLength":0,"metaUid":"99f139dd-26"},"99f139dd-29":{"renderedLength":152,"gzipLength":140,"brotliLength":0,"metaUid":"99f139dd-28"},"99f139dd-31":{"renderedLength":40014,"gzipLength":7800,"brotliLength":0,"metaUid":"99f139dd-30"},"99f139dd-33":{"renderedLength":1239,"gzipLength":499,"brotliLength":0,"metaUid":"99f139dd-32"},"99f139dd-35":{"renderedLength":11382,"gzipLength":1441,"brotliLength":0,"metaUid":"99f139dd-34"},"99f139dd-37":{"renderedLength":10049,"gzipLength":2911,"brotliLength":0,"metaUid":"99f139dd-36"},"99f139dd-39":{"renderedLength":15884,"gzipLength":3311,"brotliLength":0,"metaUid":"99f139dd-38"},"99f139dd-41":{"renderedLength":1560,"gzipLength":682,"brotliLength":0,"metaUid":"99f139dd-40"},"99f139dd-43":{"renderedLength":3939,"gzipLength":1329,"brotliLength":0,"metaUid":"99f139dd-42"},"99f139dd-45":{"renderedLength":987,"gzipLength":289,"brotliLength":0,"metaUid":"99f139dd-44"},"99f139dd-47":{"renderedLength":845,"gzipLength":382,"brotliLength":0,"metaUid":"99f139dd-46"},"99f139dd-49":{"renderedLength":845,"gzipLength":222,"brotliLength":0,"metaUid":"99f139dd-48"},"99f139dd-51":{"renderedLength":23346,"gzipLength":4266,"brotliLength":0,"metaUid":"99f139dd-50"},"99f139dd-53":{"renderedLength":41531,"gzipLength":8628,"brotliLength":0,"metaUid":"99f139dd-52"},"99f139dd-55":{"renderedLength":674,"gzipLength":380,"brotliLength":0,"metaUid":"99f139dd-54"},"99f139dd-57":{"renderedLength":1018,"gzipLength":540,"brotliLength":0,"metaUid":"99f139dd-56"},"99f139dd-59":{"renderedLength":694,"gzipLength":387,"brotliLength":0,"metaUid":"99f139dd-58"},"99f139dd-61":{"renderedLength":477,"gzipLength":259,"brotliLength":0,"metaUid":"99f139dd-60"},"99f139dd-63":{"renderedLength":367,"gzipLength":265,"brotliLength":0,"metaUid":"99f139dd-62"},"99f139dd-65":{"renderedLength":507,"gzipLength":325,"brotliLength":0,"metaUid":"99f139dd-64"},"99f139dd-67":{"renderedLength":871,"gzipLength":393,"brotliLength":0,"metaUid":"99f139dd-66"},"99f139dd-69":{"renderedLength":1272,"gzipLength":430,"brotliLength":0,"metaUid":"99f139dd-68"},"99f139dd-71":{"renderedLength":213,"gzipLength":172,"brotliLength":0,"metaUid":"99f139dd-70"},"99f139dd-73":{"renderedLength":234,"gzipLength":176,"brotliLength":0,"metaUid":"99f139dd-72"},"99f139dd-75":{"renderedLength":237,"gzipLength":186,"brotliLength":0,"metaUid":"99f139dd-74"},"99f139dd-77":{"renderedLength":1058,"gzipLength":487,"brotliLength":0,"metaUid":"99f139dd-76"},"99f139dd-79":{"renderedLength":281,"gzipLength":204,"brotliLength":0,"metaUid":"99f139dd-78"},"99f139dd-81":{"renderedLength":290,"gzipLength":213,"brotliLength":0,"metaUid":"99f139dd-80"},"99f139dd-83":{"renderedLength":244,"gzipLength":196,"brotliLength":0,"metaUid":"99f139dd-82"},"99f139dd-85":{"renderedLength":1289,"gzipLength":568,"brotliLength":0,"metaUid":"99f139dd-84"},"99f139dd-87":{"renderedLength":622,"gzipLength":330,"brotliLength":0,"metaUid":"99f139dd-86"},"99f139dd-89":{"renderedLength":9861,"gzipLength":2627,"brotliLength":0,"metaUid":"99f139dd-88"},"99f139dd-91":{"renderedLength":1785,"gzipLength":650,"brotliLength":0,"metaUid":"99f139dd-90"},"99f139dd-93":{"renderedLength":697,"gzipLength":341,"brotliLength":0,"metaUid":"99f139dd-92"},"99f139dd-95":{"renderedLength":597,"gzipLength":358,"brotliLength":0,"metaUid":"99f139dd-94"},"99f139dd-97":{"renderedLength":311,"gzipLength":238,"brotliLength":0,"metaUid":"99f139dd-96"},"99f139dd-99":{"renderedLength":279,"gzipLength":224,"brotliLength":0,"metaUid":"99f139dd-98"},"99f139dd-101":{"renderedLength":2183,"gzipLength":880,"brotliLength":0,"metaUid":"99f139dd-100"},"99f139dd-103":{"renderedLength":1043,"gzipLength":474,"brotliLength":0,"metaUid":"99f139dd-102"},"99f139dd-105":{"renderedLength":1352,"gzipLength":446,"brotliLength":0,"metaUid":"99f139dd-104"},"99f139dd-107":{"renderedLength":1940,"gzipLength":733,"brotliLength":0,"metaUid":"99f139dd-106"},"99f139dd-109":{"renderedLength":538,"gzipLength":317,"brotliLength":0,"metaUid":"99f139dd-108"},"99f139dd-111":{"renderedLength":632,"gzipLength":324,"brotliLength":0,"metaUid":"99f139dd-110"},"99f139dd-113":{"renderedLength":232,"gzipLength":178,"brotliLength":0,"metaUid":"99f139dd-112"},"99f139dd-115":{"renderedLength":587,"gzipLength":333,"brotliLength":0,"metaUid":"99f139dd-114"},"99f139dd-117":{"renderedLength":878,"gzipLength":363,"brotliLength":0,"metaUid":"99f139dd-116"},"99f139dd-119":{"renderedLength":228,"gzipLength":177,"brotliLength":0,"metaUid":"99f139dd-118"},"99f139dd-121":{"renderedLength":215,"gzipLength":169,"brotliLength":0,"metaUid":"99f139dd-120"},"99f139dd-123":{"renderedLength":243,"gzipLength":189,"brotliLength":0,"metaUid":"99f139dd-122"},"99f139dd-125":{"renderedLength":2747,"gzipLength":602,"brotliLength":0,"metaUid":"99f139dd-124"},"99f139dd-127":{"renderedLength":1891,"gzipLength":746,"brotliLength":0,"metaUid":"99f139dd-126"},"99f139dd-129":{"renderedLength":2295,"gzipLength":893,"brotliLength":0,"metaUid":"99f139dd-128"},"99f139dd-131":{"renderedLength":1162,"gzipLength":526,"brotliLength":0,"metaUid":"99f139dd-130"},"99f139dd-133":{"renderedLength":32181,"gzipLength":7194,"brotliLength":0,"metaUid":"99f139dd-132"},"99f139dd-135":{"renderedLength":2300,"gzipLength":896,"brotliLength":0,"metaUid":"99f139dd-134"},"99f139dd-137":{"renderedLength":7997,"gzipLength":2096,"brotliLength":0,"metaUid":"99f139dd-136"},"99f139dd-139":{"renderedLength":2090,"gzipLength":603,"brotliLength":0,"metaUid":"99f139dd-138"},"99f139dd-141":{"renderedLength":15033,"gzipLength":3878,"brotliLength":0,"metaUid":"99f139dd-140"},"99f139dd-143":{"renderedLength":698,"gzipLength":379,"brotliLength":0,"metaUid":"99f139dd-142"},"99f139dd-145":{"renderedLength":3172,"gzipLength":1237,"brotliLength":0,"metaUid":"99f139dd-144"},"99f139dd-147":{"renderedLength":1103,"gzipLength":559,"brotliLength":0,"metaUid":"99f139dd-146"},"99f139dd-149":{"renderedLength":27891,"gzipLength":5998,"brotliLength":0,"metaUid":"99f139dd-148"},"99f139dd-151":{"renderedLength":851,"gzipLength":446,"brotliLength":0,"metaUid":"99f139dd-150"},"99f139dd-153":{"renderedLength":1687,"gzipLength":739,"brotliLength":0,"metaUid":"99f139dd-152"},"99f139dd-155":{"renderedLength":60,"gzipLength":74,"brotliLength":0,"metaUid":"99f139dd-154"},"99f139dd-157":{"renderedLength":155334,"gzipLength":49924,"brotliLength":0,"metaUid":"99f139dd-156"},"99f139dd-159":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"99f139dd-158"},"99f139dd-161":{"renderedLength":9014,"gzipLength":3212,"brotliLength":0,"metaUid":"99f139dd-160"}},"nodeMetas":{"99f139dd-0":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v3/helpers/util.js","moduleParts":{"index.js":"99f139dd-1"},"imported":[],"importedBy":[{"uid":"99f139dd-174"},{"uid":"99f139dd-12"},{"uid":"99f139dd-2"},{"uid":"99f139dd-4"}]},"99f139dd-2":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v3/ZodError.js","moduleParts":{"index.js":"99f139dd-3"},"imported":[{"uid":"99f139dd-0"}],"importedBy":[{"uid":"99f139dd-174"},{"uid":"99f139dd-12"},{"uid":"99f139dd-4"}]},"99f139dd-4":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v3/locales/en.js","moduleParts":{"index.js":"99f139dd-5"},"imported":[{"uid":"99f139dd-2"},{"uid":"99f139dd-0"}],"importedBy":[{"uid":"99f139dd-6"},{"uid":"99f139dd-8"}]},"99f139dd-6":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v3/errors.js","moduleParts":{"index.js":"99f139dd-7"},"imported":[{"uid":"99f139dd-4"}],"importedBy":[{"uid":"99f139dd-174"},{"uid":"99f139dd-8"},{"uid":"99f139dd-12"}]},"99f139dd-8":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v3/helpers/parseUtil.js","moduleParts":{"index.js":"99f139dd-9"},"imported":[{"uid":"99f139dd-6"},{"uid":"99f139dd-4"}],"importedBy":[{"uid":"99f139dd-174"},{"uid":"99f139dd-12"}]},"99f139dd-10":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v3/helpers/errorUtil.js","moduleParts":{"index.js":"99f139dd-11"},"imported":[],"importedBy":[{"uid":"99f139dd-12"}]},"99f139dd-12":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v3/types.js","moduleParts":{"index.js":"99f139dd-13"},"imported":[{"uid":"99f139dd-2"},{"uid":"99f139dd-6"},{"uid":"99f139dd-10"},{"uid":"99f139dd-8"},{"uid":"99f139dd-0"}],"importedBy":[{"uid":"99f139dd-174"}]},"99f139dd-14":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/core.js","moduleParts":{"index.js":"99f139dd-15"},"imported":[],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-20"},{"uid":"99f139dd-18"},{"uid":"99f139dd-30"},{"uid":"99f139dd-24"}]},"99f139dd-16":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/util.js","moduleParts":{"index.js":"99f139dd-17"},"imported":[],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-40"},{"uid":"99f139dd-38"},{"uid":"99f139dd-20"},{"uid":"99f139dd-18"},{"uid":"99f139dd-30"},{"uid":"99f139dd-24"},{"uid":"99f139dd-22"},{"uid":"99f139dd-34"},{"uid":"99f139dd-188"},{"uid":"99f139dd-189"},{"uid":"99f139dd-190"},{"uid":"99f139dd-191"},{"uid":"99f139dd-192"},{"uid":"99f139dd-193"},{"uid":"99f139dd-194"},{"uid":"99f139dd-195"},{"uid":"99f139dd-196"},{"uid":"99f139dd-197"},{"uid":"99f139dd-198"},{"uid":"99f139dd-199"},{"uid":"99f139dd-200"},{"uid":"99f139dd-201"},{"uid":"99f139dd-202"},{"uid":"99f139dd-203"},{"uid":"99f139dd-204"},{"uid":"99f139dd-205"},{"uid":"99f139dd-206"},{"uid":"99f139dd-207"},{"uid":"99f139dd-208"},{"uid":"99f139dd-209"},{"uid":"99f139dd-210"},{"uid":"99f139dd-212"},{"uid":"99f139dd-213"},{"uid":"99f139dd-214"},{"uid":"99f139dd-215"},{"uid":"99f139dd-216"},{"uid":"99f139dd-217"},{"uid":"99f139dd-218"},{"uid":"99f139dd-219"},{"uid":"99f139dd-220"},{"uid":"99f139dd-221"},{"uid":"99f139dd-222"},{"uid":"99f139dd-223"},{"uid":"99f139dd-224"},{"uid":"99f139dd-225"},{"uid":"99f139dd-226"},{"uid":"99f139dd-227"},{"uid":"99f139dd-228"},{"uid":"99f139dd-230"},{"uid":"99f139dd-231"},{"uid":"99f139dd-232"},{"uid":"99f139dd-233"},{"uid":"99f139dd-234"},{"uid":"99f139dd-235"},{"uid":"99f139dd-236"},{"uid":"99f139dd-46"}]},"99f139dd-18":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/errors.js","moduleParts":{"index.js":"99f139dd-19"},"imported":[{"uid":"99f139dd-14"},{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-20"}]},"99f139dd-20":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/parse.js","moduleParts":{"index.js":"99f139dd-21"},"imported":[{"uid":"99f139dd-14"},{"uid":"99f139dd-18"},{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-30"}]},"99f139dd-22":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/regexes.js","moduleParts":{"index.js":"99f139dd-23"},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-30"},{"uid":"99f139dd-24"}]},"99f139dd-24":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/checks.js","moduleParts":{"index.js":"99f139dd-25"},"imported":[{"uid":"99f139dd-14"},{"uid":"99f139dd-22"},{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-30"},{"uid":"99f139dd-34"}]},"99f139dd-26":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/doc.js","moduleParts":{"index.js":"99f139dd-27"},"imported":[],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-30"}]},"99f139dd-28":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/versions.js","moduleParts":{"index.js":"99f139dd-29"},"imported":[],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-30"}]},"99f139dd-30":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/schemas.js","moduleParts":{"index.js":"99f139dd-31"},"imported":[{"uid":"99f139dd-24"},{"uid":"99f139dd-14"},{"uid":"99f139dd-26"},{"uid":"99f139dd-20"},{"uid":"99f139dd-22"},{"uid":"99f139dd-16"},{"uid":"99f139dd-28"}],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-34"}]},"99f139dd-32":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/registries.js","moduleParts":{"index.js":"99f139dd-33"},"imported":[],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-34"},{"uid":"99f139dd-36"},{"uid":"99f139dd-239"}]},"99f139dd-34":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/api.js","moduleParts":{"index.js":"99f139dd-35"},"imported":[{"uid":"99f139dd-24"},{"uid":"99f139dd-32"},{"uid":"99f139dd-30"},{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-179"}]},"99f139dd-36":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/to-json-schema.js","moduleParts":{"index.js":"99f139dd-37"},"imported":[{"uid":"99f139dd-32"}],"importedBy":[{"uid":"99f139dd-179"},{"uid":"99f139dd-38"},{"uid":"99f139dd-186"},{"uid":"99f139dd-50"}]},"99f139dd-38":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/json-schema-processors.js","moduleParts":{"index.js":"99f139dd-39"},"imported":[{"uid":"99f139dd-36"},{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-175"},{"uid":"99f139dd-179"},{"uid":"99f139dd-185"},{"uid":"99f139dd-186"},{"uid":"99f139dd-50"}]},"99f139dd-40":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/mini/schemas.js","moduleParts":{"index.js":"99f139dd-41"},"imported":[{"uid":"99f139dd-179"},{"uid":"99f139dd-16"},{"uid":"99f139dd-180"}],"importedBy":[{"uid":"99f139dd-175"},{"uid":"99f139dd-183"},{"uid":"99f139dd-184"}]},"99f139dd-42":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js","moduleParts":{"index.js":"99f139dd-43"},"imported":[{"uid":"99f139dd-168"},{"uid":"99f139dd-169"}],"importedBy":[{"uid":"99f139dd-148"},{"uid":"99f139dd-140"},{"uid":"99f139dd-130"},{"uid":"99f139dd-132"}]},"99f139dd-44":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/classic/iso.js","moduleParts":{"index.js":"99f139dd-45"},"imported":[{"uid":"99f139dd-179"},{"uid":"99f139dd-50"}],"importedBy":[{"uid":"99f139dd-185"},{"uid":"99f139dd-50"},{"uid":"99f139dd-239"}]},"99f139dd-46":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/classic/errors.js","moduleParts":{"index.js":"99f139dd-47"},"imported":[{"uid":"99f139dd-179"},{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-185"},{"uid":"99f139dd-48"}]},"99f139dd-48":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/classic/parse.js","moduleParts":{"index.js":"99f139dd-49"},"imported":[{"uid":"99f139dd-179"},{"uid":"99f139dd-46"}],"importedBy":[{"uid":"99f139dd-185"},{"uid":"99f139dd-50"}]},"99f139dd-50":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/classic/schemas.js","moduleParts":{"index.js":"99f139dd-51"},"imported":[{"uid":"99f139dd-179"},{"uid":"99f139dd-38"},{"uid":"99f139dd-36"},{"uid":"99f139dd-237"},{"uid":"99f139dd-44"},{"uid":"99f139dd-48"}],"importedBy":[{"uid":"99f139dd-185"},{"uid":"99f139dd-239"},{"uid":"99f139dd-44"},{"uid":"99f139dd-240"}]},"99f139dd-52":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js","moduleParts":{"index.js":"99f139dd-53"},"imported":[{"uid":"99f139dd-171"}],"importedBy":[{"uid":"99f139dd-148"},{"uid":"99f139dd-140"},{"uid":"99f139dd-150"},{"uid":"99f139dd-132"},{"uid":"99f139dd-136"}]},"99f139dd-54":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js","moduleParts":{"index.js":"99f139dd-55"},"imported":[],"importedBy":[{"uid":"99f139dd-132"}]},"99f139dd-56":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/Options.js","moduleParts":{"index.js":"99f139dd-57"},"imported":[],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-58"},{"uid":"99f139dd-126"}]},"99f139dd-58":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/Refs.js","moduleParts":{"index.js":"99f139dd-59"},"imported":[{"uid":"99f139dd-56"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-128"}]},"99f139dd-60":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/errorMessages.js","moduleParts":{"index.js":"99f139dd-61"},"imported":[],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-66"},{"uid":"99f139dd-68"},{"uid":"99f139dd-76"},{"uid":"99f139dd-104"},{"uid":"99f139dd-114"},{"uid":"99f139dd-88"}]},"99f139dd-62":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/getRelativePath.js","moduleParts":{"index.js":"99f139dd-63"},"imported":[],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-126"},{"uid":"99f139dd-64"}]},"99f139dd-64":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/any.js","moduleParts":{"index.js":"99f139dd-65"},"imported":[{"uid":"99f139dd-62"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-126"},{"uid":"99f139dd-80"},{"uid":"99f139dd-92"},{"uid":"99f139dd-96"},{"uid":"99f139dd-108"},{"uid":"99f139dd-90"},{"uid":"99f139dd-118"},{"uid":"99f139dd-120"},{"uid":"99f139dd-124"},{"uid":"99f139dd-128"}]},"99f139dd-66":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/array.js","moduleParts":{"index.js":"99f139dd-67"},"imported":[{"uid":"99f139dd-168"},{"uid":"99f139dd-60"},{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-68":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js","moduleParts":{"index.js":"99f139dd-69"},"imported":[{"uid":"99f139dd-60"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-70":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js","moduleParts":{"index.js":"99f139dd-71"},"imported":[],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-72":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js","moduleParts":{"index.js":"99f139dd-73"},"imported":[{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-90"},{"uid":"99f139dd-124"}]},"99f139dd-74":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js","moduleParts":{"index.js":"99f139dd-75"},"imported":[{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-76":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/date.js","moduleParts":{"index.js":"99f139dd-77"},"imported":[{"uid":"99f139dd-60"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-78":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/default.js","moduleParts":{"index.js":"99f139dd-79"},"imported":[{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-80":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js","moduleParts":{"index.js":"99f139dd-81"},"imported":[{"uid":"99f139dd-126"},{"uid":"99f139dd-64"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-82":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js","moduleParts":{"index.js":"99f139dd-83"},"imported":[],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-84":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js","moduleParts":{"index.js":"99f139dd-85"},"imported":[{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-86":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js","moduleParts":{"index.js":"99f139dd-87"},"imported":[],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-88":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/string.js","moduleParts":{"index.js":"99f139dd-89"},"imported":[{"uid":"99f139dd-60"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-90"},{"uid":"99f139dd-124"}]},"99f139dd-90":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/record.js","moduleParts":{"index.js":"99f139dd-91"},"imported":[{"uid":"99f139dd-168"},{"uid":"99f139dd-126"},{"uid":"99f139dd-88"},{"uid":"99f139dd-72"},{"uid":"99f139dd-64"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-92"},{"uid":"99f139dd-124"}]},"99f139dd-92":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/map.js","moduleParts":{"index.js":"99f139dd-93"},"imported":[{"uid":"99f139dd-126"},{"uid":"99f139dd-90"},{"uid":"99f139dd-64"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-94":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js","moduleParts":{"index.js":"99f139dd-95"},"imported":[],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-96":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/never.js","moduleParts":{"index.js":"99f139dd-97"},"imported":[{"uid":"99f139dd-64"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-98":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/null.js","moduleParts":{"index.js":"99f139dd-99"},"imported":[],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-100":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/union.js","moduleParts":{"index.js":"99f139dd-101"},"imported":[{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-102"},{"uid":"99f139dd-124"}]},"99f139dd-102":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js","moduleParts":{"index.js":"99f139dd-103"},"imported":[{"uid":"99f139dd-126"},{"uid":"99f139dd-100"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-104":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/number.js","moduleParts":{"index.js":"99f139dd-105"},"imported":[{"uid":"99f139dd-60"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-106":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/object.js","moduleParts":{"index.js":"99f139dd-107"},"imported":[{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-108":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js","moduleParts":{"index.js":"99f139dd-109"},"imported":[{"uid":"99f139dd-126"},{"uid":"99f139dd-64"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-110":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js","moduleParts":{"index.js":"99f139dd-111"},"imported":[{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-112":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js","moduleParts":{"index.js":"99f139dd-113"},"imported":[{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-114":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/set.js","moduleParts":{"index.js":"99f139dd-115"},"imported":[{"uid":"99f139dd-60"},{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-116":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js","moduleParts":{"index.js":"99f139dd-117"},"imported":[{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-118":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js","moduleParts":{"index.js":"99f139dd-119"},"imported":[{"uid":"99f139dd-64"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-120":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js","moduleParts":{"index.js":"99f139dd-121"},"imported":[{"uid":"99f139dd-64"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-122":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js","moduleParts":{"index.js":"99f139dd-123"},"imported":[{"uid":"99f139dd-126"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-124"}]},"99f139dd-124":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/selectParser.js","moduleParts":{"index.js":"99f139dd-125"},"imported":[{"uid":"99f139dd-168"},{"uid":"99f139dd-64"},{"uid":"99f139dd-66"},{"uid":"99f139dd-68"},{"uid":"99f139dd-70"},{"uid":"99f139dd-72"},{"uid":"99f139dd-74"},{"uid":"99f139dd-76"},{"uid":"99f139dd-78"},{"uid":"99f139dd-80"},{"uid":"99f139dd-82"},{"uid":"99f139dd-84"},{"uid":"99f139dd-86"},{"uid":"99f139dd-92"},{"uid":"99f139dd-94"},{"uid":"99f139dd-96"},{"uid":"99f139dd-98"},{"uid":"99f139dd-102"},{"uid":"99f139dd-104"},{"uid":"99f139dd-106"},{"uid":"99f139dd-108"},{"uid":"99f139dd-110"},{"uid":"99f139dd-112"},{"uid":"99f139dd-90"},{"uid":"99f139dd-114"},{"uid":"99f139dd-88"},{"uid":"99f139dd-116"},{"uid":"99f139dd-118"},{"uid":"99f139dd-100"},{"uid":"99f139dd-120"},{"uid":"99f139dd-122"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-126"}]},"99f139dd-126":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parseDef.js","moduleParts":{"index.js":"99f139dd-127"},"imported":[{"uid":"99f139dd-56"},{"uid":"99f139dd-124"},{"uid":"99f139dd-62"},{"uid":"99f139dd-64"}],"importedBy":[{"uid":"99f139dd-170"},{"uid":"99f139dd-66"},{"uid":"99f139dd-72"},{"uid":"99f139dd-74"},{"uid":"99f139dd-78"},{"uid":"99f139dd-80"},{"uid":"99f139dd-84"},{"uid":"99f139dd-92"},{"uid":"99f139dd-102"},{"uid":"99f139dd-106"},{"uid":"99f139dd-108"},{"uid":"99f139dd-110"},{"uid":"99f139dd-112"},{"uid":"99f139dd-122"},{"uid":"99f139dd-90"},{"uid":"99f139dd-114"},{"uid":"99f139dd-116"},{"uid":"99f139dd-100"},{"uid":"99f139dd-128"}]},"99f139dd-128":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js","moduleParts":{"index.js":"99f139dd-129"},"imported":[{"uid":"99f139dd-126"},{"uid":"99f139dd-58"},{"uid":"99f139dd-64"}],"importedBy":[{"uid":"99f139dd-170"}]},"99f139dd-130":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js","moduleParts":{"index.js":"99f139dd-131"},"imported":[{"uid":"99f139dd-169"},{"uid":"99f139dd-42"},{"uid":"99f139dd-170"}],"importedBy":[{"uid":"99f139dd-148"},{"uid":"99f139dd-132"}]},"99f139dd-132":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js","moduleParts":{"index.js":"99f139dd-133"},"imported":[{"uid":"99f139dd-42"},{"uid":"99f139dd-52"},{"uid":"99f139dd-54"},{"uid":"99f139dd-130"}],"importedBy":[{"uid":"99f139dd-140"}]},"99f139dd-134":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js","moduleParts":{"index.js":"99f139dd-135"},"imported":[{"uid":"99f139dd-172"},{"uid":"99f139dd-173"}],"importedBy":[{"uid":"99f139dd-140"}]},"99f139dd-136":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js","moduleParts":{"index.js":"99f139dd-137"},"imported":[{"uid":"99f139dd-52"}],"importedBy":[{"uid":"99f139dd-140"}]},"99f139dd-138":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js","moduleParts":{"index.js":"99f139dd-139"},"imported":[],"importedBy":[{"uid":"99f139dd-140"}]},"99f139dd-140":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js","moduleParts":{"index.js":"99f139dd-141"},"imported":[{"uid":"99f139dd-132"},{"uid":"99f139dd-52"},{"uid":"99f139dd-134"},{"uid":"99f139dd-42"},{"uid":"99f139dd-136"},{"uid":"99f139dd-138"}],"importedBy":[{"uid":"99f139dd-148"}]},"99f139dd-142":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js","moduleParts":{"index.js":"99f139dd-143"},"imported":[],"importedBy":[{"uid":"99f139dd-148"}]},"99f139dd-144":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js","moduleParts":{"index.js":"99f139dd-145"},"imported":[],"importedBy":[{"uid":"99f139dd-148"}]},"99f139dd-146":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js","moduleParts":{"index.js":"99f139dd-147"},"imported":[],"importedBy":[{"uid":"99f139dd-148"}]},"99f139dd-148":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js","moduleParts":{"index.js":"99f139dd-149"},"imported":[{"uid":"99f139dd-140"},{"uid":"99f139dd-42"},{"uid":"99f139dd-130"},{"uid":"99f139dd-52"},{"uid":"99f139dd-142"},{"uid":"99f139dd-166"},{"uid":"99f139dd-144"},{"uid":"99f139dd-146"},{"uid":"99f139dd-163"}],"importedBy":[{"uid":"99f139dd-160"}]},"99f139dd-150":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js","moduleParts":{"index.js":"99f139dd-151"},"imported":[{"uid":"99f139dd-52"}],"importedBy":[{"uid":"99f139dd-152"}]},"99f139dd-152":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js","moduleParts":{"index.js":"99f139dd-153"},"imported":[{"uid":"99f139dd-167"},{"uid":"99f139dd-150"}],"importedBy":[{"uid":"99f139dd-160"}]},"99f139dd-154":{"id":"/package.json","moduleParts":{"index.js":"99f139dd-155"},"imported":[],"importedBy":[{"uid":"99f139dd-160"}]},"99f139dd-156":{"id":"/src/api-reference.ts","moduleParts":{"index.js":"99f139dd-157"},"imported":[],"importedBy":[{"uid":"99f139dd-160"}]},"99f139dd-158":{"id":"/src/project-scanner.ts","moduleParts":{"index.js":"99f139dd-159"},"imported":[{"uid":"99f139dd-162"}],"importedBy":[{"uid":"99f139dd-160"}]},"99f139dd-160":{"id":"/src/index.ts","moduleParts":{"index.js":"99f139dd-161"},"imported":[{"uid":"99f139dd-148"},{"uid":"99f139dd-152"},{"uid":"99f139dd-162"},{"uid":"99f139dd-163"},{"uid":"99f139dd-154"},{"uid":"99f139dd-156"},{"uid":"99f139dd-158"},{"uid":"99f139dd-164","dynamic":true},{"uid":"99f139dd-165","dynamic":true}],"importedBy":[],"isEntry":true},"99f139dd-162":{"id":"@pyreon/compiler","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-160"},{"uid":"99f139dd-158"}]},"99f139dd-163":{"id":"zod","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-160"},{"uid":"99f139dd-148"}]},"99f139dd-164":{"id":"node:fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-160"}]},"99f139dd-165":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-160"}]},"99f139dd-166":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/@modelcontextprotocol+sdk@1.29.0/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-148"}]},"99f139dd-167":{"id":"node:process","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-152"}]},"99f139dd-168":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v3/index.js","moduleParts":{},"imported":[{"uid":"99f139dd-174"}],"importedBy":[{"uid":"99f139dd-42"},{"uid":"99f139dd-66"},{"uid":"99f139dd-90"},{"uid":"99f139dd-124"}]},"99f139dd-169":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4-mini/index.js","moduleParts":{},"imported":[{"uid":"99f139dd-175"}],"importedBy":[{"uid":"99f139dd-42"},{"uid":"99f139dd-130"}]},"99f139dd-170":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/index.js","moduleParts":{},"imported":[{"uid":"99f139dd-56"},{"uid":"99f139dd-58"},{"uid":"99f139dd-60"},{"uid":"99f139dd-62"},{"uid":"99f139dd-126"},{"uid":"99f139dd-176"},{"uid":"99f139dd-64"},{"uid":"99f139dd-66"},{"uid":"99f139dd-68"},{"uid":"99f139dd-70"},{"uid":"99f139dd-72"},{"uid":"99f139dd-74"},{"uid":"99f139dd-76"},{"uid":"99f139dd-78"},{"uid":"99f139dd-80"},{"uid":"99f139dd-82"},{"uid":"99f139dd-84"},{"uid":"99f139dd-86"},{"uid":"99f139dd-92"},{"uid":"99f139dd-94"},{"uid":"99f139dd-96"},{"uid":"99f139dd-98"},{"uid":"99f139dd-102"},{"uid":"99f139dd-104"},{"uid":"99f139dd-106"},{"uid":"99f139dd-108"},{"uid":"99f139dd-110"},{"uid":"99f139dd-112"},{"uid":"99f139dd-122"},{"uid":"99f139dd-90"},{"uid":"99f139dd-114"},{"uid":"99f139dd-88"},{"uid":"99f139dd-116"},{"uid":"99f139dd-118"},{"uid":"99f139dd-100"},{"uid":"99f139dd-120"},{"uid":"99f139dd-124"},{"uid":"99f139dd-128"}],"importedBy":[{"uid":"99f139dd-130"}]},"99f139dd-171":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/index.js","moduleParts":{},"imported":[{"uid":"99f139dd-177"}],"importedBy":[{"uid":"99f139dd-52"}]},"99f139dd-172":{"id":"ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-134"}]},"99f139dd-173":{"id":"ajv-formats","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-134"}]},"99f139dd-174":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v3/external.js","moduleParts":{},"imported":[{"uid":"99f139dd-6"},{"uid":"99f139dd-8"},{"uid":"99f139dd-178"},{"uid":"99f139dd-0"},{"uid":"99f139dd-12"},{"uid":"99f139dd-2"}],"importedBy":[{"uid":"99f139dd-168"}]},"99f139dd-175":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/mini/external.js","moduleParts":{},"imported":[{"uid":"99f139dd-179"},{"uid":"99f139dd-180"},{"uid":"99f139dd-40"},{"uid":"99f139dd-181"},{"uid":"99f139dd-38"},{"uid":"99f139dd-182"},{"uid":"99f139dd-183"},{"uid":"99f139dd-184"}],"importedBy":[{"uid":"99f139dd-169"}]},"99f139dd-176":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod-to-json-schema@3.25.1+3c5d820c62823f0b/node_modules/zod-to-json-schema/dist/esm/parseTypes.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-170"}]},"99f139dd-177":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/classic/index.js","moduleParts":{},"imported":[{"uid":"99f139dd-185"}],"importedBy":[{"uid":"99f139dd-171"}]},"99f139dd-178":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v3/helpers/typeAliases.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-174"}]},"99f139dd-179":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/index.js","moduleParts":{},"imported":[{"uid":"99f139dd-14"},{"uid":"99f139dd-20"},{"uid":"99f139dd-18"},{"uid":"99f139dd-30"},{"uid":"99f139dd-24"},{"uid":"99f139dd-28"},{"uid":"99f139dd-16"},{"uid":"99f139dd-22"},{"uid":"99f139dd-182"},{"uid":"99f139dd-32"},{"uid":"99f139dd-26"},{"uid":"99f139dd-34"},{"uid":"99f139dd-36"},{"uid":"99f139dd-38"},{"uid":"99f139dd-186"},{"uid":"99f139dd-187"}],"importedBy":[{"uid":"99f139dd-175"},{"uid":"99f139dd-180"},{"uid":"99f139dd-40"},{"uid":"99f139dd-181"},{"uid":"99f139dd-183"},{"uid":"99f139dd-184"},{"uid":"99f139dd-185"},{"uid":"99f139dd-50"},{"uid":"99f139dd-237"},{"uid":"99f139dd-46"},{"uid":"99f139dd-48"},{"uid":"99f139dd-238"},{"uid":"99f139dd-44"},{"uid":"99f139dd-240"}]},"99f139dd-180":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/mini/parse.js","moduleParts":{},"imported":[{"uid":"99f139dd-179"}],"importedBy":[{"uid":"99f139dd-175"},{"uid":"99f139dd-40"}]},"99f139dd-181":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/mini/checks.js","moduleParts":{},"imported":[{"uid":"99f139dd-179"}],"importedBy":[{"uid":"99f139dd-175"}]},"99f139dd-182":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/index.js","moduleParts":{},"imported":[{"uid":"99f139dd-188"},{"uid":"99f139dd-189"},{"uid":"99f139dd-190"},{"uid":"99f139dd-191"},{"uid":"99f139dd-192"},{"uid":"99f139dd-193"},{"uid":"99f139dd-194"},{"uid":"99f139dd-195"},{"uid":"99f139dd-196"},{"uid":"99f139dd-197"},{"uid":"99f139dd-198"},{"uid":"99f139dd-199"},{"uid":"99f139dd-200"},{"uid":"99f139dd-201"},{"uid":"99f139dd-202"},{"uid":"99f139dd-203"},{"uid":"99f139dd-204"},{"uid":"99f139dd-205"},{"uid":"99f139dd-206"},{"uid":"99f139dd-207"},{"uid":"99f139dd-208"},{"uid":"99f139dd-209"},{"uid":"99f139dd-210"},{"uid":"99f139dd-211"},{"uid":"99f139dd-212"},{"uid":"99f139dd-213"},{"uid":"99f139dd-214"},{"uid":"99f139dd-215"},{"uid":"99f139dd-216"},{"uid":"99f139dd-217"},{"uid":"99f139dd-218"},{"uid":"99f139dd-219"},{"uid":"99f139dd-220"},{"uid":"99f139dd-221"},{"uid":"99f139dd-222"},{"uid":"99f139dd-223"},{"uid":"99f139dd-224"},{"uid":"99f139dd-225"},{"uid":"99f139dd-226"},{"uid":"99f139dd-227"},{"uid":"99f139dd-228"},{"uid":"99f139dd-229"},{"uid":"99f139dd-230"},{"uid":"99f139dd-231"},{"uid":"99f139dd-232"},{"uid":"99f139dd-233"},{"uid":"99f139dd-234"},{"uid":"99f139dd-235"},{"uid":"99f139dd-236"}],"importedBy":[{"uid":"99f139dd-175"},{"uid":"99f139dd-179"},{"uid":"99f139dd-185"}]},"99f139dd-183":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/mini/iso.js","moduleParts":{},"imported":[{"uid":"99f139dd-179"},{"uid":"99f139dd-40"}],"importedBy":[{"uid":"99f139dd-175"}]},"99f139dd-184":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/mini/coerce.js","moduleParts":{},"imported":[{"uid":"99f139dd-179"},{"uid":"99f139dd-40"}],"importedBy":[{"uid":"99f139dd-175"}]},"99f139dd-185":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/classic/external.js","moduleParts":{},"imported":[{"uid":"99f139dd-179"},{"uid":"99f139dd-50"},{"uid":"99f139dd-237"},{"uid":"99f139dd-46"},{"uid":"99f139dd-48"},{"uid":"99f139dd-238"},{"uid":"99f139dd-196"},{"uid":"99f139dd-38"},{"uid":"99f139dd-239"},{"uid":"99f139dd-182"},{"uid":"99f139dd-44"},{"uid":"99f139dd-240"}],"importedBy":[{"uid":"99f139dd-177"}]},"99f139dd-186":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/json-schema-generator.js","moduleParts":{},"imported":[{"uid":"99f139dd-38"},{"uid":"99f139dd-36"}],"importedBy":[{"uid":"99f139dd-179"}]},"99f139dd-187":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/json-schema.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"99f139dd-179"}]},"99f139dd-188":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ar.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-189":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/az.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-190":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/be.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-191":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/bg.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-192":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ca.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-193":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/cs.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-194":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/da.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-195":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/de.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-196":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/en.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"},{"uid":"99f139dd-185"}]},"99f139dd-197":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/eo.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-198":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/es.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-199":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/fa.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-200":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/fi.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-201":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/fr.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-202":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/fr-CA.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-203":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/he.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-204":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/hu.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-205":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/hy.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-206":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/id.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-207":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/is.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-208":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/it.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-209":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ja.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-210":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ka.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-211":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/kh.js","moduleParts":{},"imported":[{"uid":"99f139dd-212"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-212":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/km.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"},{"uid":"99f139dd-211"}]},"99f139dd-213":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ko.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-214":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/lt.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-215":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/mk.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-216":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ms.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-217":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/nl.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-218":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/no.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-219":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ota.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-220":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ps.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-221":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/pl.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-222":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/pt.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-223":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ru.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-224":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/sl.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-225":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/sv.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-226":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ta.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-227":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/th.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-228":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/tr.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-229":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ua.js","moduleParts":{},"imported":[{"uid":"99f139dd-230"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-230":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/uk.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"},{"uid":"99f139dd-229"}]},"99f139dd-231":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/ur.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-232":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/uz.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-233":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/vi.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-234":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/zh-CN.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-235":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/zh-TW.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-236":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/locales/yo.js","moduleParts":{},"imported":[{"uid":"99f139dd-16"}],"importedBy":[{"uid":"99f139dd-182"}]},"99f139dd-237":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/classic/checks.js","moduleParts":{},"imported":[{"uid":"99f139dd-179"}],"importedBy":[{"uid":"99f139dd-185"},{"uid":"99f139dd-50"},{"uid":"99f139dd-239"}]},"99f139dd-238":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/classic/compat.js","moduleParts":{},"imported":[{"uid":"99f139dd-179"}],"importedBy":[{"uid":"99f139dd-185"}]},"99f139dd-239":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/classic/from-json-schema.js","moduleParts":{},"imported":[{"uid":"99f139dd-32"},{"uid":"99f139dd-237"},{"uid":"99f139dd-44"},{"uid":"99f139dd-50"}],"importedBy":[{"uid":"99f139dd-185"}]},"99f139dd-240":{"id":"/home/runner/work/pyreon/pyreon/node_modules/.bun/zod@4.3.6/node_modules/zod/v4/classic/coerce.js","moduleParts":{},"imported":[{"uid":"99f139dd-179"},{"uid":"99f139dd-50"}],"importedBy":[{"uid":"99f139dd-185"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
5389
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"uid":"c0288231-1","name":"package.json"},{"name":"src","children":[{"uid":"c0288231-3","name":"anti-patterns.ts"},{"uid":"c0288231-5","name":"api-reference.ts"},{"uid":"c0288231-7","name":"changelog.ts"},{"uid":"c0288231-9","name":"patterns.ts"},{"uid":"c0288231-11","name":"project-scanner.ts"},{"uid":"c0288231-13","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"c0288231-1":{"renderedLength":60,"gzipLength":74,"brotliLength":0,"metaUid":"c0288231-0"},"c0288231-3":{"renderedLength":4360,"gzipLength":1563,"brotliLength":0,"metaUid":"c0288231-2"},"c0288231-5":{"renderedLength":196043,"gzipLength":63295,"brotliLength":0,"metaUid":"c0288231-4"},"c0288231-7":{"renderedLength":10161,"gzipLength":3760,"brotliLength":0,"metaUid":"c0288231-6"},"c0288231-9":{"renderedLength":5635,"gzipLength":2366,"brotliLength":0,"metaUid":"c0288231-8"},"c0288231-11":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"c0288231-10"},"c0288231-13":{"renderedLength":13965,"gzipLength":4755,"brotliLength":0,"metaUid":"c0288231-12"}},"nodeMetas":{"c0288231-0":{"id":"/package.json","moduleParts":{"index.js":"c0288231-1"},"imported":[],"importedBy":[{"uid":"c0288231-12"}]},"c0288231-2":{"id":"/src/anti-patterns.ts","moduleParts":{"index.js":"c0288231-3"},"imported":[],"importedBy":[{"uid":"c0288231-12"}]},"c0288231-4":{"id":"/src/api-reference.ts","moduleParts":{"index.js":"c0288231-5"},"imported":[],"importedBy":[{"uid":"c0288231-12"}]},"c0288231-6":{"id":"/src/changelog.ts","moduleParts":{"index.js":"c0288231-7"},"imported":[{"uid":"c0288231-17"},{"uid":"c0288231-18"}],"importedBy":[{"uid":"c0288231-12"}]},"c0288231-8":{"id":"/src/patterns.ts","moduleParts":{"index.js":"c0288231-9"},"imported":[{"uid":"c0288231-17"},{"uid":"c0288231-18"}],"importedBy":[{"uid":"c0288231-12"}]},"c0288231-10":{"id":"/src/project-scanner.ts","moduleParts":{"index.js":"c0288231-11"},"imported":[{"uid":"c0288231-16"}],"importedBy":[{"uid":"c0288231-12"}]},"c0288231-12":{"id":"/src/index.ts","moduleParts":{"index.js":"c0288231-13"},"imported":[{"uid":"c0288231-14"},{"uid":"c0288231-15"},{"uid":"c0288231-16"},{"uid":"c0288231-17"},{"uid":"c0288231-18"},{"uid":"c0288231-19"},{"uid":"c0288231-0"},{"uid":"c0288231-2"},{"uid":"c0288231-4"},{"uid":"c0288231-6"},{"uid":"c0288231-8"},{"uid":"c0288231-10"},{"uid":"c0288231-17","dynamic":true},{"uid":"c0288231-18","dynamic":true}],"importedBy":[],"isEntry":true},"c0288231-14":{"id":"@modelcontextprotocol/sdk/server/mcp.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"c0288231-12"}]},"c0288231-15":{"id":"@modelcontextprotocol/sdk/server/stdio.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"c0288231-12"}]},"c0288231-16":{"id":"@pyreon/compiler","moduleParts":{},"imported":[],"importedBy":[{"uid":"c0288231-12"},{"uid":"c0288231-10"}]},"c0288231-17":{"id":"node:fs","moduleParts":{},"imported":[],"importedBy":[{"uid":"c0288231-12"},{"uid":"c0288231-6"},{"uid":"c0288231-8"}]},"c0288231-18":{"id":"node:path","moduleParts":{},"imported":[],"importedBy":[{"uid":"c0288231-12"},{"uid":"c0288231-6"},{"uid":"c0288231-8"}]},"c0288231-19":{"id":"zod","moduleParts":{},"imported":[],"importedBy":[{"uid":"c0288231-12"}]}},"env":{"rollup":"4.23.0"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
5390
5390
 
5391
5391
  const run = () => {
5392
5392
  const width = window.innerWidth;