本ドキュメントは、TelosDB エンジンのビルド、拡張、および内部構造に関する技術的なガイドラインを提供します。
src/frontend/: React/Vite ベースの UI コンポーネント。src/backend/: Rust/Tauri ベースのコアエンジンおよび MCP サーバー。docs/specification/: システム仕様書(DB、API、UIデザイン等)。.agent/rules/: AI エージェント用プロジェクト運用ルール。sqlite-vec を利用したベクトル検索および LSA による次元圧縮を実装しています。mcp.rs にて外部ツール(Claude 等)向けのインターフェースを定義しています。lsa.rs にて SVD を用いたベクトルの次元圧縮を行い、検索の高速化と精度向上を実現しています。invoke および listen を用いてバックエンドと非同期通信を行います。This document provides technical guidelines for building, extending, and understanding the internal structure of the TelosDB engine.
src/frontend/: React/Vite-based UI components.src/backend/: Rust/Tauri-based core engine and MCP server.docs/specification/: System specifications (DB, API, UI design, etc.)..agent/rules/: Project operational rules for AI agents.sqlite-vec and dimensionality reduction via LSA (Latent Semantic Analysis).mcp.rs.lsa.rs to improve search speed and accuracy.invoke and listen for asynchronous communication with the backend.