Add multi-vector preference entity (per-signal-type preference vectors with event-time decay) feeding ANN candidate generation in the query executor. - entities: multi_preference vectors + event-time-aware preference updates - query/executor: ANN candidate-gen + personalization/pipeline integration - storage/keys, db ops, state_rebuild: persist & rebuild multi-vector prefs - ranking: profile + builtins support for multi-vector scoring - tidal-server/config: expose multi-preference knobs - tests/bench: m12_preference_event_time integration + multi_preference bench - docs: multi-vector-preference research, ROADMAP/ARCHITECTURE refresh, legal/tidaldb-patent-proposal - .codex/agents: codex agent definitions - chore: gitignore tool-regenerated .agents/ mirror (doc-guard rejects it)
42 lines
510 B
Plaintext
42 lines
510 B
Plaintext
# Rust build artifacts
|
|
target/
|
|
*.prof
|
|
*.profraw
|
|
|
|
# Next.js build artifacts
|
|
.next/
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Secrets (never commit)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
credentials.json
|
|
service-account*.json
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# IDE / OS
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Stale doc mirror — tool-regenerated; doc-guard rejects .agents/skills/ (docs live only at repo root + docs/)
|
|
.agents/
|
|
|
|
# Ephemeral / scratch
|
|
tmp/
|
|
.claude/worktrees/
|
|
.sdlc/tools/*/index/
|
|
.sdlc/telemetry.redb
|