Registry
Path:
codemode-gateway/src/types/registry.tsRelative: src/types/registry.tsSubproject: codemode-gatewayCategory: codemode-gatewayLines: 99Bytes: 3,131Imports: 1Exports: 7
Content Preview
- import type { Env } from "./env";
- /**
- * Tool registry types. The registry (`src/registry.ts`) is the single source
- * of truth from which BOTH the executor's `ResolvedProvider[]` and the
- * `codemode` discovery tools (`search`/`describe`) are derived — never two
- * lists to keep in sync.
- */
- /** JSON-schema-ish value type descriptor used by `codemode.describe`. */
- export type ToolParamType =
- | "string"
- | "number"
- | "integer"
- | "boolean"
- | "array"
- | "object"
- | "null";
- /** A sing