/** * Code Order — native spectral extension. * * Registers a single tool, `code_order_report`, that scans the current * project's directory tree and returns a Markdown cleanup report: oversized * files, deep nesting, empty folders/files, duplicate sibling names and * single-child folders. Language-agnostic, read-only, zero configuration. * * The report is input for the agent — it deduces what to split or flatten * outside of this extension. Tree-like structure is enforced separately via * the system prompt guidelines (see system-prompt.ts). */ import type { ExtensionAPI } from "../../sdk/coding-agent/index.js"; export default function codeOrderExtension(ext: ExtensionAPI): Promise; //# sourceMappingURL=index.d.ts.map