Files
hyperframes/packages/cli/src/commands/inspect.ts
T
Miguel Ángel b947966a8b feat(cli): add visual inspect command (#480)
* feat: add layout audit command

* feat: refine visual inspect command
2026-04-25 02:07:47 +02:00

13 lines
551 B
TypeScript

import type { Example } from "./_examples.js";
import { createInspectCommand } from "./layout.js";
export const examples: Example[] = [
["Inspect visual layout across the current composition", "hyperframes inspect"],
["Inspect a specific project", "hyperframes inspect ./my-video"],
["Output agent-readable JSON", "hyperframes inspect --json"],
["Use explicit hero-frame timestamps", "hyperframes inspect --at 1.5,4.0,7.25"],
["Run the compatibility alias", "hyperframes layout --json"],
];
export default createInspectCommand("inspect");