Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions scripts/check-file-sizes.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ const EXCEPTIONS = {
justification:
"Temporary allowance while project creation and home/chat handoff wiring remain in the shell.",
},
"src/features/chat/ui/ChatView.tsx": {
limit: 650,
justification:
"Model picker bootstrap, provider/model switching, and notification logic. Candidate for extraction once model picker stabilizes.",
},
"src-tauri/src/commands/acp.rs": {
limit: 700,
justification:
"ACP command handlers including model state discovery and set_model. run_acp_get_model_state and run_acp_set_model are extraction candidates.",
},
};

// Directories excluded from size checks (imported library code)
Expand Down
1 change: 1 addition & 0 deletions src-tauri/Cargo.lock

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

1 change: 1 addition & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ futures = "0.3"
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["rt"] }
async-trait = "0.1"
agent-client-protocol = { version = "0.10", features = ["unstable"] }
acp-client = { git = "https://github.com/block/builderbot", rev = "dbd5bc9c0cd559c7a67ab2d56545dba110f4a4cb" }
doctor = { git = "https://github.com/block/builderbot", rev = "bfce29264181236a2e5b4fd903ace6291f6a7594" }

Expand Down
Loading
Loading