â ď¸ Local Conceptual Explorer: This tool is an offline simulation running over safe static fixtures. It does not open WebSockets, call any backend, or access your local file system.
Readable Source Code
Processed Output
Output Format: Compacted (Minified)Fixture View: Compacted example
// @ctx .context/core/parser.ctx import{parse}from'../vendor/acorn.mjs';import{walk}from'../vendor/walk.mjs';export async function parseFile(f,p){const a=parse(f,{ecmaVersion:'latest',sourceType:'module'});const r=[];walk(a,{FunctionDeclaration(n){r.push(n.id.name);}});return{path:p,results:r};}
What's happening?
Compact Mode strips indentation, JSDoc comments, block/line comments, and collapses multi-line imports in this deterministic example.
The Skeleton Map produces a minified JSON AST layout of classes, methods, and call dependencies, enabling high-level navigation.
Expand/Restore reconstructs the human-readable formatting using metadata definitions, making edits seamless.