pproenca/dot-skills

A collection of AI agent skills following the Agent Skills open format

This repository also configures its own agents. See what dot-skills tells them →

205Stars on the repository
201Mods indexed here, across every type
24d agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

chrome-extension-ui

73

pproenca/dot-skills

Skill Claude CodeCodex

Chrome Extensions UX/UI design and implementation guidelines for popups, side panels, content scripts, and options pages. Triggers on tasks involving browser extension UI, manifest v3, chrome APIs.

not rated 205 +3 24d ago A Socket: passSnyk: warnSkillSpector: pass 42 tokens original MIT

chrome-extension

74

pproenca/dot-skills

Skill Claude CodeCodex

Chrome Extensions (Manifest V3) performance and code quality guidelines. Use when writing, reviewing, or refactoring Chrome extension code including service workers, content scripts, message passing, storage APIs, TypeScript patterns, and testing.

not rated 205 +3 24d ago A Socket: passSnyk: passSkillSpector: pass 48 tokens original MIT

clean-architecture

75

pproenca/dot-skills

Skill Claude CodeCodex

Clean Architecture principles and best practices from Robert C. Martin's book. This skill should be used when designing software systems, reviewing code structure, or refactoring applications to achieve better separation of concerns. Triggers on tasks involving layers, boundaries, dependency direction, entities, use…

not rated 205 +3 24d ago A Socket: passSnyk: passSkillSpector: pass 64 tokens original MIT

clean-code-ts-react

76

pproenca/dot-skills

Skill Claude CodeCodex

Use when writing, reviewing, or refactoring TypeScript or React code for craftsmanship — naming, function and component shape, error handling, data modeling, tests, and abstraction. Translates Robert C. Martin's Clean Code principles into modern TS+React idioms (TS 5.x, React 19), with first-class "When NOT to apply"…

not rated 205 +3 24d ago A SkillSpector: pass 185 tokens original MIT

clean-code

77

pproenca/dot-skills

Skill Claude CodeCodex

Use when writing, reviewing, or refactoring code for maintainability and readability. Triggers on code reviews, naming discussions, function design, error handling, and test writing. Based on Robert C. Martin's Clean Code handbook with modern corrections.

not rated 205 +3 24d ago A Socket: passSnyk: passSkillSpector: pass 52 tokens original MIT

cli-for-agents

78

pproenca/dot-skills

Skill Claude CodeCodex

Designing CLIs that AI agents will invoke — non-interactive flags, layered --help with examples, stdin/pipeline composition, actionable errors, idempotency, dry-run, destructive-action safety, and predictable command structure. Use when designing, building, or reviewing a command-line tool that AI agents or automation…

not rated 205 +3 24d ago A SkillSpector: warn 111 tokens original MIT

cli-review-runner

79

pproenca/dot-skills

Skill Claude CodeCodex

Black-box CLI grading harness — runs a test suite against a target CLI and reports per-rule pass/fail from the cli-for-agents 45-rule catalog. Use when reviewing, auditing, or grading a command-line tool for agent-friendliness. Trigger even if the user doesn't explicitly say "agent-friendly" — apply whenever they ask…

not rated 205 +3 24d ago A SkillSpector: pass 121 tokens original MIT

code-distill

80

pproenca/dot-skills

Skill Claude CodeCodex

On-demand pattern extraction from a specific GitHub codebase, given a focused query — "how does shadcn/ui implement the design system", "how does opencode use effect-ts", "how does base-ui handle composition" — when no pre-distilled static rule pack exists yet. Distills the generic pattern-extraction moves — classify…

not rated 205 +3 24d ago A SkillSpector: pass 223 tokens original MIT

pproenca/dot-skills

Skill Claude CodeCodex

Rendering and perception layer for codebase-as-geohash-map visualisations — choosing what to encode on colour/size/position, picking perceptually honest colour scales (viridis/OKLCH, not rainbow), drawing tens of thousands of cells on Canvas2D + WebGL/deck.gl inside a 16ms frame budget, placing and decluttering…

not rated 205 +3 24d ago A SkillSpector: pass 217 tokens original MIT

pproenca/dot-skills

Skill Claude CodeCodex

Mapping an unfamiliar codebase into feature/business domains — answering "what is this about", "which files implement feature X", "where is the architectural spine", or reviewing a refactor that crosses module boundaries. 47 algorithms across 9 categories — graph construction (omnipresent filter, multilayer, SCC)…

not rated 205 +3 24d ago A SkillSpector: warn 229 tokens original MIT

pproenca/dot-skills

Skill Claude Code

Guided, scripted pipeline for running JSX/TSX/React codemods safely across large legacy codebases. Use when you need to scaffold a codemod, dry-run it, validate its findings, and apply it across many files (50 to 100k+) without breaking the build. Walks the full inner/outer loop with the Codemod CLI (JSSG, ast-grep…

not rated 205 +3 24d ago A SkillSpector: warn 143 tokens original MIT

codemod

84

pproenca/dot-skills

Skill Claude CodeCodex

Codemod (JSSG, ast-grep, workflows) best practices for writing efficient, safe, and maintainable code transformations. This skill should be used when writing, reviewing, or debugging codemods, AST transformations, or automated refactoring tools. Triggers on tasks involving codemod, ast-grep, JSSG, code transformation…

not rated 205 +3 24d ago A SkillSpector: pass 81 tokens original MIT

codex-goals

85

pproenca/dot-skills

Skill Claude CodeCodex

Patterns and anti-patterns for using OpenAI Codex Goals — the persistent objectives feature introduced in Codex 0.128.0. Use this skill whenever writing, reviewing, or debugging a /goal invocation, deciding whether a task should be a Goal at all, drafting a research Goal that needs an evidence ledger, or diagnosing a…

not rated 205 +3 24d ago A SkillSpector: pass 164 tokens original MIT

pproenca/dot-skills

Skill Claude CodeCodex

Analyze a software codebase for algorithmic complexity and performance hotspots, then propose or implement safe optimizations without breaking behavior. Use when the user asks to scan many files, find inefficient loops, nested iteration, repeated scans, costly rendering/recomputation, N+1 queries, avoidable O(n^2) or…

not rated 205 +3 24d ago A SkillSpector: warn 105 tokens original MIT

pproenca/dot-skills

Skill Claude CodeCodex

Choosing or implementing an algorithm or data structure — asymptotic complexity, data-structure selection, sorting & searching, dynamic programming, graph algorithms, divide & conquer, greedy algorithms, string/sequence algorithms, and the at-scale toolbox (Bloom filters, HyperLogLog, Count-Min Sketch, reservoir…

not rated 205 +3 24d ago A SkillSpector: pass 173 tokens original MIT

datadog-dashboards

88

pproenca/dot-skills

Skill Claude CodeCodex

Corrects the wrong defaults a model has when building Datadog dashboards, verified against Datadog's docs in July 2026. Use when creating, editing, or reviewing a Datadog dashboard — choosing widgets, writing metric/log/span queries, or emitting widget JSON. Covers the queries that render a plausible number and are…

not rated 205 +3 24d ago A SkillSpector: pass 218 tokens original MIT

pproenca/dot-skills

Skill Claude CodeCodex

Reverse-engineering a Sketch file (or Figma export with similar shape) into pixel-perfect React + CSS — the iteration mental model, tree reconstruction, layout inference algorithms, geometry math, visual-regression diffing, and the style/typography/path conversions that make "improvement without regression"…

not rated 205 +3 24d ago A SkillSpector: pass 112 tokens original MIT

dev-rfc

90

pproenca/dot-skills

Skill Claude CodeCodex

Create well-structured RFCs and technical proposals for software projects. Use this skill whenever the user wants to write an RFC, technical proposal, design doc, architecture doc, or system design overview. Also trigger when the user says things like "write an RFC", "I need to propose a new system", "create a…

not rated 205 +3 24d ago A SkillSpector: warn 143 tokens original MIT

diagram-quality

91

pproenca/dot-skills

Skill Claude CodeCodex

PlantUML diagram quality on the agent-uml collaborative canvas — three tiers: rendering safety (syntax that prevents HTTP 400 blank canvas), conversation mechanics (when to push a version vs ask a question, what to write in the message parameter), and design effectiveness (decomposition thresholds, cross-diagram…

not rated 205 +3 24d ago A SkillSpector: pass 122 tokens original MIT

diataxis

92

pproenca/dot-skills

Skill Claude CodeCodex

Use whenever writing, editing, restructuring, or reviewing technical documentation — READMEs, API docs, guides, tutorials, reference, onboarding, or developer docs of any kind — to apply the Diátaxis framework, which splits content into four modes (tutorials, how-to guides, reference, explanation) that each serve a…

not rated 205 +3 24d ago A SkillSpector: pass 190 tokens original MIT

pproenca/dot-skills

Skill Claude CodeCodex

Django backend patterns for recommendation services (AWS Personalize, Databricks Model Serving, internal microservices) and OpenSearch-backed search/feed endpoints. Covers fan-out orchestration (asyncio.gather, deadline propagation, partial results, async client reuse), external service protection (timeouts, circuit…

not rated 205 +3 24d ago A SkillSpector: pass 211 tokens original MIT

dockerfile-optimise

94

pproenca/dot-skills

Skill Claude CodeCodex

Dockerfile optimization guidelines from official Docker documentation. This skill should be used when writing, reviewing, or refactoring Dockerfiles to ensure optimal build time, image size, security, and robustness. Triggers on tasks involving Dockerfile creation, Docker image builds, container optimization…

not rated 205 +3 24d ago A SkillSpector: pass 73 tokens original MIT

docs-search

95

pproenca/dot-skills

Skill Claude CodeCodex

Library-documentation lookup methodology — API behavior, version-specific changes, idiomatic usage, or why production diverges from docs — independent of which library. Distills the generic navigation moves shared across libraries — classify the question before searching (changelog vs API reference vs idiom vs…

not rated 205 +3 24d ago A SkillSpector: pass 199 tokens original MIT

domain-architect

96

pproenca/dot-skills

Skill Claude Code

Discovers business domains in a Swift codebase by tracing what users can DO — not by reading folder names or architecture docs. Maps each domain's vertical slice (Types → Config → Repo → Service → Runtime → UI), identifies providers (external SDK bridges), and separates cross-cutting concerns. Produces a domain map…

not rated 205 +3 24d ago A SkillSpector: pass 196 tokens original MIT

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: