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.
-
chinthakat Skill Solution ArchitectureChoose an architecture and record why — constraints before options, reversibility as the ranking axis, at least one option that extends what already exists, and an ADR that survives the people who wrote it. Use when a feature needs a shape rather than a file, when picking between services, stores or patterns, or when someone asks "how should we build this?"
-
chinthakat Skill Mobile Field ReadinessTake a mobile app or PWA feature from "works on my laptop" to "works on a phone in the field" — camera, GPS and geofencing, permissions, install and update, poor signal, one-handed use. Use when building or reviewing anything a person uses standing up, outdoors, on their own device.
-
chinthakat Skill Requirements ElicitationTurn a vague or solution-shaped request into a statement of what is actually wanted — the job behind the ask, who has it, acceptance criteria that can fail, and an explicit non-goals list. Use at the start of any feature, before designing or planning, and whenever a request arrives already phrased as an implementation.
-
athola Skill Friction Detector 2Detect friction signals; graduate patterns into rules. Use for session retrospectives.
-
athola Skill Makefile Generation 2Generates Makefiles with testing, linting, formatting, and automation targets. Use when starting a project or standardizing build automation.
-
athola Bundle Performance Review 2Detects time and space complexity hotspots via AST scan. Use when code feels slow, before performance-sensitive merges, or to find O(n²) regressions.
-
athola Skill Session Management 2Manages Claude Code sessions with naming, checkpointing, and resume strategies. Use when organizing long-running work or resuming across sessions.
-
athola Skill Night Market Change Control 2Classify, gate, and review changes. Use when landing a PR, releasing, or amending rules. Do not use for failure triage; use night-market-debugging-playbook.
-
athola Skill Night Market Config Catalog 2Catalog every config axis, its defaults and guards. Use when adding or auditing configuration. Do not use for running gates; use night-market-operations.
-
athola Skill Code Communities 2Detects architectural clusters and coupling boundaries via community detection on the code graph. Use when identifying module groupings or refactoring targets.
-
athola Skill Dependency Graph 2Generates a Mermaid dependency graph showing import relationships between modules. Use when analyzing coupling, finding circular deps, or planning refactors.
-
athola Skill Graph Search 2Searches the code knowledge graph by function, class, or type using FTS5 full-text search. Use when locating code entities by name or qualified path.
-
athola Skill Vow Enforcement 2Classifies and enforces constraints via soft vows, hard vows, and Nen Court layers. Use when designing or auditing enforcement mechanisms for project rules.
-
athola Skill File Analysis 2Maps file structure and module organization of a codebase. Use before architecture reviews, refactoring planning, or migration scope estimation.
-
luque2004 Bundle Buscar OfertasBusca ofertas de empleo en LinkedIn con la sesión del usuario, las criba leyendo la descripción (años de experiencia, nivel, stack) y presenta solicitudes con "Solicitud sencilla" (Easy Apply) confirmando cada envío. Usa esta skill cuando el usuario pida buscar trabajo, ofertas, prácticas o vacantes en LinkedIn, aplicar/enviar su CV, o diga cosas como "busca ofertas", "envía mi currículum", "aplica a ofertas junior", "qué ofertas hay hoy", aunque no mencione LinkedIn. No la uses para redactar o convertir el CV (eso es aparte) ni para otros portales de empleo.
-
luque2004 Bundle Builds ChampionsActualiza los archivos de builds de Pokémon Champions del bot de Discord (builds__vgc_api.json en inglés y builds__vgc_api_es.json en español) a la regulación vigente, añadiendo los Pokémon nuevos del roster, quitando los que dejan de ser legales y regenerando los alias de Main.py. Usa esta skill cuando el usuario pida actualizar/regenerar las builds, adaptar el bot a una regulación nueva (Reg M-D, M-E…), añadir los Pokémon nuevos de Champions, traducir las builds al español, o diga cosas como "actualiza las builds", "ha salido regulación nueva", "mete los pokémon nuevos", "regenera el json del bot". No la uses para builds de Escarlata/Púrpura ni para otros juegos.
-
shangyu-xiong Bundle Mmc Helper数学建模竞赛全程辅助 Skill。四阶段状态机(立项 / 题目剖析与文献集结 / 分角色攻坚 / 汇总收尾)+ 多角色协作(建模手 / 编程手 / 论文手 / 审核手)+ 三查两证质检 + 用户画像与赛后成长闭环。全程人机协同,用户主导。
-
al-janef Skill Safe SkillA harmless fixture skill that only describes a code-review checklist for tests.
-
al-janef Skill Risky SkillA fixture skill that contains patterns the static auditor must flag.
-
athola Skill Token Conservation 2Enforces token quota management at session start with conservation and compression checks. Use at the start of every session or before large context loads.
-
athola Skill Uninstall Watchdog 2Removes the egregore watchdog daemon and its associated files. Use when stopping automated session relaunching or cleaning up egregore infrastructure.
-
athola Bundle Progressive Loading 2Implements hub-and-spoke lazy loading to minimize token usage in large skills. Use when building multi-module skills that need conditional on-demand loading.
-
athola Bundle Methodology Curator 2Surface expert frameworks. Use when creating or evaluating skills, hooks, or agents.
-
athola Bundle Project Brainstorming 2Guides project ideation via Socratic questioning to produce a validated brief. Use before specification when requirements are unclear.
-
al-janef Bundle Git DisciplineKeep history safe and meaningful: inspect status and diff before and after editing, preserve unrelated user work, scope commits logically, write accurate messages, resolve conflicts by understanding both sides, and never rewrite shared history, force-push, or discard work without explicit authorization. Use for commits, branches, merges, rebases, and PR hygiene.
-
al-janef Bundle Testing VerificationSelect tests by risk, design strong regression and boundary tests, handle flaky suites, and run the completion gate with evidence: exact command, result, scope, and every skipped or blocked check. Use when choosing what to test, judging whether work is done, or producing release evidence. Never weaken a failing test to get green.
-
al-janef Bundle Architecture IntegrityDesign or change system structure without breaking invariants: module and domain boundaries, dependency direction, new services, queues, caches, datastores, or frameworks, and lasting trade-offs recorded as ADRs. Use when a change crosses components, introduces a durable boundary, or is hard to reverse.
-
al-janef Bundle Implementation QualityWrite or modify production code to a strict, evidence-gated standard: features, bug fixes, refactors, services, libraries, CLIs, workers, and application logic. Use whenever real application code is being implemented or changed, or when asked whether code is production-ready. Bans placeholders, dead code, silent failures, and unverified completion claims.
-
al-janef Bundle UI UX QualityMake product flows clear and recoverable: primary action and next step obvious, forms with clear labels, validation timing, actionable errors, preserved input on failure, consistent navigation and terminology, and no hidden or surprising destructive actions. Use for user flows, forms, navigation, onboarding, dialogs, and interaction design.
-
athola Skill Project Specification 2Transforms project briefs into testable specifications with user stories and acceptance criteria. Use after brainstorming, before planning.
-
athola Skill Content Sanitization 2Provides sanitization guidelines for external content in skills and hooks. Use when loading GitHub Issues, PRs, WebFetch results, or any untrusted input.
-
athola Skill Palace Diagram 2Generates Mermaid and ASCII diagrams of palace structure, knowledge topology, and synapse connectivity. Use when inspecting or presenting a palace visually.
-
athola Bundle Review Chamber 2Captures and retrieves PR-review findings in memory palaces. Use after PR review to store architectural decisions, patterns, and standards for future reference.
-
athola Bundle Git Workspace Review 2Verifies workspace state and staged changes as a read-only preflight. Use before commits or PRs to confirm staged set is clean and correct.
-
athola Skill Night Market Docs And Writing 2Maintain docs of record, ADRs, changelog, and house style. Use when writing repo docs. Do not use for release steps; use night-market-operations instead.
-
athola Bundle Compression Strategy 2Recommends context compression strategies for bloated or quota-heavy sessions. Use when context feels sluggish or quota burns faster than expected.
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 solution-architecture, mobile-field-readiness, requirements-elicitation. 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.