- feat(review): add skill_reviews table, review API endpoints (pending/submit/stats), admin auth - perf: parallel file fetching in skill-files API (was sequential → timeout) - fix: handle Date serialization from Redis cache - fix: align curation batch scripts with current browseReadyFilter Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
57 lines
744 B
Plaintext
57 lines
744 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnpm-store
|
|
# scripts/ uses npm separately, we use pnpm
|
|
scripts/package-lock.json
|
|
|
|
# Build outputs
|
|
dist
|
|
.next
|
|
.turbo
|
|
*.tsbuildinfo
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# Testing
|
|
coverage
|
|
|
|
# Tauri
|
|
apps/desktop/src-tauri/target
|
|
|
|
# Database
|
|
*.sqlite
|
|
*.db
|
|
drizzle/*.sql
|
|
*.dump
|
|
data/backups/
|
|
|
|
# Curation session data (review batches/results contain raw_content)
|
|
scripts/curation/data/*
|
|
!scripts/curation/data/.gitkeep
|
|
|
|
# Claude Code
|
|
.claude/skills/
|
|
.claude/settings.local.json
|
|
# Keep agents and council_reasoning.md in version control:
|
|
# !.claude/agents/
|
|
# !.claude/council_reasoning.md
|
|
.claude/settings.json
|