metaskillsregistryagentsUpdated 2026-07-15

Skill Registry

Executable skills live in category folders under skills/**/SKILL.md; wiki articles summarize skill families instead of mirroring every prompt. Source: scripts/generate-skill-registry.ts

Family Counts

Family Count Page
Agent Engineering Skills 42 Agent Engineering Skills
Frontend and Design Skills 39 Frontend and Design Skills
Browser Testing Skills 17 Browser Testing Skills
Google Workspace Skills 4 Google Workspace Skills
Firebase Skills 0 Firebase Skills
Azure Skills 1 Azure Skills
Cloud, Data, and Service Skills 41 Cloud, Data, and Service Skills
Security and Review Skills 41 Security and Review Skills
Agent Operations Skills 35 Agent Operations Skills
Writing and Content Skills 19 Writing and Content Skills
Media Generation Skills 7 Media Generation Skills

Executable Skills

Skill Category Origin Family Path Description
codebase-design engineering personal Agent Engineering Skills skills/engineering/codebase-design/SKILL.md Design deep modules and clean seams. Use when the user wants to improve architecture, design or compare module interfaces, decide where a seam belongs, make code more testable or AI-navigable, run a deletion test, or when another skill needs deep-module vocabulary. Adapted from mattpocock/skills.
column-aligned-fields engineering personal Agent Engineering Skills skills/engineering/column-aligned-fields/SKILL.md Enforce column-aligned inline comments on dataclass and enum fields. Use when writing or reviewing Python dataclasses, enums, TypedDicts, or any structured type with inline field comments.
comment engineering dedalus Agent Engineering Skills skills/engineering/comment/SKILL.md Write doc comments, module docs, and inline comments that follow Dedalus conventions per language. Loads the canonical style guides from the monorepo. Covers Rust, Python, Go, and TypeScript.
commit engineering personal Agent Engineering Skills skills/engineering/commit/SKILL.md Create a git commit with conventional commit format. Injects current git state automatically.
diagnosing-bugs engineering personal Agent Engineering Skills skills/engineering/diagnosing-bugs/SKILL.md Disciplined diagnosis loop for hard bugs, regressions, failures, flakes, and performance problems. Use when the user says "diagnose", "debug this", "this is broken", "why is this failing/slow", or reports a bug that needs a tight repro before fixing. Adapted from mattpocock/skills.
domain-modeling engineering personal Agent Engineering Skills skills/engineering/domain-modeling/SKILL.md Build and sharpen a project's domain model. Use when the user wants to pin down domain terminology, define a ubiquitous language, create or update CONTEXT.md / CONTEXT-MAP.md, record an ADR, resolve overloaded terms, or when another planning/code skill needs shared domain vocabulary. Adapted from mattpocock/skills.
fix-types engineering personal Agent Engineering Skills skills/engineering/fix-types/SKILL.md Audit code for loose types that allow semantically invalid values to compile. Introduces newtypes, checked casts, enums over booleans, and documents wire/DB discriminant contracts. Use when writing structs with bare primitives, reviewing database or protocol code, or when a function takes 2+ parameters of the same type.
generate-interface engineering personal Agent Engineering Skills skills/engineering/generate-interface/SKILL.md Define or refactor subsystem interfaces into small, explicit contracts with clear ownership, narrow scope, stable semantics, and README-first documentation. Use when designing a new API, collapsing ad hoc module boundaries into a few coherent interfaces, hardening internal contracts, or rewriting subsystem docs so engineers can understand the system by reading README.md files, docstrings, and code only.
greentext engineering personal Agent Engineering Skills skills/engineering/greentext/SKILL.md Explain system behavior, request flows, architecture, or implementation logic as short 4chan-style greentext lines. Use when the user asks for a step-by-step explanation, says "explain the logic", asks for "greentext", or wants terse sequential reasoning with each line starting with >.
grill-with-docs engineering personal Agent Engineering Skills skills/engineering/grill-with-docs/SKILL.md Two-stage grilling session for any non-trivial app, feature, or refactor — FIRST map the SHAPE of the design tree (breadth: enumerate the decision axes, branch points, and dependencies), THEN walk the load-bearing branches depth-first, escalating to prototypes, updating CONTEXT.md (ubiquitous language) and ADRs inline as decisions crystallise. Use this whenever the user wants to plan, stress-test, or align on a change before writing a PRD or code — even if they only say "let's think through this", "grill me", "help me plan X", "what am I missing", or "interrogate this idea". Pre-PRD phase of the 7-phase AI-development pipeline. Fork of Matt Pocock's grill-with-docs, with a breadth-first design-tree pass added.
hotfix-preview engineering personal Agent Engineering Skills skills/engineering/hotfix-preview/SKILL.md Cherry-pick a commit from dev onto preview without a PR. Use when you need to cherry-pick a fix to preview without a PR, or for urgent fixes that can't wait for a full promote cycle.
implement engineering personal Agent Engineering Skills skills/engineering/implement/SKILL.md Implement a bounded piece of work from a PRD, issue, or agent-ready ticket. Use when Kevin invokes /implement or passes a specific PRD/issue and wants execution through TDD/checks/review.
improve engineering personal Agent Engineering Skills skills/engineering/improve/SKILL.md Survey any codebase as a senior advisor and produce prioritized, self-contained implementation plans for OTHER models/agents to execute. Strictly read-only on source code — never implements, fixes, or refactors anything itself. Use when asked to audit a codebase, find improvement opportunities (bugs, security, performance, test coverage, tech debt, migrations, DX), suggest features or where to take the project next (roadmap, product direction), or generate handoff plans for another agent to implement.
improve-codebase-architecture engineering personal Agent Engineering Skills skills/engineering/improve-codebase-architecture/SKILL.md Scan a codebase for deepening opportunities, present a visual architecture report, then grill through the selected candidate. Use when Kevin invokes /improve-codebase-architecture, asks for architecture deepening, ball-of-mud cleanup, or agent-navigability improvements.
invariant-first-coding engineering personal Agent Engineering Skills skills/engineering/invariant-first-coding/SKILL.md Reason from proven invariants before coding. Use when reviewing fallback logic, narrowing types, handling conversions, deciding whether an error path is real or impossible, removing overdefensive code, or when the user questions whether code is being too theatrical, too hedged, or not fail-closed enough.
issue engineering personal Agent Engineering Skills skills/engineering/issue/SKILL.md Create a GitHub issue using the Dedalus issue templates (bug, feature, question). Injects branch and commit context automatically, prompts for Linear link. Use when creating a GitHub issue using Dedalus templates, or the user says "file an issue", "create issue", "open a bug", or "report a feature request".
kevin-engineering-flow engineering personal Agent Engineering Skills skills/engineering/kevin-engineering-flow/SKILL.md Router for Kevin's engineering flow. Use when Kevin invokes /kevin-engineering-flow, asks which engineering skill or flow fits, or wants a path through grill-with-docs, prototype, PRD, issues, implement, triage, and architecture improvement.
lamport engineering personal Agent Engineering Skills skills/engineering/lamport/SKILL.md Simplify a problem by replacing sequence reasoning with state invariants. Use when the user invokes /lamport, asks for Lamport-style reasoning, or when a task has many cases, phases, interactions, or edge conditions that are hard to reason about directly.
lerp engineering personal Agent Engineering Skills skills/engineering/lerp/SKILL.md Audit prose (comments, docs, READMEs, commit messages, PR descriptions) for jargon, unexplained acronyms, and assumed context. Rewrites for the least experienced reader. Use after writing docs, READMEs, or any prose that will be read by someone who did not write the code.
linear engineering personal Agent Engineering Skills skills/engineering/linear/SKILL.md Manage issues, projects & team workflows in Linear. Use when the user wants to read, create or updates tickets in Linear.
minimal-first-implementation engineering personal Agent Engineering Skills skills/engineering/minimal-first-implementation/SKILL.md Build the smallest correct version first. Name every case, implement only what has a real consumer, return typed errors for the rest. Use when designing new systems, extracting shared packages, or deciding how much to build before shipping.
perf engineering dedalus Agent Engineering Skills skills/engineering/perf/SKILL.md Discipline for performance investigations. Ramp up from cheap experiments to expensive ones. Profile before patching. Isolate hypotheses with standalone probes before touching production code. Numbers gate every decision. Use when the user says /perf, asks to speed up code, or asks why something is slow.
postmortem engineering personal Agent Engineering Skills skills/engineering/postmortem/SKILL.md Run a blameless postmortem for a production incident. Investigate with data, write a structured report, build verification queries, and track remediation. Use when something broke in production, money was lost, users were affected, or a security issue was exploited.
pr engineering personal Agent Engineering Skills skills/engineering/pr/SKILL.md Create or update a pull request using the target repository's own conventions, with a neutral fallback when the project has no template.
prototype engineering personal Agent Engineering Skills skills/engineering/prototype/SKILL.md Build a throwaway prototype to answer one design question. Use when the user asks to prototype, spike, explore a design, compare UI variants, test a state machine, or flesh out a PRD decision before committing to production code. Adapted from mattpocock/skills.
recent-code-bugfix engineering personal Agent Engineering Skills skills/engineering/recent-code-bugfix/SKILL.md Find and fix a bug introduced by the current author within the last week in the current working directory. Use when a user wants a proactive bugfix from their recent changes, when the prompt is empty, or when asked to triage/fix issues caused by their recent commits. Root cause must map directly to the author's own changes.
refine engineering personal Agent Engineering Skills skills/engineering/refine/SKILL.md Compound quality pass over recently changed code. Orchestrates seven standalone skills in sequence: comment, lerp, style, fix-types, interface, test-invariants, exemplar-audit. Each pass is independently invokable. Use after any feature or refactor lands and before the final commit.
resolving-merge-conflicts engineering personal Agent Engineering Skills skills/engineering/resolving-merge-conflicts/SKILL.md Resolve an in-progress git merge or rebase conflict without discarding work. Use when conflict markers, MERGE_HEAD, rebase state, or "resolve conflicts" appears.
rtfm engineering personal Agent Engineering Skills skills/engineering/rtfm/SKILL.md Verify claims against primary sources before writing code or docs. Read the actual API, run the actual command, check the actual docs. Do not guess. Do not assume. Do not ship until verified.
simple engineering personal Agent Engineering Skills skills/engineering/simple/SKILL.md Frame any technical answer as a reproducible five-part diagnosis. Use when the user asks for a root-cause explanation, a fix proposal, a debugging write-up, or says "explain why", "what's the problem", "propose a fix", or invokes /simple. Forces the answer into: problem, evidence, proposal, mechanism, test methodology.
state-machine-dfa engineering personal Agent Engineering Skills skills/engineering/state-machine-dfa/SKILL.md Document state machines with mermaid diagrams and DFA transition files. Use when writing, reviewing, or adding state-driven logic to modules that have sequential phase transitions, lifecycle management, or protocol handshakes.
tdd engineering personal Agent Engineering Skills skills/engineering/tdd/SKILL.md Test-driven development with red-green-refactor. Use when the user wants test-first implementation, asks for TDD, mentions red-green-refactor, wants integration tests, or when a feature/bug should be built as thin vertical slices with public-interface tests. Adapted from mattpocock/skills.
teacher-mode engineering personal Agent Engineering Skills skills/engineering/teacher-mode/SKILL.md Act as a wise, effective teacher who makes sure the human deeply understands the work an agent just did, before the session ends. Runs incrementally with a running checklist, has the human restate their understanding first, drills into the whys (plus what/how), supports eli5 / eli14 / elii (explain like an intern), quizzes with AskUserQuestion (shuffled answer order, hidden until submitted), shows code or the debugger as evidence, and gates completion on demonstrated mastery. Use when the user says "teacher mode", "/teacher", "teach me this session", "make sure I understand", "help me understand what you built/changed", "walk me through what you did", "quiz me", "eli5 / eli14 / elii", "stay in the loop", or after a substantial change when the human wants to actually understand it rather than rubber-stamp it.
tests engineering personal Agent Engineering Skills skills/engineering/tests/SKILL.md Write tests that prove the right invariant at the smallest honest layer. Use when adding, reviewing, deleting, or refactoring tests; choosing test boundaries; turning bug reproductions into invariant tests; or deciding whether coverage, fuzzing, property tests, unit tests, integration tests, or end-to-end tests are appropriate.
to-issues engineering personal Agent Engineering Skills skills/engineering/to-issues/SKILL.md Break a PRD, plan, or spec into independently grabbable vertical-slice issues/tickets. Use when the user says "/to-tickets", "turn this into issues", "break this down", "make tickets", "create implementation tasks", or wants AFK/HITL agent-ready work packets. Adapted from mattpocock/skills.
to-prd engineering personal Agent Engineering Skills skills/engineering/to-prd/SKILL.md Turn the current conversation, notes, or prototype findings into a PRD/spec without re-interviewing. Use when the user says "/to-spec", "write a PRD", "turn this into a spec", "make this a product brief", "capture the plan", or when a planning session needs a durable product spec. Adapted from mattpocock/skills.
torvalds engineering personal Agent Engineering Skills skills/engineering/torvalds/SKILL.md Design engineering principles for removing special cases. Use when designing new systems, extracting shared packages, refactoring conditional logic, deciding whether to add a flag or change the interface, or when the user invokes "good taste" or asks for a cleaner algorithm.
triage engineering personal Agent Engineering Skills skills/engineering/triage/SKILL.md Triage issues, bug reports, support threads, or external PRs into clear labels, verification state, and agent-ready briefs. Use when the user says "/triage", "triage these issues", "sort my backlog", "verify these reports", "label these tickets", or asks to turn messy reports into actionable work. Adapted from mattpocock/skills.
tsdown engineering skills-sh Agent Engineering Skills skills/engineering/tsdown/SKILL.md Bundle TypeScript and JavaScript libraries with blazing-fast speed powered by Rolldown. Use when building libraries, generating type declarations, bundling for multiple formats, or migrating from tsup.
update-docs engineering dedalus Agent Engineering Skills skills/engineering/update-docs/SKILL.md Update documentation after code changes. Covers source-level docs (module docs, docstrings, inline comments) and docs-site pages. Use after any code change to keep documentation in sync with reality.
visual-plan engineering personal Agent Engineering Skills skills/engineering/visual-plan/SKILL.md Turn a planned product, UI, architecture, or agent workflow change into a visual, inspectable plan with flow maps, diagrams, file maps, storyboard states, risks, and verification gates. Use when Kevin says "visual plan", "/visual-plan", "storyboard this flow", "make the plan inspectable", "diagram the plan", or asks for a BuilderIO-style visual plan before implementation.
zero-tech-debt engineering personal Agent Engineering Skills skills/engineering/zero-tech-debt/SKILL.md Rework a recent change as if the intended UX and architecture existed from day one, deleting compatibility cruft and accidental complexity. Use when Kevin invokes /zero-tech-debt, asks to clean AI-generated tech debt, says the code feels patched-on, or wants a feature refactored toward the final product surface rather than preserved history.
agent-activity-log productivity personal Agent Operations Skills skills/productivity/agent-activity-log/SKILL.md Bootstrap and maintain a persistent agent memory file (memory.md) in any project. Use when setting up a new project for agent-assisted development, when the user says "add memory", "activity log", "agent memory", "track changes", "memory.md", "set up agent logging", or when starting work on any project that doesn't already have a memory.md. Also triggers on "what did I do last session" or "what's the history of this project.
agent-docs productivity personal Agent Operations Skills skills/productivity/agent-docs/SKILL.md Enroll and maintain the Agent-Docs Mesh on any Kevin project — layered AGENTS.md + per-dir SKILL.md, auto-blocks, Graphify repo-graph awareness, docs-doctor. Use when entering a new repo, starting work on loop/Dedalus/any project, "enroll this repo", "agent docs", "scaffold AGENTS.md", "docs-doctor", "agent-docs mesh", "use graphify with projects", after substantive edits to refresh machine facts, or when Kevin says keep agent documentation current.
agent-eval-library productivity personal Agent Operations Skills skills/productivity/agent-eval-library/SKILL.md Build, run, and evolve Kevin's agent self-evaluation library. Use when the user says "benchmark yourself", "self improve", "agent eval library", "evaluate the agent", "make the judge harder", "Red Queen", "Gödel Machine", "eval the loop", or asks to turn an agent failure into a benchmark, receipt, rubric, or regression case.
agent-iteration-loop productivity personal Agent Operations Skills skills/productivity/agent-iteration-loop/SKILL.md Disciplined end-to-end loop for agent-led implementation and testing: isolate work in a git worktree, read before editing, make the minimal correct change, validate empirically (typecheck, lint, format, targeted tests, build), reuse or start live servers and verify the UI in a real browser, run review skills and resolve Bugbot/Greptile/CI findings, then ship small well-documented PRs without pushing or touching prod/growth surfaces unasked. Use when taking a feature or fix from implementation through validation, review, and follow-up; when hardening, reviewing, consolidating, or splitting PRs; or whenever the user wants work driven and verified rather than just written.
agent-reach productivity personal Agent Operations Skills skills/productivity/agent-reach/SKILL.md Internet access for AI agents — read and search Twitter/X, Reddit, YouTube, GitHub, LinkedIn, RSS, and web pages. Zero API fees, CLI-based, fully local. Use when the user asks to research a topic across the internet, fetch live social media posts, get YouTube transcripts, search Reddit threads, read web pages, monitor RSS feeds, or when the user says "search Twitter", "what are people saying about", "research this topic", "get the latest on", "read this tweet", "YouTube transcript", "Reddit discussion", or "check GitHub repos for". Based on Panniantong/Agent-Reach (16K+ GitHub stars).
agentcore productivity personal Agent Operations Skills skills/productivity/agentcore/SKILL.md Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include "use agentcore", "run on AWS", "cloud browser with AWS", "bedrock browser", "agentcore session", or any task requiring AWS-hosted browser automation.
babysit productivity personal Agent Operations Skills skills/productivity/babysit/SKILL.md Keep a PR merge-ready by triaging comments, resolving clear conflicts, and fixing CI in a loop.
canvas productivity personal Agent Operations Skills skills/productivity/canvas/SKILL.md A Cursor Canvas is a live React app that the user can open beside the chat. You MUST use a canvas when the agent produces a standalone analytical artifact — quantitative analyses, billing investigations, security audits, architecture reviews, data-heavy content, timelines, charts, tables, interactive explorations, repeatable tools, or any response that benefits from visual layout. Especially prefer a canvas when presenting results from MCP tools (Datadog, Databricks, Linear, Sentry, Slack, etc.) where the data is the deliverable — render it in a rich canvas rather than dumping it into a markdown table or code block. If you catch yourself about to write a markdown table, stop and use a canvas instead. You MUST also read this skill whenever you create, edit, or debug any .canvas.tsx file.
cleanup-terminals-browsers productivity personal Agent Operations Skills skills/productivity/cleanup-terminals-browsers/SKILL.md Run the agent process tracking, audit, and cleanup script, including the portable Agent Broom package. Use before starting another localhost/dev server, while keeping track of what is running, before ending a turn that spawned long-runners, when CPU/memory is high, disk is low, or when the user says "Agent Broom", "agent-broom", "what is running", "track processes", "audit localhost", "high CPU", "clean up terminals/processes", "kill stray processes", "orphaned MCP", "devclean", "deep cleanup", "optimize crash reporters", "too many browsers", "localhosts out of control", "clear turbo/build cache", or "free disk space".
codex-automation-admin productivity personal Agent Operations Skills skills/productivity/codex-automation-admin/SKILL.md Manage Codex automations (list, create, pause, delete) using the sqlite database. Use when asked to create, pause, list, end, or modify Codex automations, or when referencing the Codex automation schema.
commit-and-push productivity personal Agent Operations Skills skills/productivity/commit-and-push/SKILL.md Stage, commit, and push changes without opening a PR. Use when the user says "commit and push", "commit these to a new branch", "push this branch", "push everything", or wants a branch + commit summary but does not want PR creation. ALWAYS runs a pre-commit interview first — branch target, scope, mixed-agent changes, wiki housekeeping, skill gaps. Distinct from yeet, which owns commit + push + PR.
conductor productivity personal Agent Operations Skills skills/productivity/conductor/SKILL.md Build, configure, and troubleshoot Conductor workspaces, repository setup, settings.toml files, run scripts, files-to-copy behavior, MCP setup, agent harnesses, and review workflows. Use when helping someone set up or operate Conductor.
create-hook productivity personal Agent Operations Skills skills/productivity/create-hook/SKILL.md Create Cursor hooks. Use when you want to create a hook, write hooks.json, add hook scripts, or automate behavior around agent events.
create-rule productivity personal Agent Operations Skills skills/productivity/create-rule/SKILL.md Create Cursor rules for persistent AI guidance. Use when you want to create a rule, add coding standards, set up project conventions, configure file-specific patterns, create RULE.md files, or asks about .cursor/rules/ or AGENTS.md.
create-skill productivity personal Agent Operations Skills skills/productivity/create-skill/SKILL.md Create Cursor Agent Skills. Use when authoring a new skill or asking about SKILL.md structure.
create-subagent productivity personal Agent Operations Skills skills/productivity/create-subagent/SKILL.md Create custom subagents for specialized AI tasks. Use when you want to create a new type of subagent, set up task-specific agents, configure code reviewers, debuggers, or domain-specific assistants with custom prompts.
find-skills productivity personal Agent Operations Skills skills/productivity/find-skills/SKILL.md Discover and install agent skills from skills.sh — the definitive open skills registry. Use when the user asks "how do I do X", "find a skill for X", "is there a skill for X", wants to extend agent capabilities, or when a task might benefit from a specialized skill you don't already have. Based on vercel-labs/skills (900K+ weekly installs).
handoff productivity personal Agent Operations Skills skills/productivity/handoff/SKILL.md Clipboard-ready handoff prompt for another agent to investigate or continue a task.
hermes-operator-stack productivity unknown Agent Operations Skills skills/productivity/hermes-operator-stack/SKILL.md Audit and configure Kevin's Hermes Mac Mini operator stack: Hermes memory providers, Hindsight, Honcho, Telegram/Discord/WhatsApp gateway, launchd or Hermes cron jobs, agent-browser browser automation, ACP/SSH coding workers, Obsidian/qmd writeback, and information-intake monitors. Use when the user asks about Hermes configuration, personal agent OS, Mac Mini agent stack, Hindsight, Honcho, Hermes Desktop, Telegram gateway, launchd monitors, agent-browser enforcement, software-factory loops, or persistent agent memory.
imessage-to-people productivity personal Agent Operations Skills skills/productivity/imessage-to-people/SKILL.md Sync iMessage contacts into wiki person pages following STYLE.md. Use when Kevin says "sync iMessage", "update people pages", "add people from messages", "who am I texting most", or wants to bring person pages up to date with recent contacts. Reads ~/Library/Messages/chat.db, ranks 1:1 contacts, resolves names via AddressBook, drafts pages preserving Kevin's voice.
learn-from-projects productivity personal Agent Operations Skills skills/productivity/learn-from-projects/SKILL.md Mine recent agent transcripts across ALL of Kevin's projects (not just the wiki) into candidate wiki learnings, behind a candidate→codify promotion gate. Use when Kevin says "harvest learnings", "what have I learned", "mine my sessions", "cross-project learnings", "pour learnings into the brain", or when the cross-project-learning automation runs. Turns the second brain into a system that compounds from every repo, every agent.
loop productivity cursor-plugin Agent Operations Skills skills/productivity/loop/SKILL.md Run a prompt or skill in this session on a recurring or variable interval (e.g. /loop 5m /foo).
loop-me productivity personal Agent Operations Skills skills/productivity/loop-me/SKILL.md Interview Kevin about recurring day-to-day work and turn it into agent-delegable workflow specs. Use when Kevin says "/loop-me", "loop me", "find work to delegate to AI", "what should I automate", "what day-to-day work can agents take over", or asks to design recurring workflows. Adapted from mattpocock/skills@loop-me.
migrate-to-skills productivity personal Agent Operations Skills skills/productivity/migrate-to-skills/SKILL.md Convert 'Applied intelligently' Cursor rules (.cursor/rules/.mdc) and slash commands (.cursor/commands/.md) to Agent Skills format (.cursor/skills/). Use when you want to migrate rules or commands to skills, convert .mdc rules to SKILL.md format, or consolidate commands into the skills directory.
onboard productivity cursor-plugin Agent Operations Skills skills/productivity/onboard/SKILL.md Use /onboard for a focused Cursor onboarding flow that learns basic preferences, picks a first goal, and routes the user to the right next action.
pdf misc codex-plugin Agent Operations Skills skills/misc/pdf/SKILL.md Read, create, inspect, render, and verify PDF files where visual layout matters. Use Poppler rendering plus Python tools such as reportlab, pdfplumber, and pypdf for generation and extraction.
portless engineering unknown Agent Operations Skills skills/engineering/portless/SKILL.md Set up and use portless for named local dev server URLs (e.g. https://myapp.localhost instead of http://localhost:3000). Use when integrating portless into a project, configuring dev server names, setting up the local proxy, working with .localhost domains, or troubleshooting port/proxy issues.
project-doctor productivity personal Agent Operations Skills skills/productivity/project-doctor/SKILL.md Scaffold a project's own parameterized health "doctor" that scores 0-100 and is driven to a perfect 100, following the doctor-pattern methodology (score on unique rules, fix loop, ratcheting --min-score gate). Use when starting or hardening any project and the user says "add a doctor", "project doctor", "health check for this repo", "create our own doctor", "seek 100", "score this codebase", or when a failure pattern has repeated 3+ times and should become an enforced check. Every Kevin project should have one.
setup-kevin-engineering-flow productivity personal Agent Operations Skills skills/productivity/setup-kevin-engineering-flow/SKILL.md Configure a repo for Kevin's engineering flow: issue tracker, triage labels, domain docs, and AGENTS.md/agent-docs integration. Run once before first use of kevin-engineering-flow, triage, to-prd, to-issues, implement, or improve-codebase-architecture in a repo.
sites-building engineering codex-plugin Agent Operations Skills skills/engineering/sites-building/SKILL.md Use Sites to build websites, including landing pages, portfolios, dashboards, portals, trackers, hubs, and internal tools. Always use Sites when the project contains .openai/hosting.json.
skill-creator productivity personal Agent Operations Skills skills/productivity/skill-creator/SKILL.md Create, test, prune, and iteratively improve agent skills with structured evaluation. Use when creating a new skill, turning a workflow into a skill, improving/tightening an existing skill, pruning no-op instructions, reducing skill token cost, or when the user says "create a skill", "make a skill", "turn this into a skill", "skill for X", "improve this skill", "tighten this skill", or "remove no-ops." Based on anthropics/skills plus Matt Pocock's writing-great-skills/no-op pruning guidance. Wiki-aware — always checks the wiki before creating skills and updates the wiki after.
understand productivity personal Agent Operations Skills skills/productivity/understand/SKILL.md Use when the human wants to deeply understand a session, PR, code change, bug, architecture, or decision. Teaches incrementally, keeps a running Markdown checklist, asks the human to restate their model first, fills gaps, and quizzes before moving on.
update-cursor-settings productivity personal Agent Operations Skills skills/productivity/update-cursor-settings/SKILL.md Modify Cursor/VSCode user settings in settings.json. Use when you want to change editor settings, preferences, configuration, themes, font size, tab size, format on save, auto save, keybindings, or any settings.json values.
wiki-doctor productivity personal Agent Operations Skills skills/productivity/wiki-doctor/SKILL.md Run the wiki system doctor to validate wiki structure, skills, rules, automations, and config sync. Use when the user says "doctor", "audit", "health check", "validate wiki", "check my system", "run doctor", or when you suspect something is misconfigured after a large edit session.
x-bookmark-absorb productivity personal Agent Operations Skills skills/productivity/x-bookmark-absorb/SKILL.md Deep absorption of X bookmarks into the wiki graph. Goes beyond hub-page entries to create dedicated pages, cross-references, resolver updates, capsule updates, and index entries. Use when Kevin says "absorb bookmarks", "process bookmarks", "bookmark absorption", "sync bookmarks to wiki", "research bookmark replies/artifacts/images", "review X bookmark media one by one", "parse bookmark screenshots", or asks for a daily X bookmark automation. Also triggers when running the source-compile automation on x-bookmarks data and after any ft sync / sync-x-bookmarks.sh run.
azure engineering personal Azure Skills skills/engineering/azure/SKILL.md Use for Azure work: app deployment, azd, Bicep, Terraform on Azure, resource lookup, diagnostics, cost, compliance, RBAC, storage, messaging, Kusto, Kubernetes, AI Gateway, Foundry, hosted Copilot SDK, App Insights, Entra, migration, upgrade, and validation.
agent-browser engineering personal Browser Testing Skills skills/engineering/agent-browser/SKILL.md Default browser automation surface for Kevin's agents. Use when automating browsers, opening sites, scraping pages, filling forms, taking screenshots, testing UIs, extracting data, checking logged-in Chrome sessions, debugging localhost, validating frontend behavior, inspecting React/Web Vitals, or when the user asks for Playwright/Puppeteer-style browser interaction without explicitly requesting committed test files. Use Playwright only for regression tests or existing test suites.
babylonjs-engine engineering personal Browser Testing Skills skills/engineering/babylonjs-engine/SKILL.md Comprehensive skill for Babylon.js 3D web rendering engine. Use this skill when building real-time 3D experiences, browser-based games, interactive visualizations, or immersive web applications. Triggers on tasks involving Babylon.js, 3D scenes, WebGL/WebGPU rendering, entity-component systems, physics simulations, PBR materials, shadow mapping, or 3D model loading. Alternative to Three.js with built-in editor integration and game engine features.
beta-dx-walk engineering personal Browser Testing Skills skills/engineering/beta-dx-walk/SKILL.md Agent-led beta DX/UX readiness walk. Walk a product's critical user journeys as a skeptical first-time user and treat friction as a bug: anything that makes the user pause, guess, reread, or ask for help is a logged issue. At every step test two things - can the user understand what to do next, and can they recover when something fails. Triage each finding as blocks-beta, confuses-beta, or polish, with tried / expected / happened plus evidence, and end with a ship-or-hold readiness verdict. Use for beta readiness, onboarding and first-run QA, pre-launch UX gates, "walk the beta path", "is this ready for users", or "treat friction as a bug". Project-agnostic.
browser-use engineering personal Browser Testing Skills skills/engineering/browser-use/SKILL.md Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, or extract information from web pages.
core-web-vitals engineering personal Browser Testing Skills skills/engineering/core-web-vitals/SKILL.md Optimize Core Web Vitals (LCP, INP, CLS) for better page experience and search ranking. Use when asked to "improve Core Web Vitals", "fix LCP", "reduce CLS", "optimize INP", "page experience optimization", or "fix layout shifts".
dcs-test engineering dedalus Browser Testing Skills skills/engineering/dcs-test/SKILL.md Run DCS test profiles against controlplane (Go), host-agent (Rust), storage-daemon, or live clusters. Use when testing DCS changes locally or triggering CI test suites.
dogfood engineering personal Browser Testing Skills skills/engineering/dogfood/SKILL.md Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to "dogfood", "QA", "exploratory test", "find issues", "bug hunt", "test this app/site/platform", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.
electron engineering personal Browser Testing Skills skills/engineering/electron/SKILL.md Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include "automate Slack app", "control VS Code", "interact with Discord app", "test this Electron app", "connect to desktop app", or any task requiring automation of a native Electron application.
gstack-qa engineering personal Browser Testing Skills skills/engineering/gstack-qa/SKILL.md QA lead with real browser testing. Tests your app, finds bugs, fixes them with atomic commits, generates regression tests. Use when the user says "QA", "test this", "find bugs", "exploratory test", "QA this", or "test the app".
playcanvas-engine engineering personal Browser Testing Skills skills/engineering/playcanvas-engine/SKILL.md Lightweight WebGL/WebGPU game engine with entity-component architecture and visual editor integration. Use this skill when building browser-based games, interactive 3D applications, or performance-critical web experiences. Triggers on tasks involving PlayCanvas, entity-component systems, game engine development, WebGL games, 3D browser applications, editor-first workflows, or real-time 3D rendering. Alternative to Three.js with game-specific features and integrated development environment.
playwright engineering personal Browser Testing Skills skills/engineering/playwright/SKILL.md Use for committed Playwright regression tests, existing Playwright suites, CI browser gates, traces for reproducible failures, and explicit user requests to write or run Playwright test files. Do not use for ordinary agent browser interaction, scraping, form filling, screenshots, or localhost visual QA; route those to agent-browser unless the repo's existing test suite requires Playwright.
screenshot engineering personal Browser Testing Skills skills/engineering/screenshot/SKILL.md Use when the user explicitly asks for a desktop or system screenshot (full screen, specific app or window, or a pixel region), or when tool-specific capture capabilities are unavailable and an OS-level capture is needed.
spline-interactive engineering personal Browser Testing Skills skills/engineering/spline-interactive/SKILL.md Browser-based 3D design tool with visual editor, animation, and web export. Use this skill when creating 3D scenes without code, designing interactive web experiences, prototyping 3D UI, exporting to React/web, or building designer-friendly 3D content. Triggers on tasks involving Spline, no-code 3D, visual 3D editor, 3D animation, state-based interactions, React Spline integration, or scene export. Alternative to Three.js for designers who prefer visual tools over code.
vitest engineering skills-sh Browser Testing Skills skills/engineering/vitest/SKILL.md Vitest fast unit testing framework powered by Vite with Jest-compatible API. Use when writing tests, mocking, configuring coverage, or working with test filtering and fixtures.
vue engineering skills-sh Browser Testing Skills skills/engineering/vue/SKILL.md Use for Vue ecosystem work: Vue, Vue Router, Vue testing, VueUse, Pinia, Nuxt, Nitro, and Slidev. Confirm installed versions and project conventions before applying examples.
webapp-testing engineering personal Browser Testing Skills skills/engineering/webapp-testing/SKILL.md Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
webwright engineering external Browser Testing Skills skills/engineering/webwright/SKILL.md Solve a user-specified web task code-as-action style by driving a local Playwright browser through one bash command at a time, saving screenshots and an action log into final_runs/run_<id>/, and visually verifying the result. Use when the user asks to automate a web task (search, filter, form-fill, multi-step flow, data extraction) and wants reusable scripts plus screenshot evidence rather than a one-shot answer.
ai-sdk engineering personal Cloud, Data, and Service Skills skills/engineering/ai-sdk/SKILL.md Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, embed, tools, WorkflowAgent, Agent, HarnessAgent, useChat, or useCompletion, (2) Want to build AI agents, chatbots, RAG systems, durable workflows, or text generation features, (3) Have questions about AI providers, streaming, tool calling, structured output, embeddings, reasoning, approvals, telemetry, MCP Apps, file/skill uploads, or AI SDK testing. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat", "WorkflowAgent", "AI SDK test".
astro engineering skills-sh Cloud, Data, and Service Skills skills/engineering/astro/SKILL.md Skill for building with the Astro web framework. Helps create Astro components and pages, configure SSR adapters, set up content collections, deploy static sites, and manage project structure and CLI commands. Use when the user needs to work with Astro, mentions .astro files, asks about static site generation (SSG), islands architecture, content collections, or deploying an Astro project.
aws engineering personal Cloud, Data, and Service Skills skills/engineering/aws/SKILL.md Use for AWS work: IAM, CDK, CloudFormation, Lambda, serverless, S3, RDS, VPC, Route 53, CloudFront, MSK, Flink, data lakes, Bedrock, cost, observability, security, and SDK usage. Load folded AWS references only for the named service or failure mode.
ci-cd-best-practices engineering dedalus Cloud, Data, and Service Skills skills/engineering/ci-cd-best-practices/SKILL.md Apply Dedalus CI/CD workflow rules for runner placement, Docker build verification, artifact publication, and self-hosted runner orchestration. Use when editing GitHub Actions workflows, Docker build pipelines, deploy jobs, Terraform/ECS/Flux workflows, or self-hosted runner automation.
clerk engineering cursor-plugin Cloud, Data, and Service Skills skills/engineering/clerk/SKILL.md Use for Clerk authentication work: setup, users, sessions, middleware, backend API, organizations, billing, webhooks, testing, custom UI, mobile auth, and framework integrations for Next.js, React, Astro, TanStack, Vue, Nuxt, Expo, Android, Swift, React Router, and Chrome extensions.
cloudflare engineering personal Cloud, Data, and Service Skills skills/engineering/cloudflare/SKILL.md Use for Cloudflare work: Workers, Wrangler, Durable Objects, Agents SDK, Sandbox SDK, Turnstile, email service, Cloudflare One, migrations, web performance, tunnels, and Workers best-practice review.
computer-use engineering codex-plugin Cloud, Data, and Service Skills skills/engineering/computer-use/SKILL.md Control local Mac apps through Computer Use. Use for tasks that require reading or operating app UI by clicking, typing, scrolling, dragging, pressing keys, or setting values.
control-in-app-browser engineering codex-plugin Cloud, Data, and Service Skills skills/engineering/control-in-app-browser/SKILL.md Control the in-app Browser. Use to open, navigate, inspect, test, click, type, screenshot, or verify local targets such as localhost, 127.0.0.1, ::1, file://, the current in-app browser tab, and websites shown side by side inside Codex.
create-auth-skill engineering personal Cloud, Data, and Service Skills skills/engineering/create-auth-skill/SKILL.md Scaffold and implement authentication in TypeScript/JavaScript apps using Better Auth. Detect frameworks, configure database adapters, set up route handlers, add OAuth providers, and create auth UI pages. Use when users want to add login, sign-up, or authentication to a new or existing project with Better Auth.
daily-bugfix-check engineering personal Cloud, Data, and Service Skills skills/engineering/daily-bugfix-check/SKILL.md Check the current author's commits from the last 24 hours and proactively find and fix any bugs they introduced. Use when the user asks for a daily bugfix check, wants to review today's commits for issues, or asks to "check my recent code for bugs." Combines commit review with the recent-code-bugfix workflow.
db engineering dedalus Cloud, Data, and Service Skills skills/engineering/db/SKILL.md Run read-only SQL queries against Supabase databases (local or remote). Use when inspecting schema, debugging data, checking migrations, or answering questions about database state.
db-write engineering dedalus Cloud, Data, and Service Skills skills/engineering/db-write/SKILL.md Run mutating SQL (INSERT, UPDATE, DELETE, DDL) against Supabase databases. Requires explicit user invocation. Use for migrations, seed data, schema changes, or data fixes.
firebase engineering personal Cloud, Data, and Service Skills skills/engineering/firebase/SKILL.md Use for Firebase work: CLI setup, project selection, Auth, Firestore, Hosting, Security Rules, Data Connect, AI Logic, App Hosting, Crashlytics, Remote Config, and Firebase MCP or firebase-tools workflows.
font-switcher-dev-tool engineering personal Cloud, Data, and Service Skills skills/engineering/font-switcher-dev-tool/SKILL.md Build a floating font selector dev tool for any Next.js app. Copies font files, generates @font-face CSS, creates a FontProvider context with localStorage persistence, and builds a floating selector UI. Use when evaluating candidate typefaces across an app, adding font preview capability, or when the user says "font switcher", "try fonts", "compare fonts", or "add a font selector.
gh-address-comments engineering personal Cloud, Data, and Service Skills skills/engineering/gh-address-comments/SKILL.md Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in.
hetzner engineering personal Cloud, Data, and Service Skills skills/engineering/hetzner/SKILL.md Provision, audit, or operate Hetzner Cloud servers, networks, firewalls, volumes, snapshots, SSH keys, and remote validation boxes. Use when a task mentions Hetzner, hcloud, dedicated servers, cheap EU compute, or brokered remote machines.
import-spinner-frames engineering personal Cloud, Data, and Service Skills skills/engineering/import-spinner-frames/SKILL.md Extract animation frame data from upstream Unicode spinner libraries into the wiki's runtime-agnostic spinners-catalog.json. Use when Kevin asks to "import spinners from X", "add more spinners", "pull the frames from this repo", evaluates a new spinner library, wants to expand the loading-screens catalog, or asks "should I swap unicode-animations for X?". Handles the full flow: 1v1 evaluation vs the canonical library, shallow clone, frame extraction from TSX/JS component files, JSON normalization, and wiki doc updates.
kafka engineering personal Cloud, Data, and Service Skills skills/engineering/kafka/SKILL.md Design, implement, or review Apache Kafka-compatible event streaming. Use for Kafka, Redpanda, Confluent Cloud, AWS MSK, topics, partitions, consumer groups, schemas, retention, lag, producers, consumers, stream processing, or event-driven architecture.
liteparse engineering external Cloud, Data, and Service Skills skills/engineering/liteparse/SKILL.md Use when a task involves a document file (PDF, DOCX, PPTX, XLSX, or image) and the agent needs to read it, answer questions about contents, or extract text, tables, or specific values. Provides fast, local, model-free extraction via the lit CLI with low-cost search patterns.
nextjs engineering codex-plugin Cloud, Data, and Service Skills skills/engineering/nextjs/SKILL.md Use for Next.js work: App Router, Server Components, Server Actions, Cache Components, middleware/proxy, data fetching, rendering strategy, upgrades, next-forge, performance, and Vercel deployment behavior.
posthog engineering personal Cloud, Data, and Service Skills skills/engineering/posthog/SKILL.md Use for PostHog work: product analytics, feature flags, experiments, session replay, heatmaps, surveys, error tracking, logs, LLM analytics, data warehouse syncs, endpoints, signals, alerts, and metric investigation.
react-three-fiber engineering personal Cloud, Data, and Service Skills skills/engineering/react-three-fiber/SKILL.md Build declarative 3D scenes with React Three Fiber (R3F) - a React renderer for Three.js. Use when building interactive 3D experiences in React applications with component-based architecture, state management, and reusable abstractions. Ideal for product configurators, portfolios, games, data visualization, and immersive web experiences.
rive-interactive engineering personal Cloud, Data, and Service Skills skills/engineering/rive-interactive/SKILL.md State machine-based vector animation with runtime interactivity and web integration. Use this skill when creating interactive animations, state-driven UI, animated components with logic, or designer-created animations with runtime control. Triggers on tasks involving Rive, state machines, interactive vector animations, animation with input handling, ViewModel data binding, or React Rive integration. Alternative to Lottie for animations requiring state machines and two-way interactivity.
sdk engineering cursor-plugin Cloud, Data, and Service Skills skills/engineering/sdk/SKILL.md Guide users building apps, scripts, CI pipelines, or automations on top of the Cursor SDK - TypeScript (@cursor/sdk) or Python (cursor-sdk / cursor_sdk). Use when the user mentions integrating, installing, or writing code against the Cursor SDK; says Agent.create, Agent.prompt, Agent.resume, agent.send, run.stream, run.messages, CursorAgentError, @cursor/sdk, cursor-sdk, or cursor_sdk; asks to run Cursor agents programmatically from a script, CI/CD pipeline, GitHub Action, backend service, or other code outside the Cursor IDE; wants to pick between local and cloud runtime, configure MCP servers for an SDK agent, or handle streaming, cancellation, or errors; or is wiring Cursor into an automation, bot, or REST /v1/agents migration. Use eagerly rather than answering from memory; the SDK surface evolves and this skill is the source of truth for the external packages.
sentry engineering personal Cloud, Data, and Service Skills skills/engineering/sentry/SKILL.md Use for Sentry work: SDK setup and upgrades across web, Node, Next.js, React, TanStack, Cloudflare, Python, Go, Ruby, PHP, .NET, mobile, issue triage, alerts, OpenTelemetry, AI monitoring, code review, and workflow automation.
service-cli-registry engineering personal Cloud, Data, and Service Skills skills/engineering/service-cli-registry/SKILL.md Route SaaS and infrastructure tasks to the right first-party CLI, MCP, or installed skill. Use when a task mentions GitLab, AWS, Google Cloud, Docker, Kubernetes, Terraform, Sentry, Datadog, Snowflake, Databricks, Auth0, Twilio, Contentful, Sanity, Algolia, or any SaaS/infra product not already covered by a more specific skill. Enforces auth/context checks, read-only-first exploration, dry-run/plan/preview before mutations, and capability-harvest lookup for unknown services.
sites-hosting engineering codex-plugin Cloud, Data, and Service Skills skills/engineering/sites-hosting/SKILL.md Host websites with Sites. Always use after sites-building, and use for website publishing, deployment, hosting management, or projects containing .openai/hosting.json.
slack engineering personal Cloud, Data, and Service Skills skills/engineering/slack/SKILL.md Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include "check my Slack", "what channels have unreads", "send a message to", "search Slack for", "extract from Slack", "find who said", or any task requiring programmatic Slack interaction.
statusline engineering personal Cloud, Data, and Service Skills skills/engineering/statusline/SKILL.md Configure a custom status line in the CLI. Use when the user mentions status line, statusline, statusLine, CLI status bar, prompt footer customization, or wants to add session context above the prompt.
stripe engineering dedalus Cloud, Data, and Service Skills skills/engineering/stripe/SKILL.md Use for Stripe work: customers, payments, subscriptions, Checkout, refunds, events, products, prices, webhook hardening, API directory/project workflows, Stripe upgrades, and account-safe read/write operations. Writes require test-mode keys unless the user explicitly approves production mutation.
supabase engineering personal Cloud, Data, and Service Skills skills/engineering/supabase/SKILL.md Use for Supabase work: Postgres, Auth, RLS, migrations, Edge Functions, Storage, Realtime, Vectors, Cron, Queues, SSR clients, CLI, MCP, security review, schema drift, and production data changes.
tanstack engineering personal Cloud, Data, and Service Skills skills/engineering/tanstack/SKILL.md Use for TanStack library work: Query, Router, Start, Table, Form, Store, DB, Virtual, Pacer, Ranger, Devtools, Config, CLI, AI, and integration best practices. Verify installed package versions before applying examples.
terraform engineering skills-sh Cloud, Data, and Service Skills skills/engineering/terraform/SKILL.md Use for Terraform/OpenTofu work: modules, providers, tests, stacks, imports, refactors, acceptance tests, style, Azure verified modules, generated configuration, state safety, CI plans, and provider development.
test-writing engineering dedalus Cloud, Data, and Service Skills skills/engineering/test-writing/SKILL.md Write test output, harnesses, and assertions in the terse Unix tradition. Covers Rust #[test], Go testing.T, Python pytest, typed CLI harnesses, and CI integration. Use when writing new tests, test harnesses, CI profiles, or reviewing test output verbosity.
turborepo engineering skills-sh Cloud, Data, and Service Skills skills/engineering/turborepo/SKILL.md Turborepo monorepo build system guidance. Triggers on: turbo.json, task pipelines, dependsOn, caching, remote cache, the "turbo" CLI, --filter, --affected, CI optimization, environment variables, internal packages, monorepo structure/best practices, and boundaries. Use when user: configures tasks/workflows/pipelines, creates packages, sets up monorepo, shares code between apps, runs changed/affected packages, debugs cache, or has apps/packages directories.
update-cli-config engineering personal Cloud, Data, and Service Skills skills/engineering/update-cli-config/SKILL.md View and modify Cursor CLI configuration settings in ~/.cursor/cli-config.json. Use when the user wants to change CLI settings, configure permissions, switch approval mode, enable vim mode, toggle display options, configure sandbox, or manage any CLI preferences.
vercel engineering personal Cloud, Data, and Service Skills skills/engineering/vercel/SKILL.md Use for Vercel platform work: CLI, deployments, env vars, functions, routing middleware, firewall, observability, storage, queues, cron jobs, AI SDK, AI Gateway, v0, sandbox, Marketplace, Turborepo, Turbopack, Satori, Geist, and workflow verification.
web-design-engineer engineering personal Cloud, Data, and Service Skills skills/engineering/web-design-engineer/SKILL.md Build polished visual web artifacts with HTML/CSS/JavaScript/React: pages, dashboards, prototypes, slide decks, animations, UI mockups, and data visualizations. Use when the user wants a browser-rendered, interactive, or presentational front-end deliverable. Not for back-end, CLI, or non-visual coding tasks.
wizard engineering personal Cloud, Data, and Service Skills skills/engineering/wizard/SKILL.md Generate an interactive bash wizard that walks a human through a manual setup, third-party service configuration, one-off migration, or A-to-B state transition. Use when Kevin invokes /wizard or explicitly asks for an interactive CLI that opens URLs, captures values, writes .env entries, sets GitHub secrets/vars, and confirms each step.
yeet engineering personal Cloud, Data, and Service Skills skills/engineering/yeet/SKILL.md Use only when the user explicitly asks to stage, commit, push, and open a GitHub pull request in one flow using the GitHub CLI (gh).
zustand engineering skills-sh Cloud, Data, and Service Skills skills/engineering/zustand/SKILL.md Zustand adapter for json-render's StateStore interface. Use when integrating json-render with Zustand for state management via @json-render/zustand.
accessibility engineering personal Frontend and Design Skills skills/engineering/accessibility/SKILL.md Audit and improve web accessibility following WCAG 2.2 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible".
aframe-webxr engineering personal Frontend and Design Skills skills/engineering/aframe-webxr/SKILL.md Declarative web framework for building browser-based 3D, VR, and AR experiences using HTML and entity-component architecture. Use this skill when creating WebXR applications, VR experiences, AR experiences, 360-degree media viewers, or immersive web content with minimal JavaScript. Triggers on tasks involving A-Frame, WebXR, VR development, AR development, entity-component-system, declarative 3D, or HTML-based 3D scenes. Built on Three.js with accessible HTML-first approach.
animated-component-libraries engineering personal Frontend and Design Skills skills/engineering/animated-component-libraries/SKILL.md Component-source routing for polished React, Tailwind, shadcn/Radix/Base, chart, toast, shader, animated-icon, interaction, and component-vocabulary sources: Component Gallery, Design Engineer Tools, shadcn/ui, Radix UI, Base UI, Astryx, Cloudflare Kumo, Blocks.so, Kokonut UI, Bklit UI, Chanh Dai components, Evil Charts, Sonner, Skiper UI, Cult UI, Magic UI, Motion Primitives, React Bits, Fancy Components, Origin UI, Its Hover, lucide-animated, Super Hover, and Shaders.com. Use when building landing pages, dashboards, design systems, agent artifacts, or interactive UIs requiring named UI primitives, pre-made animated/uncommon components, chart treatments, toast/notification feedback, shader effects, animated icons, hover/scroll micro-interactions, or component-source selection instead of hand-crafting everything. Triggers on component libraries, component vocabulary, Component Gallery, Design Engineer Tools, shadcn/ui registries, Radix, Base UI, Astryx, Kumo, Kokonut, Bklit, blocks, Chanh Dai, Evil Charts, Sonner, Skiper, Cult UI, Magic UI, React Bits, Fancy Components, Origin UI, Its Hover, lucide-animated, Super Hover, Shaders.com, Tailwind CSS components, CSS techniques, or "find better design sources.
animejs engineering personal Frontend and Design Skills skills/engineering/animejs/SKILL.md Versatile JavaScript animation engine for DOM, CSS, SVG, and JavaScript objects. Use when creating timeline-based animations, stagger effects, SVG morphing, keyframe sequences, or complex choreographed animations. Triggers on tasks involving Anime.js, timeline animations, staggered sequences, SVG path animations, morphing, or multi-step animation choreography. Alternative to GSAP for SVG-heavy animations and React-independent projects.
app-onboarding-questionnaire engineering personal Frontend and Design Skills skills/engineering/app-onboarding-questionnaire/SKILL.md Design and build high-converting questionnaire-style app onboarding flows modelled on proven conversion patterns from top subscription apps (Headspace, Noom, Duolingo). Use when building onboarding flows, sign-up funnels, questionnaire UIs, or conversion-optimized first-run experiences. Triggers on "onboarding flow", "sign-up questionnaire", "first-run experience", "conversion funnel", "paywall flow", "app onboarding", "welcome screen", or "user activation". Based on adamlyttleapps/claude-skill-app-onboarding-questionnaire (374 GitHub stars).
barba-js engineering personal Frontend and Design Skills skills/engineering/barba-js/SKILL.md Page transitions library for creating fluid, smooth transitions between website pages. Use this skill when implementing page transitions, creating SPA-like experiences, adding animated route changes, or building websites with smooth navigation. Triggers on tasks involving Barba.js, page transitions, routing, view management, transition hooks, GSAP integration, or smooth page navigation. Works with gsap-scrolltrigger for transition animations.
blender-web-pipeline engineering personal Frontend and Design Skills skills/engineering/blender-web-pipeline/SKILL.md Blender to web export workflows for 3D models and animations. Use this skill when exporting Blender models to glTF for web, optimizing 3D assets for Three.js or Babylon.js, batch processing models with Python scripts, automating Blender workflows, or creating web-ready 3D pipelines. Triggers on tasks involving Blender glTF export, bpy scripting, 3D asset optimization, model compression, texture baking, or Blender automation. Exports models for threejs-webgl, react-three-fiber, and babylonjs-engine skills.
copilotkit engineering personal Frontend and Design Skills skills/engineering/copilotkit/SKILL.md Build or audit CopilotKit, AG-UI, Open Tag, and agent-frontend integrations. Use when the user mentions CopilotKit, Open Tag, AG-UI, generative UI, Slack/Teams/Discord/Google Chat agents, human-in-the-loop agent UI, or frontend surfaces for custom agents.
design-engineering-polish engineering personal Frontend and Design Skills skills/engineering/design-engineering-polish/SKILL.md Kevin's design-engineering polish route for UI motion, component feel, animation vocabulary, animation decisions, and invisible interface details. Use when reviewing animation decisions, component polish, motion design, animation vocabulary prompts, direction-aware transitions, stagger, crossfade, layout animation, or when the user says "Emil", "animation review", "component polish", "motion details", "animations.dev", or "make it feel right".
frontend-design engineering personal Frontend and Design Skills skills/engineering/frontend-design/SKILL.md Distinctive, production-grade frontend interfaces that reject generic AI aesthetics. Use when creating UI components, landing pages, design systems, or any frontend work. Triggers on "make it look good", "design direction", "avoid generic", "art direction", "design taste", "landing page", "UI design", or any frontend creation task. Based on anthropics/skills (259K weekly installs).
frontend-design-taste engineering personal Frontend and Design Skills skills/engineering/frontend-design-taste/SKILL.md Build distinctive frontends that avoid generic AI aesthetics. Provides anti-slop enforcement, variance dials, art direction archetypes, creative arsenal, and performance guardrails. Use when creating new landing pages, UI components, design systems, or when the user says "make it look good", "design direction", "avoid generic", "art direction", or "design taste.
frontend-frontier engineering personal Frontend and Design Skills skills/engineering/frontend-frontier/SKILL.md Use when the user wants a high-signal frontend, distinctive art direction, strong motion design, 3D/parallax, shader effects, landing pages, docs sites, dashboards, or a tokenized design system that avoids generic AI-generated UI.
gsap-scrolltrigger engineering personal Frontend and Design Skills skills/engineering/gsap-scrolltrigger/SKILL.md Comprehensive skill for GSAP (GreenSock Animation Platform) and ScrollTrigger plugin. Use this skill when creating web animations, scroll-driven experiences, timelines, tweens, scroll-triggered animations, pinning, scrubbing, parallax effects, or animating DOM elements, SVG, Canvas, WebGL, or Three.js. Triggers on tasks involving GSAP, ScrollTrigger, smooth animations, scroll effects, or animation sequencing.
gstack-design-review engineering personal Frontend and Design Skills skills/engineering/gstack-design-review/SKILL.md Design audit with UX usability tests. 6-phase audit with 80-item checklist and letter grades. Use when the user says "design review", "UX audit", "visual audit", "audit the UI", "how does this site look", or wants a comprehensive design audit with usability testing.
lightweight-3d-effects engineering personal Frontend and Design Skills skills/engineering/lightweight-3d-effects/SKILL.md Lightweight 3D effects for decorative elements and micro-interactions using Zdog, Vanta.js, and Vanilla-Tilt.js. Use this skill when adding pseudo-3D illustrations, animated backgrounds, parallax tilt effects, decorative 3D elements, or subtle depth effects without heavy frameworks. Triggers on tasks involving Zdog pseudo-3D, Vanta.js backgrounds, Vanilla-Tilt parallax, card tilt effects, hero section animations, or lightweight landing page visuals. Ideal for performance-focused designs.
loading-screens engineering personal Frontend and Design Skills skills/engineering/loading-screens/SKILL.md Implement loading states using braille Unicode spinners and skeleton placeholders. Use when adding loading indicators, replacing spinners, or building new loading screens. Covers component API, sizing, spinner selection, and anti-patterns.
locomotive-scroll engineering personal Frontend and Design Skills skills/engineering/locomotive-scroll/SKILL.md Comprehensive skill for Locomotive Scroll smooth scrolling library with parallax effects, viewport detection, and scroll-driven animations. Use this skill when implementing smooth scrolling experiences, creating parallax effects, building scroll-triggered animations, or developing immersive scrolling websites. Triggers on tasks involving Locomotive Scroll, smooth scrolling, parallax, scroll detection, scroll events, sticky elements, horizontal scrolling, or GSAP ScrollTrigger integration. Integrates with GSAP for advanced scroll-driven animations.
lottie-animations engineering personal Frontend and Design Skills skills/engineering/lottie-animations/SKILL.md Lottie generation and playback for web and React applications. Use this skill when generating or implementing Lottie animations, text-to-Lottie assets, SVG-to-Lottie motion, JSON vector animations, interactive animated icons, micro-interactions, or loading animations. Triggers on tasks involving Lottie, text-to-lottie, diffusionstudio/lottie, lottie-web, lottie-react, dotLottie, After Effects JSON export, bodymovin, animated SVG alternatives, or designer-created animations. Complements GSAP ScrollTrigger and Framer Motion for scroll-driven and interactive animations.
make-interfaces-feel-better engineering personal Frontend and Design Skills skills/engineering/make-interfaces-feel-better/SKILL.md Design engineering principles for making interfaces feel polished. Use when building UI components, reviewing frontend code, implementing animations, hover states, shadows, borders, typography, micro-interactions, enter/exit animations, or any visual detail work. Triggers on UI polish, design details, "make it feel better", "feels off", stagger animations, border radius, optical alignment, font smoothing, tabular numbers, image outlines, box shadows.
mintlify-mdx engineering personal Frontend and Design Skills skills/engineering/mintlify-mdx/SKILL.md Mastering Mintlify's MDX pipeline — undocumented constraints, snippet sandbox rules, CSS override patterns, and npm bundling via yoink. Use when writing or debugging Mintlify snippets, customizing docs.json/styles.css, bundling npm packages into snippets, hitting cryptic MDX compile errors, or when the user says 'mintlify', 'snippet won't compile', 'MDX error', 'yoink', 'lint-snippets', 'docs.json', 'Mintlify CSS', 'function-body mode', 'baseUrl error', or 'findExport'. Reverse-engineered from Mintlify internals at Dedalus Labs.
modern-web-design engineering personal Frontend and Design Skills skills/engineering/modern-web-design/SKILL.md Modern web design trends, principles, and implementation patterns for 2024-2025. Use this skill when designing websites, creating interactive experiences, implementing design systems, ensuring accessibility, or building performance-first interfaces. Triggers on tasks involving modern design trends, micro-interactions, scrollytelling, bold minimalism, cursor UX, glassmorphism, accessibility compliance, performance optimization, or design system architecture. References animation skills (GSAP, Framer Motion, React Spring), 3D skills (Three.js, R3F, Babylon.js), and component libraries for implementation guidance.
motion-framer engineering personal Frontend and Design Skills skills/engineering/motion-framer/SKILL.md Modern animation library for React and JavaScript. Create smooth, production-ready animations with motion components, variants, gestures (hover/tap/drag), layout animations, AnimatePresence exit animations, spring physics, and scroll-based effects. Use when building interactive UI components, micro-interactions, page transitions, or complex animation sequences.
oklch-skill engineering personal Frontend and Design Skills skills/engineering/oklch-skill/SKILL.md OKLCH color space for web projects. Convert hex/rgb/hsl to oklch, generate palettes, check contrast, handle gamut boundaries, and theme with Tailwind v4. Triggers on oklch, color conversion, palette generation, contrast ratio, gamut, display p3, design tokens, hue drift, chroma, dark mode colors.
pixel-art misc personal Frontend and Design Skills skills/misc/pixel-art/SKILL.md Use for pixel-art creation, animation, export, dithering, palette, and sprite workflows. Load the folded creator, animator, or exporter reference based on the requested artifact.
pixijs-2d engineering personal Frontend and Design Skills skills/engineering/pixijs-2d/SKILL.md Fast, lightweight 2D rendering engine for creating interactive graphics, particle effects, and canvas-based applications using WebGL/WebGPU. Use this skill when building 2D games, particle systems, interactive canvases, sprite animations, or UI overlays on 3D scenes. Triggers on tasks involving PixiJS, 2D rendering, sprite sheets, particle effects, filters, or high-performance canvas graphics. Alternative to Canvas2D with WebGL acceleration for rendering thousands of sprites at 60 FPS.
promote engineering dedalus Frontend and Design Skills skills/engineering/promote/SKILL.md Create a changelog-style promotion PR from dev to preview (or other branches). Use when Kevin says promote, dev→preview, ship to preview, or open a promotion PR with generated changelog.
react-spring-physics engineering personal Frontend and Design Skills skills/engineering/react-spring-physics/SKILL.md Physics-based animation library combining React Spring (spring dynamics, gesture integration, 60fps animations) and Popmotion (low-level composable animation utilities, reactive streams). Use when building fluid, natural-feeling UI animations, gesture-driven interfaces, physics simulations, or spring-loaded interactions. Triggers on tasks involving React Spring hooks, spring physics, inertia scrolling, physics-based motion, animation composition, or natural UI movements. Alternative physics approach to motion-framer for more physically accurate animations.
scroll-reveal-libraries engineering personal Frontend and Design Skills skills/engineering/scroll-reveal-libraries/SKILL.md Simple scroll-triggered reveal animations using AOS (Animate On Scroll). Use this skill when building marketing pages, landing pages, or content-heavy sites requiring basic fade/slide effects without complex animation orchestration. Triggers on tasks involving scroll animations, scroll-triggered reveals, AOS, simple animations, or basic scroll effects. Alternative to GSAP ScrollTrigger and Locomotive Scroll for simpler use cases. Compare with motion-framer for React-specific animations.
shadcn engineering dedalus Frontend and Design Skills skills/engineering/shadcn/SKILL.md Manages shadcn components and projects — adding, searching, fixing, debugging, styling, and composing UI. Provides project context, component docs, and usage examples. Applies when working with shadcn/ui, component registries, presets, --preset codes, or any project with a components.json file. Also triggers for "shadcn init", "create an app with --preset", or "switch to --preset".
stitch engineering personal Frontend and Design Skills skills/engineering/stitch/SKILL.md Use for Stitch MCP design workflows: generate designs, upload existing artifacts, extract design markdown, extract static HTML, manage design systems, code-to-design, and autonomous Stitch iteration loops.
substance-3d-texturing engineering personal Frontend and Design Skills skills/engineering/substance-3d-texturing/SKILL.md Comprehensive skill for Adobe Substance 3D Painter texturing and material creation workflow. Use this skill when creating PBR materials, exporting textures for web/game engines, optimizing 3D assets for real-time rendering, or automating texture workflows. Triggers on tasks involving Substance 3D Painter, PBR texturing, material creation, texture export for Three.js, Babylon.js, Unity, Unreal, glTF optimization, or Python API automation. Creates optimized textures for threejs-webgl, react-three-fiber, and babylonjs-engine materials.
taste engineering personal Frontend and Design Skills skills/engineering/taste/SKILL.md Use for taste and UI style direction: brand kits, minimalist, brutalist, soft, GPT-motion, Stitch-informed design, redesigns, image-to-code, output polish, and the taste skills playbook.
threejs-webgl engineering personal Frontend and Design Skills skills/engineering/threejs-webgl/SKILL.md Comprehensive skill for Three.js 3D web development. Use this skill when building interactive 3D scenes, WebGL/WebGPU applications, product configurators, 3D visualizations, or immersive web experiences. Triggers on tasks involving Three.js, 3D rendering, scenes, cameras, meshes, materials, lights, animations, textures, or WebGL/WebGPU rendering.
transitions-dev engineering external Frontend and Design Skills skills/engineering/transitions-dev/SKILL.md Production-ready CSS transition recipes for web apps. Use when implementing notification badges, dropdowns, modals, panel reveals, page transitions, card resizes, number pop-ins, text swaps, icon swaps, success checks, avatar hovers, error shakes, input clears, skeleton loaders, shimmer text, sliding tabs, tooltips, text reveals, card tilt, plus-to-menu morphs, accordions, or motion-token cleanup. Triggers on "add a transition", "make it animate", "motion tokens", "animate the dropdown", "modal open smoothly", "stagger animation", "skeleton loader", "loading shimmer", "segmented control", "accordion", or the commands transitions reveal/review/apply/refine.
unocss engineering skills-sh Frontend and Design Skills skills/engineering/unocss/SKILL.md UnoCSS instant atomic CSS engine, superset of Tailwind CSS. Use when configuring UnoCSS, writing utility rules, shortcuts, or working with presets like Wind, Icons, Attributify.
vite engineering skills-sh Frontend and Design Skills skills/engineering/vite/SKILL.md Vite build tool configuration, plugin API, SSR, and Vite 8 Rolldown migration. Use when working with Vite projects, vite.config.ts, Vite plugins, or building libraries/SSR apps with Vite.
vitepress engineering skills-sh Frontend and Design Skills skills/engineering/vitepress/SKILL.md VitePress static site generator powered by Vite and Vue. Use when building documentation sites, configuring themes, or writing Markdown with Vue components.
web-design-guidelines engineering personal Frontend and Design Skills skills/engineering/web-design-guidelines/SKILL.md Audit UI code against Vercel's Web Interface Guidelines for design and accessibility compliance. Use when reviewing UI code, checking accessibility, auditing components, or when the user says "check design", "UI review", "accessibility audit", "web guidelines", or "interface compliance." Based on the Vercel Labs agent-skills lineage and the current web-interface-guidelines command source.
web3d-integration-patterns engineering personal Frontend and Design Skills skills/engineering/web3d-integration-patterns/SKILL.md Meta-skill for combining Three.js, GSAP ScrollTrigger, React Three Fiber, Motion, and React Spring for complex 3D web experiences. Use when building applications that integrate multiple 3D and animation libraries, requiring architecture patterns, state management, and performance optimization across the stack. Triggers on tasks involving library integration, multi-library architectures, scroll-driven 3D experiences, physics-based 3D animations, or complex interactive 3D applications.
documents misc codex-plugin Google Workspace Skills skills/misc/documents/SKILL.md Create, edit, redline, and comment on .docx, Word, and Google Docs-targeted document artifacts inside the container, with a strict render-and-verify workflow. Use render_docx.py to generate page PNGs (and optional PDF) for visual QA, then iterate until layout is flawless before delivering the final document.
gws productivity personal Google Workspace Skills skills/productivity/gws/SKILL.md Use for Google Workspace CLI work with Gmail, Drive, Calendar, Docs, Sheets, Slides, Tasks, and shared gws authentication/formatting patterns. Read/list first; require confirmation before send, write, upload, append, create, or delete operations.
presentations misc codex-plugin Google Workspace Skills skills/misc/presentations/SKILL.md Create, edit, and visually verify PowerPoint or Google Slides-targeted decks with presentation-specific storytelling, layout, font-size, overlap, template-following, and artifact-tool workflows. Use for slide decks, .pptx files, presentations, or Google Slides deliverables.
spreadsheets misc codex-plugin Google Workspace Skills skills/misc/spreadsheets/SKILL.md Use this skill when a user requests to create, modify, analyze, visualize, or work with spreadsheet files (.xlsx, .xls, .csv, .tsv) or Google Sheets-targeted spreadsheet artifacts with formulas, formatting, charts, tables, and recalculation.
codex-pet misc personal Media Generation Skills skills/misc/codex-pet/SKILL.md RunComfy fallback for Codex Pet generation when $imagegen / Codex Pro is unavailable. Uses one RunComfy GPT Image 2 edit from a reference image, then assembles Codex-compatible spritesheet.webp + pet.json for ${CODEX_HOME:-$HOME/.codex}/pets/<name>/.
diagram-to-html misc personal Media Generation Skills skills/misc/diagram-to-html/SKILL.md Generate publication-quality diagrams and infographics by ideating with AI image generation, then converting to pixel-perfect HTML with custom fonts. Use when the user says "create a diagram", "make an infographic", "visualize this data", "diagram for LinkedIn", "chart for a post", or wants a data visualization they can screenshot for social media. Also triggers on "make this look good as a graphic" or "turn this into a visual.
elevenlabs-sfx misc personal Media Generation Skills skills/misc/elevenlabs-sfx/SKILL.md Use when the user wants to generate sound effects, audio clips, or ambient sounds, or when they say /elevenlabs-sfx or /sfx. Creates MP3 files using the ElevenLabs Text-to-Sound-Effects API. Supports multiple variations, iterative refinement, and playback. Triggers even if the user doesn't mention "ElevenLabs" — any request for sound effect generation, audio creation, or SFX should activate this skill.
hatch-pet misc personal Media Generation Skills skills/misc/hatch-pet/SKILL.md Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.
illo engineering unknown Media Generation Skills skills/engineering/illo/SKILL.md Creates original editorial illustrations where a recurring mascot character performs the idea — one caught scene by default, a hand-built explainer diagram (a flow, fan-out, timeline, loop, or stack) when the structure itself is the point, or a transparent character cutout (pose-only compositing asset, no scene or text) — in one of sixteen bundled looks (fifteen print, plus a photoreal toy-brick set). Triggers only when the skill is directly invoked or "illo" is requested; never on generic illustrate / draw / make-an-image requests.
remocn engineering unknown Media Generation Skills skills/engineering/remocn/SKILL.md Build Remotion videos with remocn — a shadcn registry of copy-paste animation components and timeline-driven UI primitives. Use when composing video scenes, adding text animations, transitions, backgrounds, UI blocks, brand/social cards, or full compositions in a Remotion project. Triggers include "remocn", "video component", "add animation", "text reveal", "scene transition", "product demo video", "remotion component", "typewriter", "terminal simulator", "glass code block", and the UI-primitive tier: "video dialog", "video button", "command menu", "video select", "video tooltip". Even if the user doesn't mention remocn, activate when they need polished video primitives for Remotion.
remotion-best-practices engineering unknown Media Generation Skills skills/engineering/remotion-best-practices/SKILL.md Best practices for Remotion video creation in React. Use when writing, reviewing, debugging, or rendering Remotion code, including compositions, timelines, sequences, transitions, captions, audio, FFmpeg, media assets, charts, Three.js/R3F scenes, subtitles, voiceovers, and deterministic video exports.
automate productivity cursor-plugin Security and Review Skills skills/productivity/automate/SKILL.md Create Cursor Automations through the interactive editor handoff. Use when the user explicitly asks to create, set up, draft, or open a new Cursor Automation, scheduled agent, Slack-triggered automation, git-triggered automation, or editor-backed automation draft.
autoreview engineering personal Security and Review Skills skills/engineering/autoreview/SKILL.md Pre-commit/ship code review: Codex default; optional Claude, Pi, Droid, Copilot, Cursor, or OpenCode.
bugs engineering personal Security and Review Skills skills/engineering/bugs/SKILL.md CTF-style security and correctness audit. Dispatches parallel Opus subagents to hunt for day-0 bugs in security-critical files. Each agent must find a real bug or honestly admit failure. Use when you want a thorough adversarial review of a codebase area.
ci-integrity-audit engineering personal Security and Review Skills skills/engineering/ci-integrity-audit/SKILL.md Audit CI-related changes across one or more PRs to prove a green build was EARNED, not gamed. Use after getting a batch of PRs green, before merging a stack, or whenever you suppressed a warning / skipped a test / touched a config to make a check pass. Enumerates every check-suppression anti-pattern (lint-disable, ts-ignore, test skips, deleted tests, threshold/budget bumps, editing the gate or a guard, swallowed failures, hook bypass, fake-green, silent fallbacks, retry-until-green), greps every PR diff for them, and judges each hit as justified vs. green-washing with file:line evidence. Especially important for agent-authored PR batches, where the temptation to silence a check instead of fixing it is highest.
counterfactual engineering personal Security and Review Skills skills/engineering/counterfactual/SKILL.md Compare the current implementation against the minimal correct algorithm. Use when debugging regressions, reviewing complex fixes, or when the user asks what should happen versus what is happening now.
cross-modal-review engineering personal Security and Review Skills skills/engineering/cross-modal-review/SKILL.md Quality gate via a second AI model. Spawn a different model to review work before committing. Grades against the originating skill's Contract. Use when you want a second opinion from a different model, or the user says "second opinion", "cross-modal review", "double check this", or "get another perspective".
deepsec engineering personal Security and Review Skills skills/engineering/deepsec/SKILL.md Run vercel-labs/deepsec — an agent-powered vulnerability scanner — against any local codebase. Use when Kevin says "deepsec", "security scan", "scan this repo for vulns", "find security bugs in ", "audit for vulnerabilities", "production security review", or before shipping a new service. Performs a regex pre-scan, dispatches Opus 4.7 / GPT 5.5 at max reasoning to investigate each candidate, revalidates to cut false positives, and exports actionable findings. Cost-aware: always run a --limit 50 calibration before a full scan.
doctor-enforcement engineering personal Security and Review Skills skills/engineering/doctor-enforcement/SKILL.md Auto-run the relevant codebase doctor(s) after large edit sessions or before committing. Detects which subsystems were touched and runs the matching doctor or security doctor chain. Use when the agent has completed a significant edit (5+ files), before claiming work is done, or when the user says "run doctors", "health check", "doctor pass", or "check everything.
ensure-repo-license engineering personal Security and Review Skills skills/engineering/ensure-repo-license/SKILL.md Ensure Kevin's open-source repos ship with an MIT LICENSE before publish or on audit. Use when creating a new public repo, open-sourcing a project, publishing to npm/GitHub, Kevin says "add license", "MIT license", "missing LICENSE", "license audit", or before marking a repo public. Runs audit + apply via scripts/ensure-mit-license.ts and agent-docs license doctor check.
excalidraw-diagram-generator engineering personal Security and Review Skills skills/engineering/excalidraw-diagram-generator/SKILL.md Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", "generate an Excalidraw file", "show this system visually", or "draw the agent/system architecture". Supports flowcharts, relationship diagrams, mind maps, system snapshots, and architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw, with PNG/SVG previews when useful.
exemplar-audit engineering dedalus Security and Review Skills skills/engineering/exemplar-audit/SKILL.md Compare implementation against canonical open-source references. Clone exemplars into /tmp, diff edge cases, error paths, and protocol invariants. Use when building a new subsystem, after a refactor, or when reviewing code that implements a known standard (POSIX, FUSE, WAL, S3, NFS, etc.).
fail-closed-case-matching engineering dedalus Security and Review Skills skills/engineering/fail-closed-case-matching/SKILL.md Dedalus philosophy on conditional logic, error paths, and why we never write fallbacks. Use when writing or reviewing any branching logic that selects between strategies, modes, or error-recovery paths.
gh-fix-ci engineering personal Security and Review Skills skills/engineering/gh-fix-ci/SKILL.md Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions; use gh to inspect checks and logs, summarize failure context, draft a fix plan, and implement only after explicit approval. Treat external providers (for example Buildkite) as out of scope and report only the details URL.
go-style engineering dedalus Security and Review Skills skills/engineering/go-style/SKILL.md Complete Go style reference for Dedalus. Loads the full guide, decisions, and best practices documents (~7000 lines). Use when writing, reviewing, or refactoring Go code and the rules file doesn't cover the specific pattern.
graphify-sidecar engineering unknown Security and Review Skills skills/engineering/graphify-sidecar/SKILL.md Safe Graphify sidecar workflow for repo architecture graphs, repo topology, "what touches what", project onboarding, focused subgraph queries, path/explain questions, PR and risk analysis, affected-node blast-radius checks, and Graphify save-result/reflect learning. Use when the user says graphify, graphify sidecar, build/query a repo graph, codebase knowledge graph, persistent repo map, focused subgraph, graph path, explain node, affected node, 71x token reduction, or wants repo-level memory without replacing qmd.
gstack-review engineering personal Security and Review Skills skills/engineering/gstack-review/SKILL.md Staff-engineer code review. Finds bugs that pass CI but blow up in production. Auto-fixes the obvious ones. Flags completeness gaps. Use when the user says "code review", "review this", "check for production bugs", "review my changes", or "/review".
last30days personal unknown Security and Review Skills skills/personal/last30days/skills/last30days/SKILL.md Research what people actually say about any topic in the last 30 days. Pulls posts and engagement from Reddit, X, YouTube, TikTok, Hacker News, Polymarket, GitHub, and the web. Includes a doctor health check to diagnose broken or missing sources.
loopy productivity personal Security and Review Skills skills/productivity/loopy/SKILL.md Craft, audit, adapt, run, and debrief bounded agent loops using Forward-Future/loopy and Kevin's no-one-off workflow. Use when the user says "use loopy", "craft loop skills", "make a loop", "loop skill", "agentic loop", "run this loop", "audit this loop", "make the loop stop", or asks to turn repeated work into a loop with checks and stopping conditions.
no-sus-code-doctor engineering personal Security and Review Skills skills/engineering/no-sus-code-doctor/SKILL.md Run a strict Dedalus STYLE-informed code-quality doctor for agent-authored PRs. Use when Kevin says "no sus code", "strict review", "quality doctor", "get this to 100", "prove this works", "review try/catches/fallbacks/ensure patterns", "review retries/timeouts/hooks/lint ignores", or before shipping high-risk auth, billing, Stripe, fraud, onboarding, credit, admin, infra, or security changes.
pnpm engineering skills-sh Security and Review Skills skills/engineering/pnpm/SKILL.md Node.js package manager with strict dependency resolution. Use when running pnpm specific commands, configuring workspaces via pnpm-workspace.yaml, or managing dependencies with catalogs, patches, overrides, config dependencies, or the global virtual store.
pr-review engineering dedalus Security and Review Skills skills/engineering/pr-review/SKILL.md Review PR comments from GitHub. Fetches inline review comments and issue comments, classifies by review.md prefix semantics (blocking vs non-blocking), and summarizes actionable items. Use when the user asks to check PR feedback, see reviewer comments, or address PR review.
project-briefing engineering personal Security and Review Skills skills/engineering/project-briefing/SKILL.md Generate an executive briefing of the last 24 hours of commits for the current project or a specified directory. Use when the user asks for a project update, daily briefing, commit summary, "what changed today," or wants to stay up-to-date with recent work.
react-doctor engineering personal Security and Review Skills skills/engineering/react-doctor/SKILL.md Run React Doctor and React Security Doctor on React, Next.js, Vite, or React Native codebases. Use when Kevin says "react doctor", "React Security Doctor", "score React to 100", "fix bad React", "React hygiene", "scan React security", or asks for post-agent React health checks after UI edits.
read-and-review engineering dedalus Security and Review Skills skills/engineering/read-and-review/SKILL.md Read external reference material (RFDs, papers, blog posts, docs), extract actionable rules, then dispatch subagents to audit the codebase against those rules and fix violations. Use when the user shares a technical reference and wants it applied to the codebase.
red-team-business productivity personal Security and Review Skills skills/productivity/red-team-business/SKILL.md Adversarially audit a business, product, launch, pricing page, or project plan. Use when Kevin asks to red-team an idea, attack a business, find blind spots, run a premortem, simulate competitors/customers/investors, or pressure-test pricing/moat/distribution.
review engineering cursor-plugin Security and Review Skills skills/engineering/review/SKILL.md Route a Cursor code-review request to the Bugbot or Security Review subagent. Use when the user invokes /review, asks for Cursor Bugbot, asks for a Cursor Security Review, or wants the built-in readonly review subagents rather than the generic Kevin review doctors.
review-bugbot engineering cursor-plugin Security and Review Skills skills/engineering/review-bugbot/SKILL.md Run the Cursor Bugbot readonly subagent on branch changes, uncommitted changes, or a described diff. Use when the user invokes /review-bugbot, asks Bugbot to review code, or wants Cursor's built-in bug-finding review subagent.
review-security engineering cursor-plugin Security and Review Skills skills/engineering/review-security/SKILL.md Run the Cursor Security Review readonly subagent on branch changes or uncommitted changes. Use when the user invokes /review-security, asks for Cursor's security review, or wants the built-in security-focused review subagent.
rust engineering personal Security and Review Skills skills/engineering/rust/SKILL.md Use for Rust work: async patterns, ownership and borrowing issues, production Rust style, tests, performance, safety, and low-level systems code review. Load folded Rust references for deeper async, best-practice, or strict-review guidance.
security-best-practices engineering personal Security and Review Skills skills/engineering/security-best-practices/SKILL.md Perform language and framework specific security best-practice reviews and suggest improvements. Trigger only when the user explicitly requests security best practices guidance, a security review/report, or secure-by-default coding help. Trigger only for supported languages (python, javascript/typescript, go). Do not trigger for general code review, debugging, or non-security tasks.
security-doctor-chain engineering personal Security and Review Skills skills/engineering/security-doctor-chain/SKILL.md Orchestrate Kevin's security/pre-ship doctor chain across React Security Doctor, deepsec, threat modeling, secure-coding review, adversarial bug hunts, vibe-code-doctor, and no-sus-code-doctor. Use when Kevin asks to string together doctors/tools, run a security doctor chain, run deepsec plus React Security Doctor, harden a production app, or decide which security doctors should gate a repo.
security-threat-model engineering personal Security and Review Skills skills/engineering/security-threat-model/SKILL.md Repository-grounded threat modeling that enumerates trust boundaries, assets, attacker capabilities, abuse paths, and mitigations, and writes a concise Markdown threat model. Trigger only when the user explicitly asks to threat model a codebase or path, enumerate threats/abuse paths, or perform AppSec threat modeling. Do not trigger for general architecture summaries, code review, or non-security design work.
shell engineering personal Security and Review Skills skills/engineering/shell/SKILL.md Runs the rest of a /shell request as a literal shell command. Use only when the user explicitly invokes /shell and wants the following text executed directly in the terminal.
simple-diagnosis-template engineering personal Security and Review Skills skills/engineering/simple-diagnosis-template/SKILL.md Frame any technical answer as a reproducible five-part diagnosis. Use when the user asks for a root-cause explanation, a fix proposal, a debugging write-up, or says "explain why", "what's the problem", "propose a fix", or invokes /simple. Forces the answer into: problem, evidence, proposal, mechanism, test methodology.
skill-audit engineering personal Security and Review Skills skills/engineering/skill-audit/SKILL.md Scan recent Cursor agent transcripts and update or create category skills based on recurring patterns, struggles, or inefficiencies. Use when asked to audit skills, improve automations, review recent sessions for skill opportunities, or when the user says "update my skills." Shared category skills only.
skill-auditor engineering personal Security and Review Skills skills/engineering/skill-auditor/SKILL.md Security auditor for agent skills. Run before installing any new skill from skills.sh, GitHub, or any source. 6-step vetting protocol covering typosquatting, permissions, dependencies, prompt injection, network exfiltration, and content red flags. Use when about to install a skill, reviewing a SKILL.md, auditing existing skills, or when a skill update changes permissions. Triggers on "install skill", "add skill", "npx skills add", "vet this skill", "audit skill", or "is this skill safe." Based on useai-pro/openclaw-skills-security. MUST be invoked before any skill installation — this is part of the quality gate.
split-to-prs engineering personal Security and Review Skills skills/engineering/split-to-prs/SKILL.md Split current work into small reviewable PRs. Use when the user asks to split a chat, set of changes, branch, or PR.
style-guide engineering dedalus Security and Review Skills skills/engineering/style-guide/SKILL.md Dedalus style guide quick reference. Key rules for writing code that lasts. Use when writing or reviewing Python code.
template-creator misc codex-plugin Security and Review Skills skills/misc/template-creator/SKILL.md Create or update a reusable personal Codex artifact-template skill. Use when the user invokes $template-creator or asks in natural language to create a template using, from, or based on an attached Word document, PowerPoint presentation, or Excel workbook, or explicitly asks to edit or update a passed artifact-template skill. Do not use for one-off artifact creation from an existing template.
ultracite engineering personal Security and Review Skills skills/engineering/ultracite/SKILL.md Zero-config linting and formatting via Ultracite (oxlint/oxfmt, Biome, or ESLint). Use when bootstrapping a new project, adding linting to an existing app, configuring agent hooks, setting up CI lint checks, or when the user says "lint", "format", "ultracite", "oxlint", "oxfmt", "code quality setup", or "add linting." Always prefer Ultracite over hand-rolled ESLint/Prettier/Biome configs.
vibe-code-doctor engineering personal Security and Review Skills skills/engineering/vibe-code-doctor/SKILL.md Audit a vibe-coded project for the failure modes that make it collapse in production, score it 0-100, and drive fixes. Use when the user says "vibe code doctor", "is this vibe-coded project production-ready", "audit this AI-generated codebase", "why might this break", "harden my vibe-coded app", or inherits a codebase nobody fully understands. Complements react-doctor (React health/security) and deepsec (deep vuln scan) with the comprehension / integration / architecture / ops lens those miss.
ai-seo personal personal Writing and Content Skills skills/personal/ai-seo/SKILL.md When the user wants to optimize content for AI search engines, get cited by LLMs, or appear in AI-generated answers. Also use when the user mentions 'AI SEO,' 'AEO,' 'GEO,' 'LLMO,' 'answer engine optimization,' 'generative engine optimization,' 'LLM optimization,' 'AI Overviews,' 'optimize for ChatGPT,' 'optimize for Perplexity,' 'AI citations,' 'AI visibility,' 'zero-click search,' 'how do I show up in AI answers,' 'LLM mentions,' 'optimize for Claude/Gemini,' 'llms.txt,' 'OKF,' 'Open Knowledge Format,' 'knowledge bundle,' or 'agent-readable site.' Use this whenever someone wants their content to be cited or surfaced by AI assistants and AI search engines. For traditional technical and on-page SEO audits, see seo-audit. For structured data implementation, see schema.
career-ops personal personal Writing and Content Skills skills/personal/career-ops/SKILL.md AI job search pipeline — evaluate offers, generate tailored CVs, scan 45+ company portals, track applications, interview prep, salary negotiation, and LinkedIn outreach. Use when the user asks to evaluate a job posting, generate a resume, scan for open roles, prep for interviews, or says "career-ops", "job search", "evaluate this role", "scan portals", "generate resume", "interview prep", or "salary negotiation.
content-strategy personal personal Writing and Content Skills skills/personal/content-strategy/SKILL.md Comprehensive self-promotion and content strategy covering positioning arcs, content calendars, weekly rhythms, and quality gates for X and LinkedIn. Use when planning content, discussing personal brand, building a content calendar, or when the user says "content strategy", "what should I post", "content plan", or "social strategy.
copywriting personal personal Writing and Content Skills skills/personal/copywriting/SKILL.md Marketing copy for homepages, landing pages, pricing pages, and conversion-focused web pages. Use when writing headlines, CTAs, landing page copy, pricing page copy, feature pages, or when the user says "write copy", "landing page", "homepage copy", "CTA", "headline", "conversion copy", or "marketing copy." Based on coreyhaines31/marketingskills (60K weekly installs).
humanizer personal personal Writing and Content Skills skills/personal/humanizer/SKILL.md Remove signs of AI-generated writing from text, calibrated to Kevin's voice. Based on blader/humanizer (Wikipedia's "Signs of AI writing" guide) with a permanent voice profile extracted from Kevin's actual writing samples. Use when editing or reviewing any text Kevin will publish: social posts, Reddit posts, README copy, application essays, bios, wiki prose.
kevin-voice personal personal Writing and Content Skills skills/personal/kevin-voice/SKILL.md Write about Kevin Liu in his own voice. Credential-forward, third-person, fragment-style positioning. Use whenever the agent needs to describe Kevin to a reader (recruiter "Why this candidate" blurbs, LinkedIn headlines + About sections, conference bios, intro requests, cold outreach openers, "tell me about yourself" answers, X/site bios, panel descriptions, app submission profiles, founder intros). Triggers on "write a bio", "intro me", "Kevin in one line", "pitch me", "About section", "candidate blurb", "outreach opener", "describe me", or whenever copy is being authored that represents Kevin.
og-metadata-audit personal personal Writing and Content Skills skills/personal/og-metadata-audit/SKILL.md Audit and fix OpenGraph and Twitter card metadata in Next.js App Router projects. Cross-reference metadata exports across pages, identify missing fields, DRY violations, broken middleware, and incorrect canonicals. Use when Twitter cards aren't rendering, OG images are broken, metadata is inconsistent across pages, or when the user says "audit OG", "fix opengraph", "twitter cards broken", "metadata audit", "OG not working", or "social preview broken".
programmatic-seo personal personal Writing and Content Skills skills/personal/programmatic-seo/SKILL.md When the user wants to create SEO-driven pages at scale using templates and data. Also use when the user mentions "programmatic SEO," "template pages," "pages at scale," "directory pages," "location pages," "[keyword] + [city] pages," "comparison pages," "integration pages," "building many pages for SEO," "pSEO," "generate 100 pages," "data-driven pages," or "templated landing pages." Use this whenever someone wants to create many similar pages targeting different keywords or locations. For auditing existing SEO issues, see seo-audit. For content strategy planning, see content-strategy.
resume-architect personal personal Writing and Content Skills skills/personal/resume-architect/SKILL.md Make a resume un-rejectable for a specific role. A 5-stage pipeline — Profile, Diagnoser (ATS scan /100), Researcher (live-benchmark real JDs + profiles of people who got hired), Rewriter (XYZ bullets + full ruleset), Hiring Manager (mock interview). Use when the user says "tailor my resume", "review my resume", "make my resume un-rejectable", "ATS scan", "why am I getting rejected", "resume for [company/role]", "rewrite my resume bullets", "resume gap analysis", "score my resume", "mock interview from my resume", "beat ATS", or pastes a JD + resume. Owns resume craft; career-ops owns job-search orchestration.
seo-audit personal personal Writing and Content Skills skills/personal/seo-audit/SKILL.md Comprehensive SEO auditing covering crawlability, indexation, speed, on-page optimization, and content quality. Use when auditing a website's SEO, reviewing technical SEO foundations, checking meta tags, analyzing page speed, or when the user says "SEO audit", "check SEO", "audit this site", "technical SEO", or "crawlability check." Based on coreyhaines31/marketingskills.
seo-geo personal claude Writing and Content Skills skills/personal/seo-geo/SKILL.md SEO & GEO (Generative Engine Optimization) for websites. Analyze keywords, generate schema markup, optimize for AI search engines (ChatGPT, Perplexity, Gemini, Copilot, Claude) and traditional search (Google, Bing). Use when user wants to improve search visibility, search optimization, search ranking, AI visibility, ChatGPT ranking, Google AI Overview, indexing, JSON-LD, meta tags, or keyword research.
seo-geo-optimization personal personal Writing and Content Skills skills/personal/seo-geo-optimization/SKILL.md Optimize websites for AI search engines (ChatGPT, Perplexity, Gemini, Copilot, Claude) and traditional search. Covers GEO methods, schema markup, entity engineering, and platform-specific strategies. Use when optimizing for AI citations, implementing schema, running GEO audits, or when the user says "GEO", "AI search", "optimize for ChatGPT", "schema markup", "AI citability", "generative engine optimization", or "optimize for Perplexity." Based on resciencelab/opc-skills.
slack-voice personal personal Writing and Content Skills skills/personal/slack-voice/SKILL.md Write internal Slack messages and status updates in Kevin's casual first-person voice: lowercase, terse, comma-and-parenthesis run-ons, no em dashes, no corporate filler, PR/issue numbers inline, owners tagged with @, and a "lmk what to prioritize" style close. Use when drafting any Slack message, standup, PR-status update, growth/eng rundown, or reply to a thread on Kevin's behalf. Distinct from kevin-voice (third-person bios) and social-draft (public X/LinkedIn posts).
social-content personal personal Writing and Content Skills skills/personal/social-content/SKILL.md Social media content creation, scheduling, repurposing, and optimization across LinkedIn, X, Instagram, TikTok, and Facebook. Use when creating social posts, repurposing content across platforms, building engagement routines, analyzing social performance, or when the user says "social content", "social media", "repurpose", "schedule posts", "engagement strategy", or "content calendar." Based on coreyhaines31/marketingskills (40K weekly installs). For Kevin-specific positioning and quality gates, also read content-strategy and social-draft skills.
social-draft personal personal Writing and Content Skills skills/personal/social-draft/SKILL.md Platform-optimized drafting and rewriting for X and LinkedIn. Turn one idea into drafts that feel specific, sharp, and credible. Use when the user says "draft a post", "write a tweet", "LinkedIn post", "social draft", "help me post", or provides raw content to turn into social posts.
stage-refactor-checklist personal dedalus Writing and Content Skills skills/personal/stage-refactor-checklist/SKILL.md Comprehensive checklist for refactoring a schema_compiler stage folder. Use EVERY TIME you refactor a compiler stage (resolve, unify, codegen, etc.). Read this before writing any code.
writing-beats personal personal Writing and Content Skills skills/personal/writing-beats/SKILL.md Writing exploit skill for turning a raw fragment file into an article one beat at a time. Use when Kevin says "/writing-beats", "turn these fragments into an article", "build this article beat by beat", or wants a choose-your-own-adventure drafting path.
writing-fragments personal personal Writing and Content Skills skills/personal/writing-fragments/SKILL.md Writing explore skill for mining raw article fragments before structure exists. Use when Kevin says "/writing-fragments", "mine fragments", "collect raw writing material", "interview me for article fragments", or wants a messy idea pile saved before drafting.
writing-shape personal personal Writing and Content Skills skills/personal/writing-shape/SKILL.md Writing exploit skill for shaping raw material into a coherent article paragraph by paragraph. Use when Kevin says "/writing-shape", "shape this into an article", "turn this raw material into a draft", or wants article structure, openings, headings, and block-by-block editing.

Timeline

288 pages link here

accessibilitySkillsActive Stack (What to Actually Use)MetaAdversarial Self-Audit PromptsConceptsaframe-webxrSkillsAgent Docs System MapAgent DocsAgent Engineering SkillsConceptsAgent Operating SystemArchitectureAgent Operations SkillsConceptsAgent Skill BundlesConceptsagent-activity-logSkillsagent-browserSkillsagent-docsSkillsagent-eval-librarySkillsagent-iteration-loopSkillsagent-reachSkillsagentcoreSkillsai-sdkSkillsai-seoSkillsanimated-component-librariesSkillsanimejsSkillsapp-onboarding-questionnaireSkillsastroSkillsautomateSkillsautoreviewSkillsawsSkillsazureSkillsAzure SkillsConceptsbabylonjs-engineSkillsbabysitSkillsbarba-jsSkillsbeta-dx-walkSkillsblender-web-pipelineSkillsBootstrap SyncAgent DocsBrain CapsulesMetaBrowser Testing SkillsConceptsbrowser-useSkillsbugsSkillscanvasSkillsCapability Harvest PatternMetaCapability Routing MapMetacareer-opsSkillsci-cd-best-practicesSkillsci-integrity-auditSkillscleanup-terminals-browsersSkillsclerkSkillsCloud, Data, and Service SkillsConceptscloudflareSkillscodebase-designSkillscodex-automation-adminSkillscodex-petSkillscolumn-aligned-fieldsSkillscommentSkillscommitSkillscommit-and-pushSkillscomputer-useSkillsConcept System MapConceptsconductorSkillscontent-strategySkillscontrol-in-app-browserSkillscopilotkitSkillscopywritingSkillscore-web-vitalsSkillscounterfactualSkillscreate-auth-skillSkillscreate-hookSkillscreate-ruleSkillscreate-skillSkillscreate-subagentSkillscross-modal-reviewSkillsdaily-bugfix-checkSkillsdbSkillsdb-writeSkillsdcs-testSkillsDedalus Skills TaxonomyAgent DocsdeepsecSkillsdesign-engineering-polishSkillsdiagnosing-bugsSkillsdiagram-to-htmlSkillsdoctor-enforcementSkillsdocumentsSkillsdogfoodSkillsdomain-modelingSkillselectronSkillselevenlabs-sfxSkillsensure-repo-licenseSkillsexcalidraw-diagram-generatorSkillsexemplar-auditSkillsfail-closed-case-matchingSkillsFiling Decision TreeFiling Decision Treefind-skillsSkillsfirebaseSkillsFirebase SkillsConceptsfix-typesSkillsfont-switcher-dev-toolSkillsFrontend and Design SkillsConceptsfrontend-designSkillsfrontend-design-tasteSkillsfrontend-frontierSkillsgenerate-interfaceSkillsGenerated Surface ContractMetagh-address-commentsSkillsgh-fix-ciSkillsgo-styleSkillsGoogle Workspace SkillsConceptsgraphify-sidecarSkillsgreentextSkillsgrill-with-docsSkillsgsap-scrolltriggerSkillsgstack-design-reviewSkillsgstack-qaSkillsgstack-reviewSkillsgwsSkillshandoffSkillshatch-petSkillshermes-operator-stackSkillshetznerSkillshotfix-previewSkillsHow to Update the WikiMetahumanizerSkillsilloSkillsimessage-to-peopleSkillsimplementSkillsimport-spinner-framesSkillsimproveSkillsimprove-codebase-architectureSkillsinvariant-first-codingSkillsissueSkillskafkaSkillskevin-engineering-flowSkillskevin-voiceSkillsKnowledge CompilationConceptslamportSkillslast30daysSkillslearn-from-projectsSkillslerpSkillslightweight-3d-effectsSkillslinearSkillsliteparseSkillsloading-screensSkillslocomotive-scrollSkillsloopSkillsloop-meSkillsloopySkillslottie-animationsSkillsmake-interfaces-feel-betterSkillsMedia Generation SkillsConceptsMemory Routing ProtocolMetamigrate-to-skillsSkillsminimal-first-implementationSkillsmintlify-mdxSkillsmodern-web-designSkillsmotion-framerSkillsnextjsSkillsno-sus-code-doctorSkillsog-metadata-auditSkillsoklch-skillSkillsonboardSkillsPage Consolidation AuditMetapdfSkillsperfSkillsPersonal Skills TaxonomyAgent Docspixel-artSkillspixijs-2dSkillsplaycanvas-engineSkillsplaywrightSkillspnpmSkillsportlessSkillsposthogSkillspostmortemSkillsprSkillspr-reviewSkillspresentationsSkillsprogrammatic-seoSkillsproject-briefingSkillsproject-doctorSkillspromoteSkillsprototypeSkillsreact-doctorSkillsreact-spring-physicsSkillsreact-three-fiberSkillsread-and-reviewSkillsrecent-code-bugfixSkillsRed-Team Your Business (Adversarial AI Audit)Conceptsred-team-businessSkillsrefineSkillsremocnSkillsremotion-best-practicesSkillsresolving-merge-conflictsSkillsresume-architectSkillsRetired Skill Article LedgerMetareviewSkillsreview-bugbotSkillsreview-securitySkillsrive-interactiveSkillsrtfmSkillsrustSkillsscreenshotSkillsscroll-reveal-librariesSkillssdkSkillsSecurity and Review SkillsConceptssecurity-best-practicesSkillssecurity-doctor-chainSkillssecurity-threat-modelSkillssentrySkillsseo-auditSkillsseo-geoSkillsseo-geo-optimizationSkillsservice-cli-registrySkillssetup-kevin-engineering-flowSkillsshadcnSkillsshellSkillssimpleSkillssimple-diagnosis-templateSkillssites-buildingSkillssites-hostingSkillsSkill Maintenance CadenceHEARTBEATSkill ResolverSkill ResolverSkill Sync WorkflowWorkflowsskill-auditSkillsskill-auditorSkillsskill-creatorSkillsSkills as OnboardingConceptsSkills FilingFiling Decision TreeslackSkillsslack-voiceSkillsSlash Command IndexMetasocial-contentSkillssocial-draftSkillsspline-interactiveSkillssplit-to-prsSkillsspreadsheetsSkillsstage-refactor-checklistSkillsstate-machine-dfaSkillsstatuslineSkillsstitchSkillsstripeSkillsstyle-guideSkillssubstance-3d-texturingSkillssupabaseSkillstanstackSkillstasteSkillstddSkillsteacher-modeSkillstemplate-creatorSkillsterraform-skillSkillstest-writingSkillstestsSkillsthreejs-webglSkillsto-issuesSkillsto-prdSkillstorvaldsSkillstransitions-devSkillstriageSkillstsdownSkillsturborepoSkillsultraciteSkillsunderstandSkillsunocssSkillsupdate-cli-configSkillsupdate-cursor-settingsSkillsupdate-docsSkillsvercelSkillsvibe-code-doctorSkillsvisual-planSkillsviteSkillsvitepressSkillsvitestSkillsvueSkillsweb-design-engineerSkillsweb-design-guidelinesSkillsweb3d-integration-patternsSkillswebapp-testingSkillswebwrightSkillsWiki Brain Operating ModelMetaWiki Capsules And Agent Doc PacksMetaWiki Doctor ContractAgent DocsWiki Redirect IndexMetawiki-doctorSkillswizardSkillsWriting and Content SkillsConceptswriting-beatsSkillswriting-fragmentsSkillswriting-shapeSkillsX Bookmark Ingest 2026-07-12Researchx-bookmark-absorbSkillsyeetSkillszero-tech-debtSkillszustandSkills