From 4660480af536416184774b0353b972ef7109a876 Mon Sep 17 00:00:00 2001 From: RNT56 Date: Mon, 29 Jun 2026 23:44:17 +0200 Subject: [PATCH] style(daemon): restore alphabetical mod order after union merge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The v0.6 stacked-PR integration used a union merge driver on daemon/src/lib.rs to auto-resolve the cascading `pub mod` additions. The union resolution left `multirepo` (F.3) and `github_commands` (E.2) interleaved out of rustfmt's alphabetical `reorder_modules` order. This is a pure mechanical `cargo fmt` reorder — doc comments stay attached to their modules, zero logic change. `cargo xtask verify` green on the integrated main. Co-Authored-By: Claude Opus 4.8 --- crates/crustcore-daemon/src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/crustcore-daemon/src/lib.rs b/crates/crustcore-daemon/src/lib.rs index cb7c2af..13e1bbe 100644 --- a/crates/crustcore-daemon/src/lib.rs +++ b/crates/crustcore-daemon/src/lib.rs @@ -43,14 +43,14 @@ pub mod advisor; pub mod chat; pub mod exec; pub mod github; -/// Multi-repo orchestration (roadmap-v0.6 F.3): bind several repos at startup and a pure -/// `classify_repo` that routes a chat launch to the right one (explicit hint → sole-repo -/// default → ambiguous asks). Repo paths from config/CLI, never model/user input. -pub mod multirepo; /// GitHub `/crustcore` slash commands (roadmap-v0.6 E.2): a pure parser turning an /// untrusted PR/issue comment into a typed, bounded `GithubCommand` routed through the /// same policy-gated dispatch as Telegram — never free text to a model. pub mod github_commands; +/// Multi-repo orchestration (roadmap-v0.6 F.3): bind several repos at startup and a pure +/// `classify_repo` that routes a chat launch to the right one (explicit hint → sole-repo +/// default → ambiguous asks). Repo paths from config/CLI, never model/user input. +pub mod multirepo; /// GitHub App onboarding (roadmap-v0.6 A.1): turns an untrusted install redirect /// into a registered, write-capable repo + a minted `Approved`. /// Pure decision core; the install-confirm + token-mint are the live seam.