Coding & Dev Tools
Coding agent skills teach AI agents repeatable engineering workflows: reviewing pull requests, writing tests, refactoring safely, and enforcing house style. Install one SKILL.md and your agent applies the same checklist every time, whether you use Claude Code, Cursor, Codex, or another agent.
-
artsmc Bundle QA Engineerfor writting unit test. Use when Codex needs this specialist perspective or review style.
-
thapaliyabikendra Skill Data Seeder GeneratorGenerate ABP Framework data seeder contributors following project conventions. Auto-detects project structure, existing entities, namespaces, permission constants, and seeder patterns from the codebase — no manual configuration needed. Creates IDataSeedContributor implementations with proper dependency injection, logging, and tenant/feature awareness. Use when: (1) creating new seed data for entities, (2) adding initial/reference data, (3) scaffolding data initialization code, (4) maintaining data consistency across environments.
-
thapaliyabikendra Skill Requirements Gap FillerChecks requirements.md against the actual codebase to find ALL four types of gaps — requirements missing from code, requirements partially implemented, code logic not mentioned in requirements, and business rules in code that were never written into requirements. Automatically updates requirements.md in both directions — flags unimplemented requirements AND adds newly discovered code logic back into requirements. Use after code generation to keep requirements fully in sync with what was actually built.
-
thapaliyabikendra Skill Test Data GenerationTest data generation patterns using Bogus, test builders, and ABP seeders. Use when: (1) creating realistic test data, (2) implementing test data seeders, (3) building test fixtures, (4) generating fake data for development.
-
thapaliyabikendra Bundle Abp Framework PatternsMaster ABP Framework patterns including repository pattern, unit of work, domain services, application services, authorization, multi-tenancy, background jobs, and distributed events. Use when: (1) building ABP-based applications with DDD architecture, (2) creating CRUD services with Entity, AppService, DTOs, validators, (3) handling authorization/permissions, (4) generating ABP module code.
-
thapaliyabikendra Skill Code Review ExcellenceMaster effective code review practices to provide constructive feedback, catch bugs early, and foster knowledge sharing while maintaining team morale. Use when reviewing pull requests, establishing review standards, or mentoring developers.
-
thapaliyabikendra Skill Git Advanced WorkflowsMaster advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.
-
thapaliyabikendra Skill Crud GeneratorGenerate complete CRUD application services for ABP Framework following DDD patterns. Creates interface in Contracts layer, implementation in AppServices, and DTOs in Contracts. Use when: (1) creating new entity services, (2) scaffolding CRUD operations, (3) implementing standard ABP service patterns, (4) accelerating feature development.
-
thapaliyabikendra Bundle Ef Core Advanced PatternsMaster Entity Framework Core advanced patterns including change tracking optimization, lazy/eager/explicit loading strategies, query splitting, compiled queries, batch operations, optimistic concurrency, performance optimization, and PostgreSQL-specific features for .NET applications.
-
artsmc Bundle Code Reviewercode reviews. Use when Codex needs this specialist perspective or review style.
-
thapaliyabikendra Bundle Linq Optimization PatternsLINQ and EF Core query optimization for ABP Framework. N+1 prevention, eager loading, projections, pagination.
-
sarfraznawaz2005 Skill PlannerCreate comprehensive, phased implementation plans with sprints and atomic tasks. Use when user says: "make a plan", "create a plan", "plan this out", "plan the implementation", "help me plan", "design a plan", "draft a plan", "write a plan", "outline the steps", "break this down into tasks", "what's the plan for", or any similar planning request. Also triggers on explicit "/planner" or "/plan" commands.
-
sarfraznawaz2005 Bundle CLI BuilderGuide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.
-
sarfraznawaz2005 Bundle Skill CreatorGuide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
-
sarfraznawaz2005 Bundle Take ScreenshotsA Windows screenshot skill that provides both programmatic full-screen capture and interactive region selection.
-
sarfraznawaz2005 Bundle Win Mouse NativeNative Windows mouse control (move, click, drag) via user32.dll. Use when the user asks you to move the mouse, click, drag, or automate pointer actions on Windows.
-
artsmc Bundle Nextjs QA Engineerfor writting unit test. Use when Codex needs this specialist perspective or review style.
-
artsmc Bundle Debugger SpecialistComplex issue diagnosis, root cause analysis, and production incident investigation. Use when Codex needs this specialist perspective or review style.
-
kubernetes-sigs-kueue Skill Kueue LineageTrace workload lineage to pods. Use when a user wants to trace lineage across any tier such as workload to pods, pod to workload, or job to workload. The user may provide a resource at any level (Workload, Job, Pod, JobSet, etc.) and this skill produces the full tree from Workload down to Pods.
-
kubernetes-sigs-kueue Skill CommentsReview a diff for comment hygiene — over-commenting, what-not-why narration, inaccurate comments, and missing TODOs on compatibility shims.
-
kubernetes-sigs-kueue Skill Kueue Release NotesWrite or review Kueue PR release notes. Use when a user asks to draft, refine, validate, or combine release notes for a Kueue pull request, especially when deciding whether the note should be framed as a bugfix, feature, observability improvement, or breaking change.
-
kubernetes-sigs-kueue Skill Code StyleReview a diff for naming precision, convention drift, reinvented helpers, log-verbosity mistakes, misaligned test names, and typos.
-
kubernetes-sigs-kueue Skill Kueue Flake DebuggerDebug Kueue CI flakes. Use when a user asks to debug a flake, investigate a test failure, a test timeout, or a CI flake. Analyzes Prow build logs, kube-scheduler logs, kubelet logs, and test code to identify root causes.
-
kubernetes-sigs-kueue Skill Buggy BehaviorReview a diff for behavioral defects — logic errors, broken edge cases, feature-gate bugs, and deletions that break backwards compatibility during rolling upgrades.
-
kubernetes-sigs-kueue Skill Extract HelpersReview that local variables with unnecessarily wide scope are extracted into helper functions.
-
kubernetes-sigs-kueue Skill Race ConditionsReview concurrent Go code for races, preferring fixes at the mutation site over adding snapshot fields.
-
kubernetes-sigs-kueue Skill Split Test FilesReview that new feature tests are split into their own file rather than added to an already large test file.
-
kubernetes-sigs-kueue Skill Kueue E2e Cluster MultikueueCreate (or reuse) the manager + worker kind clusters for Kueue MultiKueue e2e development. Use when a user asks to spin up MultiKueue e2e clusters, get a local multi-cluster environment ready, or debug/iterate against a MultiKueue e2e suite (baseline, extended, sequential, DRA).
-
kubernetes-sigs-kueue Skill Kueue E2e Cluster SingleclusterCreate (or reuse) a single kind cluster for Kueue e2e development. Use when a user asks to spin up an e2e cluster, get a local kind environment ready for e2e tests, or debug/iterate against a single-cluster e2e suite (baseline, extended, sequential, TAS, cert-manager, DRA).
-
kubernetes-sigs-kueue Skill Architectural DecisionsReview a diff for small-scale structural problems — unjustified complexity, duplicated logic, scope creep, or misplaced code.
-
kubernetes-sigs-kueue Skill Imprecise NamesFlag identifiers whose name does not describe exactly what they contain — drift from package patterns, contradictory contents, misnamed feature gates, asymmetric mirror fields.
-
artsmc Bundle Database Schema SpecialistDatabase design, schema migrations, query optimization, and data modeling. Use when Codex needs this specialist perspective or review style.
-
apecloud Bundle Kubeblocks BackupLegacy compatibility shim for backup workflows. The primary Day-2 entry is kubeblocks-op-backup. Keep this skill callable for older references, but do not recommend it as the main path for cold-start agents.
-
apecloud Bundle Kubeblocks RestoreLegacy compatibility shim for restore workflows. The primary Day-2 entry is kubeblocks-op-restore. Keep this skill callable for older references, but do not recommend it as the main path for cold-start agents.
-
apecloud Skill Kubeblocks Op BackupPrimary Day-2 backup entry for KubeBlocks-managed database clusters. Use this for backup workflows on existing clusters. Confirm support in the ops capability matrix when available. The legacy kubeblocks-backup skill remains only as a compatibility shim.
-
apecloud Skill Kubeblocks Op ExposePrimary Day-2 expose entry for KubeBlocks-managed database clusters. Use this for service exposure on existing clusters. Confirm support in the ops capability matrix when available. The legacy kubeblocks-expose-service skill remains only as a compatibility shim.
Frequently asked questions
What are Coding & Dev Tools agent skills?
Coding agent skills teach AI agents repeatable engineering workflows: reviewing pull requests, writing tests, refactoring safely, and enforcing house style. Install one SKILL.md and your agent applies the same checklist every time, whether you use Claude Code, Cursor, Codex, or another agent.
Which Coding & Dev Tools skills are most installed?
Popular Coding & Dev Tools skills on SkillMD right now include qa-engineer, data-seeder-generator, requirements-gap-filler. Rankings shift as installs change; sort this page by "Most installs" for the live list.
Do Coding & Dev Tools skills work with Claude Code and Cursor?
Yes. Every skill here ships as a SKILL.md file, an open format that works in Claude Code, Claude.ai, Cursor, Codex, Windsurf, and 60+ other agents. Install one with npx skillmds@latest add <owner>/<name>, or copy the file into your agent's skills directory.