The library

Everything we index — ranked by what works, never by stars.

untested
Recall past lessons before starting workskillProductivityEngineeringL1
replay-learnings · Start of similar task. Avoids repeating mistakes (muscle memory).
untested
Prevent destructive operationsskillEngineeringProductivityL2
safe-mode · Unfamiliar codebases or pair-programming. Scope damage radius.
untested
Apply architectural guardrails to routingskillEngineeringL2
oe-architectural-guardrails · Before modifying routing/state/detection logic. Prevents silent data loss bugs.
untested
Manage architecture decision recordsskillEngineeringOpsL1
java-adr · Documenting significant architectural choices over time. Prevents repeated debates.
untested
Train skills with validation gatesskillEngineeringProductL3
skill-optimizer · Building reliable extraction pipelines from unstructured data.
untested
Generate monorepo coding guidelines per moduleskillEngineeringL1
coding-guidelines-gen · Onboarding new team members. Codifies tacit project culture.
untested
Review Java REST API design and namingskillEngineeringL1
java-api-review · Before public API release. Catches naming/nullability patterns early.
untested
Create quality-gated conventional commitsskillEngineeringL1
smart-commit · When you want to commit code that has passed quality gates and has a well-crafted message.
untested
Refactor Java to clean architecture patternsskillEngineeringL1
java-clean-arch · When you need to migrate Java code to hexagonal/clean architecture with DDD patterns.
untested
Add distributed Redis state patternsskillEngineeringL2
commandkit-redis · When you need distributed cache, mutex, and semaphore patterns across instances.
untested
Draft conventional commits for Java codeskillEngineeringL1
java-commit · When you want conventional commit messages tailored to Java/Spring conventions.
untested
Review Java code for thread safety issuesskillEngineeringL1
java-concurrency-review · When auditing Java code for race conditions, deadlocks, and thread safety.
untested
Detect and recommend Java design patternsskillEngineeringL1
java-design-pattern · When you need to identify GoF patterns in code or recommend patterns for a problem.
untested
Generate Javadoc for classes and methodsskillEngineeringL1
java-docs · When adding Javadoc to existing Java methods and classes at scale.
untested
Explain Java code with design patternsskillEngineeringL1
java-explain · When you need specialized workflow support that java explain provides.
untested
Diagnose and fix Java compilation errorsskillEngineeringL1
java-fix · When you need specialized workflow support that java fix provides.
untested
Score code health across security and testsskillEngineeringL1
java-health · When you need specialized workflow support that java health provides.
untested
Guide Java version upgrades interactivelyskillEngineeringL1
java-migrate · When a project must upgrade between major Java versions (8→11→17→21) and needs a structured checklist of breaking changes and recommended improvements.
untested
Refactor and modernize Java code idiomaticallyskillEngineeringL1
java-refactor · When code quality needs improvement and you want safe, language-version-aware refactorings (lambdas, streams, records, pattern matching) applied.
untested
Create diagrams and flowchartsskillEngineeringProductL1
drawio-skill · Polished, precise architectural, network, or UML diagrams that need custom styling, rich shape vocabulary, swimlanes, or editable exports with embedded XML.
untested
Switch and manage Ollama modelsskillEngineeringL1
minion-models · When setting up or switching between different Ollama code/reasoning models with different speed/quality tradeoffs (0.5b nano → 14b large).
untested
Review Java code for defectsskillEngineeringL1
java-review · Catching null dereferences, resource leaks, naming issues, missing equals/hashCode, and recommending version-gated idioms before code ships.
untested
Audit SOLID principle violationsskillEngineeringL1
java-solid · Evaluating whether a class hierarchy, service design, or interface contract follows SOLID principles and suggesting targeted fixes per principle.
untested
Audit web accessibility (WCAG)skillEngineeringProductL1
accessibility · Making web content usable by everyone including people with disabilities; required for legal compliance in many jurisdictions (AA level).
untested
Scan Java performance bottlenecksskillEngineeringL1
java-perf-check · Quick N+1 query detection, unbounded data loads, string concatenation in loops, and threading issues before they hit production.
untested
Apply security and code quality standardsskillEngineeringL1
best-practices · Hardening sites against XSS, clickjacking, MIME-sniffing; enforcing HTTPS, CSP, SRI, Trusted Types, and best-practice header configs.
untested
Security scan for injection and crypto risksskillEngineeringL1
java-security-check · Finding hardcoded secrets, SQL/command injection, weak crypto, insecure deserialization, and Spring Security misconfigs in Java code.
untested
Optimize Core Web VitalsskillEngineeringProductL1
core-web-vitals · When a site needs better Google Search ranking and user experience; these three metrics drive 75th-percentile page experience scoring.
untested
Generate code refactoring checklistskillEngineeringL1
code-refactoring-assistant · Improving code quality through safe, syntax-preserving transformations without changing behavior.
untested
Generate unit and integration testsskillEngineeringL2
java-test · Writing comprehensive tests for untested Java code; covers happy path, edge cases, exception handling with mocking guidance.
untested
Optimize web performanceskillEngineeringProductL1
performance · Reducing latency and improving throughput when you have profiling data or suspect bottlenecks in critical code paths.
untested
Configure Redis and cache strategiesskillEngineeringL2
java-cache · Reducing database load and latency by applying the right caching pattern (local, distributed, cache-aside, write-through) for your workload.
untested
Review media autoplay patternsskillEngineeringL1
autoplay-media · Playing media automatically on page load while respecting user preferences, battery life, and data usage — especially on mobile.
untested
Scaffold CRUD API endpointsskillEngineeringL2
java-crud · Scaffolding boilerplate for database-backed entities; Spring Data JPA repositories, service layer, exception handling, and validation.
untested
Run comprehensive web quality auditskillEngineeringProductL1
web-quality-audit · Holistic assessment of a site's performance, accessibility, security, SEO, and best-practice compliance via an automated audit.
untested
Review JPA queries and fetch strategiesskillEngineeringL1
java-jpa · Specialized N+1 detection and fetch strategy tuning beats generic code review.
untested
Forge reusable web scraper skillsskillEngineeringL3
browser-act-skill-forge · Reusable Skill generation with verification beats repeated manual exploration.
untested
Review logging for PII and best practicesskillEngineeringL1
java-logging · Structured PII and security review of logging config beats generic linting.
untested
Automate browser-based tasksskillEngineeringOpsL2
browser-act · JavaScript-rendered content and verified session handling beats static fetch.
untested
Generate OpenAPI documentationskillEngineeringL2
java-openapi · Automated annotation generation and Spring Boot version-aware templating beats manual documenting.
untested
JARVIS agent frameworkskillEngineeringL3
JARVIS · Repository-specific pattern detection beats generic TypeScript advice.
untested
Implement circuit breaker and resilienceskillEngineeringL2
java-resilience · Resilience4J pattern tuning for specific failure modes beats generic retry logic.
untested
Scaffold new Spring Boot projectsskillEngineeringL1
java-scaffold · Starter template with first feature and tests beats manual project setup.
untested
Configure Spring Security and authenticationskillEngineeringL2
java-security · OWASP Top 10 and Spring Security vulnerability detection beats generic code review.
untested
Build AI features with Spring AIskillEngineeringL2
java-spring-ai · Spring AI integration patterns beat manual LLM client setup.
untested
Clean and refactor AI-generated codeskillEngineeringL1
ai-slop-cleaner · Specialized AI bloat removal beats generic copyediting.
untested
Open browser for E2E testingskillEngineeringL2
browser · Multi-browser parallel execution with session management beats single-browser tools.
untested
Analyze codebase and identify causesskillEngineeringL1
analyze · Domain-specific analysis beats generic content summarization.
untested
Build AI agents and chatbotsskillEngineeringL2
ai-sdk · When you need current API signatures, configuration options, or provider-specific settings for the Vercel AI SDK.
untested
Refactor Imagify service architectureskillEngineeringL2
imagify-architecture · When refactoring legacy code or onboarding new services to maintain consistent structure.
page 54 / 86