- Change search-registry to use /api/tools instead of /api/tools/search (not deployed yet) - Add client-side filtering for search queries since deployed API doesn't support search - Handle both deployed (/api/tools) and local dev (/api/tools/search) response formats - Remove lint from pre-commit hooks to speed up commits (keep format + type-check) - Fixes 404 errors when playground tries to search tools in production 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
319 B
YAML
15 lines
319 B
YAML
pre-commit:
|
|
parallel: true
|
|
commands:
|
|
format:
|
|
glob: "*.{ts,tsx,js,jsx,json,md}"
|
|
run: pnpm biome check --write --no-errors-on-unmatched --files-ignore-unknown=true {staged_files}
|
|
stage_fixed: true
|
|
|
|
type-check:
|
|
run: pnpm type-check
|
|
|
|
pre-push:
|
|
commands:
|
|
test:
|
|
run: pnpm test
|