Conversation
- Replace git submodule with subtree (indexnetwork/claude-plugin main) - Plugin files now committed as regular files; no init step needed - Remove 11 stale docs/superpowers plans and specs - Update CLAUDE.md: subtree instructions, doc directory descriptions, finishing-a-branch guidance referencing the new descriptions
…ement Upgrade ESLint to v9 flat config and add eslint-plugin-boundaries to enforce strict layering rules: - Controllers can only import services, guards, types, schemas - Services cannot import other services or controllers - Adapters cannot import protocol, services, or controllers - Protocol layer can only import itself, types, schemas - Test files are excluded from boundary checks Pre-existing violations suppressed with eslint-disable + TODO comments.
…ng check - lint-staged runs ESLint on staged files before commit - Pre-commit hook blocks commits with lint violations - GitHub Actions workflow checks boundaries on PRs to dev - scripts/check-adapter-names.sh flags tech-named adapters
…-level PR comment
… login error handling
Plugin is now managed as a git subtree — the submodule sync workflow is no longer needed.
git-subtree-dir: plugin git-subtree-split: 34e21b77e39b8bc5a43c39bf067d1d74559dcebe
- Add scripts/hooks/pre-push: auto-runs git subtree push to indexnetwork/claude-plugin when commits touching plugin/ are pushed to upstream dev - Fix core.hooksPath to point at scripts/hooks/ so pre-commit and pre-push hooks are actually active (was misconfigured) - Wire hooksPath setup into worktree-setup.sh so new worktrees get it automatically - Update CLAUDE.md: document automatic sync, keep manual fallback
Contributor
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
New Features
MCP OAuth plugin: Users who install the Index Network Claude plugin are automatically prompted to connect their account via browser — no manual token setup. Identical UX to Linear on the Claude Marketplace.
@better-auth/oauth-providerwith Better Auth's built-inmcppluginWWW-Authenticate: Bearer resource_metadata=...header to MCP 401 responses so Claude Code auto-discovers the OAuth server/loginfrontend page as an OAuth bridge (redirects authenticated users back to the authorize endpoint, shows login modal otherwise)plugin/.mcp.jsonso installing the plugin registers the MCP server automaticallyoauth_application,oauth_access_token,oauth_consent) and migration0033_add_mcp_oauth_tablesPlugin subtree automation: Changes to
plugin/now sync toindexnetwork/claude-pluginautomatically on every push to upstream — no manualgit subtree pushneeded.git subtreetracking (was previously copied in as flat files)scripts/hooks/pre-pushhook that detectsplugin/changes and syncsImprovements
eslint-plugin-boundariesto protocol to enforce the Controllers → Services → Adapters layering rule at lint timelint-stagedto run ESLint only on staged files before each commitFixes
core.hooksPathmisconfiguration (was pointing at.git/hooks, committed hooks inscripts/hooks/were never running)@better-auth/oauth-providerdependencyDatabase Migrations
0033_add_mcp_oauth_tables— addsoauth_application,oauth_access_token,oauth_consenttables required by Better Authmcpplugin