Skip to content
Merged
Changes from all commits
Commits
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
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ python main.py repos ls
## Project Structure
```
src
├── app # CLI (Textual, Click, etc.)
├── app # CLI (Click)
Copy link

Copilot AI Jul 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The comment should clarify what Click is for readers unfamiliar with the framework. Consider: '# CLI framework (Click)'

Suggested change
├── app # CLI (Click)
├── app # CLI framework (Click)

Copilot uses AI. Check for mistakes.
│ ├── repos
│ │ ├── repo.py # CLI subcommands & DuckDB client
│ │ ├── repos.py
Expand All @@ -48,15 +48,14 @@ src
│ ├── embeddings
│ ├── config.py
│ ├── container.py
├── core # Business logic
│ ├── repos
│ │ ├── add_repo_operation.py
│ │ ├── errors.py
├── data # Pure queries/statements
├── core # Business logic (operations & queries)
Copy link

Copilot AI Jul 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The parenthetical explanation '(operations & queries)' is redundant since the subdirectories below already show 'operations/' and 'queries/' folders. Consider simplifying to just '# Business logic'

Suggested change
├── core # Business logic (operations & queries)
├── core # Business logic

Copilot uses AI. Check for mistakes.
│ ├── commits
│ │ ├── operations/
│ │ ├── queries/
│ ├── repos
│ │ ├── queries.py
│ │ ├── statements.py
│ │ ├── operations/
│ │ ├── queries/
│ │ ├── errors.py
├── entities # Inner-level entities/models
│ ├── base.py
│ ├── commits.py
Expand All @@ -82,8 +81,5 @@ MIT
## Acknowledgements
- [DuckDB](https://duckdb.org/)
- [ChromaDB](https://www.trychroma.com/)
- [Textual](https://textual.textualize.io/)

---

*OrangeJuice: Squeeze the most out of your git.*