feat(cli): add visual inspect command (#480)

* feat: add layout audit command

* feat: refine visual inspect command
This commit is contained in:
Miguel Ángel
2026-04-25 02:07:47 +02:00
committed by GitHub
parent c427619cff
commit b947966a8b
12 changed files with 1583 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
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");