Replace Vercel AI SDK with Anthropic Claude Agent SDK. Add standalone agent server (packages/agent-server/) with MCP tools, JWT auth, and SSE streaming. Introduce bridge API routes (src/app/api/compass/) and custom SSE hooks (use-agent, use-compass-chat) replacing useChat. Remove provider.ts, tools.ts, system-prompt.ts, github-tools.ts, usage.ts, and old agent route.
54 lines
616 B
Plaintext
Executable File
54 lines
616 B
Plaintext
Executable File
# dependencies
|
|
node_modules/
|
|
|
|
# next.js
|
|
.next/
|
|
out/
|
|
.open-next/
|
|
|
|
# cloudflare
|
|
.wrangler/
|
|
.dev.vars
|
|
|
|
# env
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
credentials/
|
|
|
|
# build
|
|
dist/
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.tsbuildinfo
|
|
*.png
|
|
|
|
# dev tools
|
|
.playwright-mcp
|
|
mobile-ui-references/
|
|
.fuse_*
|
|
|
|
# directories
|
|
tmp/
|
|
references/
|
|
conversations-interface-references/
|
|
|
|
# capacitor native builds
|
|
ios/App/Pods/
|
|
ios/App/build/
|
|
android/.gradle/
|
|
android/build/
|
|
android/app/build/
|
|
|
|
# Local auth bypass (dev only)
|
|
src/lib/auth-bypass.ts
|
|
src/lib/cloudflare-context.ts
|
|
src/lib/db.ts
|
|
scripts/init-local-db.ts
|
|
|
|
# local dev database
|
|
local.db
|
|
local.db-wal
|
|
local.db-shm
|