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
8 changes: 4 additions & 4 deletions crates/crustcore-daemon/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<GitHubWriteCap>`.
/// Pure decision core; the install-confirm + token-mint are the live seam.
Expand Down
Loading