feat: add registry tools for new preview flow

This commit is contained in:
2026-09-04 19:09:47 +05:00
parent 520a1e1d37
commit 1e9b35406d
11 changed files with 450 additions and 29 deletions
+8
View File
@@ -1,12 +1,20 @@
import type { ToolEntry } from "./types";
import { geometryEntries } from "./geometry";
import { alphaEntries } from "./alpha";
import { convertEntries } from "./convert";
import { analyzeEntries } from "./analyze";
import { filtersEntries } from "./filters";
import { colorEntries } from "./color";
export type { ToolEntry } from "./types";
export const TOOLS: ToolEntry[] = [
...geometryEntries,
...alphaEntries,
...convertEntries,
...analyzeEntries,
...filtersEntries,
...colorEntries,
] as unknown as ToolEntry[];
export function getTool(id: string): ToolEntry | undefined {