You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(data-inspector): example source inspects the environment, opt-out only
The built-in example source is now always registered unless explicitly
opted out (option exampleSource: false; CLI --no-example; agent env
DEVFRAME_DATA_INSPECTOR_EXAMPLE=0) — the agent and file-serving CLI no
longer suppress it automatically. Beyond the playground branch it now
answers real questions: the devframe context (registered RPC functions,
services, storage dirs), OS info, and live process stats via query-time
getters, with matching suggested queries.
-**Filters** — exclude functions, `_`-prefixed, or `$`-prefixed properties from results and skeleton alike.
17
17
-**Saved queries** — recipes (`query` + optional title/description + the filters they were authored with), id-keyed, in two scopes: **workspace** (committable, shared with the team) and **project** (per-checkout).
18
18
19
-
A built-in example source demonstrates all of it on first run; disable it with `createDataInspectorDevframe({ exampleSource: false })`once your own sources are registered.
19
+
A built-in **example source** is always registered alongside your own: it exposes the devframe context (registered RPC functions, services, storage dirs), OS info, and live process stats — with query-time getters that change on every re-run — plus a small playground branch exercising every viewer capability. Opt out with `createDataInspectorDevframe({ exampleSource: false })`(CLI: `--no-example`, agent: `DEVFRAME_DATA_INSPECTOR_EXAMPLE=0`).
0 commit comments