feat(project): framework detection for JVM, .NET, C/C++, Elixir, and Swift#395
feat(project): framework detection for JVM, .NET, C/C++, Elixir, and Swift#395OBenner wants to merge 1 commit into
Conversation
…Swift Planner/coder context previously understood frameworks only for scripting-language ecosystems. Extend FrameworkDetector with: - JVM: Spring Boot, Quarkus, Micronaut, Android, Compose (Maven + Gradle Groovy/Kotlin-DSL build files) - .NET: ASP.NET Core, MAUI, Unity (csproj SDKs, ProjectVersion.txt) - C/C++: Qt, Boost, GTest, Catch2 (CMake find_package markers) - Elixir: Phoenix, Ecto (mix.exs deps) - Swift: Vapor (Package.swift) FRAMEWORK_COMMANDS entries added so detected frameworks allowlist their tooling (mn, quarkus, adb, qmake/moc/uic/rcc, vapor, ...). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Signed-off-by: Oleg Miagkov <mrobenner@gmail.com>
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
|
Warning Review limit reached
Next review available in: 51 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ 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 |
|



Summary
Roadmap phase 3 (follows #387/#388/#390/#394): planner/coder context previously knew web frameworks for scripting languages only. This extends
FrameworkDetectorto the compiled ecosystems:pom.xml,build.gradle(.kts),settings.gradle(.kts)ProjectSettings/ProjectVersion.txtfind_packagemarkers inCMakeLists.txtmix.exsdepsPackage.swiftDetected frameworks now also allowlist their tooling via new
FRAMEWORK_COMMANDSentries (mn,quarkus,adb,qmake/moc/uic/rcc,vapor, …).GTest/Catch2 detection additionally feeds the QA loop: it signals the test stack for C++ projects discovered by #388's CTest support.
Testing
tests/test_project_analyzer.py: 78 passed (8 new covering every new ecosystem). Ruff clean.🤖 Generated with Claude Code