jabrena/plinth

Plinth is an AI-native engineering toolkit for modern Java enterprise SDLC, built around reusable Commands, Agents, Skills, and MCP Servers.

This repository also configures its own agents. See what plinth tells them →

438Stars on the repository
150Mods indexed here, across every type
yesterdayLast push, which is what freshness is scored on
Apache-2.0Licence, which decides whether bodies are shown

jabrena/plinth

Skill Claude CodeCodex

Use when a large feature, story, plan, or spec idea needs to be split into small vertical slices with the Hamburger Method. This should trigger for requests such as Split this oversized story; Find the smallest useful slice; Break this feature into vertical slices; Apply the Hamburger Method; Turn this broad plan into…

not rated 438 +3 yesterday A SkillSpector: pass 76 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when Java design, refactoring, or implementation tradeoffs should be evaluated with Kent Beck's simple design rules, including passes the tests, reveals intention, has no duplication, and has the fewest elements. This should trigger for requests such as Apply simple design rules; Review this design with Beck's…

not rated 438 +3 yesterday A SkillSpector: pass 86 tokens original Apache-2.0

054-design-tdd

27

jabrena/plinth

Skill Claude CodeCodex

Use when Java implementation work should be guided by Test-Driven Development, including maintaining a test list, choosing the next behavior, writing a failing test first, implementing only enough production code to pass, and refactoring while keeping tests green. This should trigger for requests such as Apply TDD…

not rated 438 +3 yesterday A SkillSpector: pass 93 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when a database schema or data-meaning change needs Parallel Change, including expand, migrate, and contract sequencing for column renames, type or data reinterpretation, large-table backfills, relationship-table changes, enum/status transitions, timezone/default changes, and index or uniqueness changes. This…

not rated 438 +3 yesterday A SkillSpector: pass 94 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to review a plan, OpenSpec change, specification, or implementation proposal for breaking-change risk across commands, skills, generated outputs, XML sources, README/docs, tests, CI, APIs, schemas, configuration, data, migration, and release guidance. This should trigger for requests such as Review…

not rated 438 +3 yesterday A SkillSpector: pass 106 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when designing, implementing, reviewing, testing, or cleaning up feature toggles, feature flags, kill switches, runtime configuration gates, canary controls, staged rollouts, experiments, or temporary compatibility switches in Java enterprise systems. This should trigger for requests such as Design a feature…

not rated 438 +3 yesterday A SkillSpector: pass 103 tokens original Apache-2.0

058-design-bdd

31

jabrena/plinth

Skill Claude CodeCodex

Use when a Java change needs independent Behavior-Driven Development guidance from trusted behavior facts through concrete examples and observable scenarios, with focused clarification when behavior is pending or ambiguous. This should trigger for requests such as Apply BDD; Facilitate behavior examples; Discover…

not rated 438 +3 yesterday A SkillSpector: pass 84 tokens original Apache-2.0

059-design-atdd

32

jabrena/plinth

Skill Claude CodeCodex

Use when reviewing whether an OpenSpec change's execution goal, acceptance criteria, and implementation or verification tasks are aligned. This should trigger for requests such as Review this OpenSpec change with ATDD; Check acceptance criteria against tasks; Find acceptance criteria without task coverage; Detect…

not rated 438 +3 yesterday A SkillSpector: pass 93 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to review, improve, or troubleshoot a Maven pom.xml file — including dependency management with BOMs, plugin configuration, version centralization, multi-module project structure, build profiles, or any situation where you want to align your Maven setup with industry best practices. This should…

not rated 438 +3 yesterday A Socket: passSnyk: warnSkillSpector: pass 115 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to add or evaluate Maven dependencies that improve code quality or domain modeling — including nullness annotations (JSpecify), static analysis (Error Prone + NullAway), functional programming (VAVR), architecture testing (ArchUnit), or money and currency support (JavaMoney) — and want a…

not rated 438 +3 yesterday A SkillSpector: pass 133 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to add or configure Maven plugins in your pom.xml — including quality tools (enforcer, surefire, failsafe, jacoco, pitest, spotbugs, pmd), security scanning (OWASP), code formatting (Spotless), version management, container image build (Jib), build information tracking, and benchmarking (JMH) …

not rated 438 +3 yesterday A SkillSpector: pass 149 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to create a DEVELOPER.md file for a Maven project — combining a fixed base template with dynamic sections derived from allowlisted Maven POM structure, including a Plugin Goals Reference, Maven Profiles table, and Submodules table for multi-module projects. This should trigger for requests such as…

not rated 438 +3 yesterday A SkillSpector: pass 96 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Routes Maven version questions to the right workflow by choosing project-local update report interpretation for a user’s own pom.xml, or Maven artifact discovery from maintainer-approved structured evidence. Use when interpreting dependency, plugin, or property update reports; finding Maven coordinates; verifying…

not rated 438 +3 yesterday A SkillSpector: pass 83 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when reviewing, improving, or refactoring Java object-oriented design, including applying SOLID, DRY, or YAGNI; improving classes and interfaces; correcting encapsulation, inheritance, or polymorphism; resolving God Class, Feature Envy, or Data Clumps; and improving object creation, methods, or exception…

not rated 438 +3 yesterday A Socket: passSnyk: passSkillSpector: pass 107 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to review, improve, or refactor Java code for type design quality — including establishing clear type hierarchies, applying consistent naming conventions, eliminating primitive obsession with domain-specific value objects, leveraging generic type parameters, creating type-safe wrappers, designing…

not rated 438 +3 yesterday A SkillSpector: pass 124 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to select, review, or implement Java design and integration patterns — including classic Java design patterns, REST API patterns, Kafka and event-driven patterns, database and persistence patterns, and cross-cutting integration patterns. This should trigger for requests such as Apply Java design…

not rated 438 +3 yesterday A SkillSpector: pass 89 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to apply Java secure coding best practices — including validating untrusted inputs, defending against injection attacks with parameterized queries, minimizing attack surface via least privilege, applying strong cryptographic algorithms, handling exceptions securely without exposing sensitive data…

not rated 438 +3 yesterday A Socket: passSnyk: passSkillSpector: pass 123 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to apply Java concurrency best practices — including thread safety fundamentals, ExecutorService thread pool management, concurrent design patterns like Producer-Consumer, asynchronous programming with CompletableFuture, immutability and safe publication, deadlock avoidance, virtual threads…

not rated 438 +3 yesterday A SkillSpector: pass 133 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to apply Java exception handling best practices — including using specific exception types, managing resources with try-with-resources, securing exception messages, preserving error context via exception chaining, validating inputs early with fail-fast principles, handling thread interruption…

not rated 438 +3 yesterday A SkillSpector: pass 144 tokens original Apache-2.0

128-java-generics

44

jabrena/plinth

Skill Claude CodeCodex

Use when you need to review, improve, or refactor Java code for generics quality — including avoiding raw types, applying the PECS (Producer Extends Consumer Super) principle for wildcards, using bounded type parameters, designing effective generic methods, leveraging the diamond operator, understanding type erasure…

not rated 438 +3 yesterday A SkillSpector: pass 147 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to apply testing strategies for Java code — RIGHT-BICEP to guide test creation, A-TRIP for test quality characteristics, or CORRECT for verifying boundary conditions. This should trigger for requests such as Review Java code for testing strategies; Apply RIGHT-BICEP testing strategies in Java code…

not rated 438 +3 yesterday A SkillSpector: pass 96 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to review, improve, or write Java unit tests — including migrating from JUnit 4 to JUnit 5, adopting AssertJ for fluent assertions, structuring tests with Given-When-Then, ensuring test independence, applying parameterized tests, mocking dependencies with Mockito, verifying boundary conditions…

not rated 438 +3 yesterday A Socket: passSnyk: passSkillSpector: pass 160 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to set up, review, or improve Java integration tests — including generating a BaseIntegrationTest.java with WireMock for HTTP stubs, detecting HTTP client infrastructure from import signals, injecting service coordinates dynamically via System.setProperty(), creating WireMock JSON mapping files with…

not rated 438 +3 yesterday A SkillSpector: pass 155 tokens original Apache-2.0

jabrena/plinth

Skill Claude CodeCodex

Use when you need to implement acceptance tests from maintainer-sanitized Gherkin scenario facts for framework-agnostic Java (no Spring Boot, Quarkus, Micronaut) — confirming @acceptance scenarios before coding, happy path with RestAssured, DB/Kafka test fixtures, WireMock for external REST only, and AT classes run by…

not rated 438 +3 yesterday A SkillSpector: pass 142 tokens original Apache-2.0

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: