Add abstract tool rendering infrastructure to @tpmjs/ui: - ToolRenderer component with registry-based renderer lookup - DefaultJsonRenderer as fallback with collapsible JSON display - RegistrySearchRenderer for registrySearchTool results - RegistryExecuteRenderer for registryExecuteTool results - registerBuiltInRenderers() for idempotent initialization Update Omega chat page to use new ToolRenderer: - Replace inline ToolCallCard with ToolRenderer component - Add helper functions to convert between ToolCall and ToolPart - Remove unused expandedToolCalls state (managed internally) Also add video file extensions to .gitignore
71 lines
733 B
Text
71 lines
733 B
Text
# dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
coverage
|
|
.nyc_output
|
|
|
|
# next.js
|
|
.next/
|
|
out/
|
|
build
|
|
dist
|
|
|
|
# misc
|
|
.DS_Store
|
|
|
|
# video files
|
|
*.mp4
|
|
*.webm
|
|
*.mov
|
|
*.avi
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# environment files - NEVER commit secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.env.local
|
|
.env.development
|
|
.env.development.local
|
|
.env.test
|
|
.env.test.local
|
|
.env.production
|
|
.env.production.local
|
|
.env.staging
|
|
.env.vercel*
|
|
|
|
# secret files
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
credentials.json
|
|
secrets.json
|
|
*_secret*
|
|
*_credentials*
|
|
|
|
# turbo
|
|
.turbo
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
|
|
# ide
|
|
.idea
|
|
|
|
# storybook
|
|
storybook-static
|
|
|
|
# changesets
|
|
.changeset/*.md
|
|
!.changeset/README.md
|
|
.vercel
|
|
packages/tool-ideas/data/tools-export.json
|