- Add MCP Server Integration section with Claude Desktop, Cursor, VS Code config examples - Add REST API Reference documenting /api/tools, /api/tools/search, /api/tools/execute endpoints - Add "Building an Agent Like Omega" section with complete implementation examples - Include SSE streaming patterns for real-time tool execution UI - Update .gitignore to exclude .env*.local files
75 lines
774 B
Text
75 lines
774 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
|
|
|
|
# ai sdk devtools
|
|
.devtools
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
|
|
# ide
|
|
.idea
|
|
|
|
# storybook
|
|
storybook-static
|
|
|
|
# changesets
|
|
.changeset/*.md
|
|
!.changeset/README.md
|
|
.vercel
|
|
packages/tool-ideas/data/tools-export.json
|
|
.env*.local
|