/** * graphTool — graph as a Tool plugin. * * Since release 2.11.0 (Phase 5 — the largest migration) the Commander wiring is * no longer hand-rolled: the tool exports declarative {@link CommandSpec}s * (`commandSpecs`) and the host's `mountCommandSpec` mounts them * (name/description/aliases, the ADR-0021 common flags, each command's * options/args) and owns the parse→handler→error→exit pipeline. This file owns * only the command-spec assembly + the per-run scope/dashboard contributions; the * spec modules under `cli/graph/` own the option declarations and handler bodies. * * Per spec §10A AC-2 / AC-1: this module does NOT import from opensip-tools. It * receives the ToolCliContext interface from @opensip-tools/core. * * History: v0.2 originally registered three subcommands (`graph`, * `graph-orphans`, `graph-entry-points`). The orphans and entry-points * subcommands were folded into the unified `graph` output — all three data slices * (rules, entry points, catalog summary) are reachable via the single `graph` * invocation. */ import './scope-augmentation.js'; import type { Tool } from '@opensip-tools/core'; export declare const graphTool: Tool; //# sourceMappingURL=tool.d.ts.map