tidy: group CLI modules into llm/github/ast + refresh README - #14
Merged
Merged
Conversation
Reorganize the aatxe CLI crate's flat src/ — 11 loose top-level modules become three documented groups (renames preserve history): llm/ claude_code, pi_proxy, subprocess_llm, stub_client, gemini_http github/ gh_diff, github_http ast/ ast_scope, ast_import_extractor main.rs drops from 10 mod lines to 3; cross-references rewritten to the new paths. The six library/published crates (aatxe-core, aatxe-bench, …) are untouched, so nothing on crates.io changes. README: - Replace the misaligned ASCII hero diagram with a Mermaid flowchart (GitHub renders it natively — can't drift out of alignment). - Stronger opening: value prop + three-signal trust argument + council dogfood baseline up front; mythology demoted to a closing aside. - Fix stale facts: drop the outdated "52 tests" claim, correct the GH client from reqwest to ureq, and list all 7 crates in Workspace layout (was 4) with the new CLI-internal grouping. cargo fmt --check + clippy -D warnings clean; full workspace test suite passes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Housekeeping pass on the
aatxeCLI crate + the README. No public/crate-API changes.CLI crate reorganized
The binary's flat
src/had 11 loose top-level modules mixing concerns. Grouped into three documented modules (git tracked every move as a rename, so blame/history survives):main.rsdrops from 10modlines to 3; each group has amod.rsdocumenting its members.crate::llm::…,crate::github::…,crate::ast::…).aatxe-core,aatxe-bench,aatxe-ast,aatxe-council,aatxe-learn,aatxe-evals,aatxe-ui) are untouched — nothing on crates.io changes.README
flowchart— GitHub renders it natively, so it can't drift out of alignment again.reqwest→ureq, and listed all 7 crates in Workspace layout (was 4) with the new CLI-internal grouping.Verification
cargo fmt --check+cargo clippy --all-targets -- -D warningsclean; fullcargo test --workspacepasses (0 failures).