feat: multi-provider support for 10 AI coding tools#118
Open
IyadhKhalfallah wants to merge 1 commit intomainfrom
Open
feat: multi-provider support for 10 AI coding tools#118IyadhKhalfallah wants to merge 1 commit intomainfrom
IyadhKhalfallah wants to merge 1 commit intomainfrom
Conversation
Adds a provider abstraction layer enabling clauditor to work with any AI coding tool. Implements 10 providers across 3 tiers: Tier 1 (full hooks + sessions): Claude Code, Codex CLI, Cursor, Windsurf, Cline Tier 2 (session monitoring): Gemini CLI, Aider Tier 3 (limited monitoring): GitHub Copilot, Zed AI, Amazon Q Key changes: - Provider interfaces: Provider, SessionParser, HookManager, ToolNameMapper, PricingResolver, SessionDiscovery - Provider registry with auto-detection of installed tools - Canonical tool names (bash_execute, file_read, etc.) so features never branch on provider-specific names - Hook handlers read --provider flag and use provider abstractions - clauditor install auto-detects all tools and installs hooks - clauditor login now sets up all detected providers - clauditor providers command lists all tools with status - 262 new provider tests, 588 total passing
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.
Summary
clauditor installandclauditor loginTest plan
npx tsc --noEmit— clean buildnpx vitest run— 588/588 tests passclauditor providers— lists all 10 tools with detection statusclauditor install(no flags) — auto-detects and installs for all detected toolsclauditor install --provider codex— installs hooks for specific provider