Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c2b78b6
chore: merge release v0.0.4 to develop
Kewton Mar 21, 2026
cfcb901
feat(cli): searchスニペット表示行数・文字数のCLIオプション追加 (#44) (#67)
Kewton Mar 21, 2026
1fb7dc4
feat(embedding): Embedding生成基盤追加 (#61) (#68)
Kewton Mar 21, 2026
21783d8
feat(indexer): Embeddingストレージ追加 (#62) (#69)
Kewton Mar 21, 2026
12bc8bf
feat: Semantic Search実装 (#63) (#70)
Kewton Mar 21, 2026
523b4d6
feat: Hybrid Retrieval実装 (#64) (#71)
Kewton Mar 21, 2026
e848f05
feat: Reranking実装 (#65) (#72)
Kewton Mar 21, 2026
42892dc
test: Phase 5 E2E統合テスト (#66) (#73)
Kewton Mar 21, 2026
3324823
style: cargo fmtによるフォーマット修正
Kewton Mar 21, 2026
f0d7400
chore: Phase 4/5 UAT結果・オーケストレーション記録追加
Kewton Mar 22, 2026
949563b
chore: merge release v0.0.5 to develop
Kewton Mar 22, 2026
4f830b8
chore: merge release v0.0.5 fix to develop
Kewton Mar 22, 2026
224fd88
feat: チーム共有設定ファイル実装 (#76) (#81)
Kewton Mar 22, 2026
772302b
feat(cli): statusコマンド拡張(--detail/--coverage/--format json) (#79) (#82)
Kewton Mar 22, 2026
a27e7d8
feat: インデックス共有モード実装 (#77) (#83)
Kewton Mar 22, 2026
69a4eef
feat: マルチリポジトリ横断検索実装 (#78) (#84)
Kewton Mar 22, 2026
8f77a0a
test: Phase 6 E2E統合テスト (#80) (#85)
Kewton Mar 22, 2026
aec220c
style: cargo fmtによるフォーマット修正
Kewton Mar 22, 2026
52a6aa0
chore: Phase 6 UAT結果・オーケストレーション記録追加
Kewton Mar 22, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ tree-sitter-python = "0.25"
rusqlite = { version = "0.31", features = ["bundled"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
toml = "0.8"
dirs = "6"
tar = "0.4"
flate2 = "1"

[dev-dependencies]
tempfile = "3"
Expand Down
Loading
Loading