← all publishers

drvoss

@drvoss source repo

109 published skills · page 1 of 2

  1. SEO · drvoss
    Use when the user wants better search visibility, SEO remediation, schema markup, sitemap/robots work, or keyword mapping — audits and implements technical SEO, on-page optimization, Core Web Vitals, and structured data
    0
    installs
  2. Triage · drvoss
    Use when a single issue or external-contributor pull request needs structured triage — classify it, verify the claim if needed, request missing information, and leave a durable brief or close-out note in the tracker.
    0
    installs
  3. UX Audit · drvoss
    Use when a page or component needs a structured UX audit — quick scan applies 6 Krug-inspired usability checks; deep audit covers 15 design dimensions with Jobs/Ive philosophy
    0
    installs
  4. Council · drvoss
    Use when a decision has multiple credible paths and no obvious winner — convene a four-voice council (Architect, Skeptic, Pragmatist, Critic) for structured adversarial deliberation before choosing
    0
    installs
  5. Handoff · drvoss
    Use when work is changing sessions, agents, or machines and the next pass needs a compact handoff document with current state, open questions, and next steps instead of raw chat history.
    0
    installs
  6. Release · drvoss
    Use when a sprint or feature is complete and ready to ship — tags the version, generates GitHub Release notes, runs rollout or smoke verification, and publishes to npm/PyPI/Docker registries.
    0
    installs
  7. QA Review · drvoss
    Use when reviewing or planning QA strategy for a feature, PR, or release so test coverage, test quality, reliability, and defect reporting are handled as a coherent engineering discipline instead of ad hoc checks.
    0
    installs
  8. Grill Me · drvoss
    Use when a plan still has hidden assumptions — default to one question at a time for dependent branches, batch only truly independent questions when it saves real round-trips, and keep stress-testing the plan until dependencies, risks, and decisions are explicit before implementation starts
    0
    installs
  9. LLM Wiki · drvoss
    Use when research or domain knowledge keeps getting rediscovered across sessions — build a supplementary markdown wiki that compounds synthesized knowledge without replacing GitHub or committed project guidance
    0
    installs
  10. Review · drvoss
    Use when you want to check whether a code change follows the repository's documented conventions (Standards) and aligns with the originating issue or PRD (Spec) — compared against a pinned git reference
    0
    installs
  11. Create Prd · drvoss
    Use when you're ready to define a feature before building it — generates a structured PRD using Jobs-to-be-Done thinking, success metrics, and explicit scope boundaries.
    0
    installs
  12. To Issues · drvoss
    Use when a plan, spec, or PRD must become an actionable backlog — break it into thin dependency-aware issues that each deliver a verifiable vertical slice
    0
    installs
  13. Wayfinder · drvoss
    Use when a task is too large or ambiguous to finish in one session — build a destination-centric plan with a breadth-first triage pass, an explicit Deferred/out-of-scope section, and a confirmation gate before implementation starts
    0
    installs
  14. E2e Testing · drvoss
    Use when you need end-to-end tests for critical user flows that unit tests can't cover — scaffolds Playwright/Cypress tests from the happy path through edge cases.
    0
    installs
  15. Cost Audit · drvoss
    Use when AI inference costs are growing unexpectedly, when comparing model choices by cost/quality ratio, or when optimizing token usage across a multi-model pipeline — produces an actionable cost reduction plan
    0
    installs
  16. Diagnose · drvoss
    Use when a bug or performance issue is still fuzzy — build the fastest feedback loop first, rank the leading hypotheses, and instrument only what narrows the search
    0
    installs
  17. Zoom Out · drvoss
    Use when you are lost in local code details — step one abstraction level up, map the owning modules and callers, and restate the system in project vocabulary
    0
    installs
  18. Eval Harness · drvoss
    Use when you need to evaluate an LLM pipeline or AI feature systematically — sets up an eval harness with test cases, scoring rubrics, and pass/fail tracking rather than one-off manual spot-checks
    0
    installs
  19. AI Visibility · drvoss
    Use when you want your product to surface in AI-generated answers (ChatGPT, Perplexity, Gemini) — creates llms.txt, optimizes structured data, and configures AI crawler access for GEO.
    0
    installs
  20. Implement · drvoss
    Use when starting implementation work from a PRD, spec, or set of issues — to follow a structured TDD → validate → review → commit loop.
    0
    installs
  21. Prototype · drvoss
    Use when a design question is still fuzzy — build a throwaway logic or UI prototype that answers one question fast, stays easy to run, and is meant to be deleted or absorbed.
    0
    installs
  22. Test Coverage · drvoss
    Use when test coverage falls below target or a new module has no tests — identifies untested code paths and writes targeted unit or integration tests to close the coverage gap.
    0
    installs
  23. Interview Me · drvoss
    Use when a request is underspecified and you need to discover what the user actually wants before writing a plan, spec, or code - default to one question at a time when later questions depend on earlier answers, switch to a numbered batch only for independent high-latency clarifications, attach your current hypothesis, and stop only after the intent is explicitly confirmed.
    0
    installs
  24. Sprint Retro · drvoss
    Use at the end of a sprint to run a data-driven retrospective — analyzes session history and git metrics to surface what shipped, what slowed you down, and concrete improvements.
    0
    installs
  25. Security Scan · drvoss
    Use when you want a quick security pass on code changes or dependencies — checks OWASP Top 10 patterns, runs dependency audits, and surfaces critical vulnerabilities with targeted fixes.
    0
    installs
  26. Deep Research · drvoss
    Use when a question requires comprehensive evidence gathering from multiple sources, systematic synthesis, and traceable citations — produces a structured research brief rather than a quick answer
    0
    installs
  27. Outside Voice · drvoss
    Use when you need an independent second opinion before, during, or after implementation — run challenge, consult, or review mode in a direct builder-to-builder voice
    0
    installs
  28. Code Review · drvoss
    Use when reviewing code changes for quality, correctness, and security — runs a structured checklist with severity-rated findings
    0
    installs
  29. Code Tour · drvoss
    Use when a user asks for a code tour, onboarding walkthrough, architecture tour, or PR tour — creates persona-targeted, step-by-step `.tour` files with real file and line anchors
    0
    installs
  30. Launch Strategy · drvoss
    Use when you're preparing to launch a product or feature publicly — builds a structured checklist covering positioning, distribution, messaging, and success metrics from private beta to GA.
    0
    installs
  31. Security Audit · drvoss
    Use when a codebase needs a formal security audit beyond a quick scan — applies OWASP Top 10 and STRIDE threat modeling from a CSO perspective to surface systemic vulnerabilities.
    0
    installs
  32. Content Strategy · drvoss
    Use when you need a content plan to grow organic traffic for a product or new area — produces keyword research, topic clusters, and a content calendar targeting your category.
    0
    installs
  33. React Vitest · drvoss
    Use when adding or improving tests in a React project that uses Vitest — covers component testing with Testing Library, mocking hooks, and coverage configuration.
    0
    installs
  34. Tdd Workflow · drvoss
    Use when starting a new feature or function to write failing tests first, then implement the minimal code to pass (Red→Green→Refactor)
    0
    installs
  35. Doc Update · drvoss
    Use when code has changed and documentation may be out of date — identifies stale docs, finds gaps between implementation and docs, and applies targeted updates.
    0
    installs
  36. Browser Devtools · drvoss
    Use when verifying frontend behavior at runtime — DOM validation, network inspection, performance profiling with browser DevTools
    0
    installs
  37. Commit Workflow · drvoss
    Use when you're about to commit (especially with a mixed diff) to stage changes, split into atomic commits, and write Conventional Commit messages with emoji
    0
    installs
  38. Grill With Docs · drvoss
    Use when a plan must be stress-tested against the codebase's existing language and decisions — grill it against current docs, glossary terms, and ADRs before implementation begins
    0
    installs
  39. Sprint Workflow · drvoss
    Use when starting a new feature, refactor, or multi-step dev task — runs the full sprint cycle (Think → Plan → Build → Review → Test → Ship → Monitor) using Copilot CLI's plan/autopilot modes.
    0
    installs
  40. Cpp Debugging · drvoss
    Use when a C++ failure involves memory lifetime, undefined behavior, native crashes, or debugger-only state — debug with symbols, sanitizers, and platform-native debuggers before patching symptoms
    0
    installs
  41. Nestjs Prisma · drvoss
    Use when building a NestJS application with Prisma — covers PrismaService setup as an injectable singleton, repository pattern integration, and testing with Prisma mocks.
    0
    installs
  42. Nextjs Prisma · drvoss
    Use when working on a Next.js App Router project that uses Prisma as the ORM — covers server component data fetching, singleton client setup, and type-safe query patterns.
    0
    installs
  43. Skill Creator · drvoss
    Use when you want to create a new SKILL.md file — describe a workflow and this skill generates a properly structured, frontmatter-complete SKILL.md that follows this repository's conventions
    0
    installs
  44. Agent Governance · drvoss
    Use when designing or reviewing an AI agent system that needs policy-based access controls, intent classification, tool-level rate limiting, trust scoring for multi-agent workflows, or append-only audit trails.
    0
    installs
  45. Input Validation · drvoss
    Use when writing or reviewing code that processes user input — validates and sanitizes to prevent SQL injection, XSS, CSRF, and other injection attacks. NOT when the code path doesn't touch user-supplied data.
    0
    installs
  46. Secret Detection · drvoss
    Use when you suspect API keys, tokens, or passwords are hardcoded in source code or committed to git history — scans and guides safe removal without breaking existing integrations.
    0
    installs
  47. Prompt Optimizer · drvoss
    Use when a rough prompt, vague idea, or task description needs to become a finished copy-pasteable prompt for a chat-based LLM - rewrite it into one ready-to-send prompt with no blanks, no placeholders, and a clear output shape.
    0
    installs
  48. Refactor Clean · drvoss
    Use when code has grown complex, duplicated, or cluttered — clean up structure and remove dead code without changing observable behavior
    0
    installs
  49. Product Capability · drvoss
    Use when engineering needs testable, implementable technical requirements — not a PRD but a capability spec with acceptance criteria, task breakdown, and traceability from requirement to implementation ticket
    0
    installs
  50. Agent Owasp Check · drvoss
    Use when auditing an AI agent system against the OWASP Agentic Security Initiative Top 10 — checks tool access, prompt boundaries, memory handling, and operational safeguards across the agent pipeline.
    0
    installs
  51. Deployment Canary · drvoss
    Use when a release has been deployed to a limited audience and must be observed before full rollout — defines success signals, watch windows, rollback triggers, and investigate handoffs.
    0
    installs
  52. Agent Supply Chain · drvoss
    Use when auditing an AI agent plugin, skill bundle, or MCP tool package for supply chain integrity — generate deterministic SHA-256 manifests, detect modified or untracked files, flag unpinned dependencies, and gate promotion to production.
    0
    installs
  53. Pr Security Review · drvoss
    Use when reviewing a pull request for security issues — automatically analyzes the diff for vulnerabilities, hardcoded secrets, injection risks, and broken access control before merging
    0
    installs
  54. Fix Build Errors · drvoss
    Use when a build, compilation, or type-check fails — diagnose the error, identify root cause, and apply the minimal fix to get green
    0
    installs
  55. Fix Github Issue · drvoss
    Use when you have a GitHub Issue number or link and want it resolved end-to-end — reads the issue, locates the bug, applies a fix, writes tests, and opens a PR from the terminal.
    0
    installs
  56. Evaluate Repository · drvoss
    Use when you need a comprehensive health scorecard of a codebase — scores security, code quality, test coverage, documentation, and AI agent governance across 7 dimensions with a prioritized remediation plan.
    0
    installs
  57. Gha Security Review · drvoss
    Use when reviewing GitHub Actions workflows for exploitable vulnerabilities — finds pwn-request patterns, expression injection, credential escalation, config poisoning, and supply chain risks, and reports only HIGH and MEDIUM confidence findings with concrete attack paths.
    0
    installs
  58. Conventional Branch · drvoss
    Use when creating or validating a Git branch name so the branch follows a conventional type/description format, matches the work being done, and starts from the right base branch.
    0
    installs
  59. Using Git Worktrees · drvoss
    Use when you need multiple branches checked out at once — create isolated working directories for parallel development without cloning the repository repeatedly
    0
    installs
  60. MCP Builder · drvoss
    Use when you need to build a new MCP server — plan the tool surface, implement the server, register it in Copilot CLI, inspect the config, and test the tools end to end.
    0
    installs
  61. Scope Guard · drvoss
    Use when a task must stay inside a narrow file or directory boundary, or when risky commands need an explicit stop rule — define the writable surface first so the agent does not drift.
    0
    installs
  62. Threat Model Analyst · drvoss
    Use when a repository, system, or major change needs a structured STRIDE-A threat model — map architecture, data flows, trust boundaries, abuse cases, and prioritized findings, or update an existing model with a change-focused diff.
    0
    installs
  63. Team Planner · drvoss
    Use when a task is too large or multi-domain for a single agent — assemble a specialist team, assign work via SQL tracking, dispatch with /fleet or task tool, and synthesize results
    0
    installs
  64. Add To Changelog · drvoss
    Use when you've shipped a feature, fix, or breaking change and need to update CHANGELOG.md — follows Keep a Changelog format and syncs version numbers across package manifests.
    0
    installs
  65. Feature Prioritization · drvoss
    Use when you have a backlog of features and need to rank them for the next sprint — scores each feature using Impact × Confidence × Effort matrix with SQL tracking for transparent prioritization.
    0
    installs
  66. Implementation Review · drvoss
    Use after an implementation pass lands — compare the original task spec or handoff against the delivered diff, classify each requested item, and produce an actionable follow-up report.
    0
    installs
  67. Context Prime · drvoss
    Invoke when starting a session (or resuming after a break) on a repo before making changes, to load live project context (structure, recent commits, test status)
    0
    installs
  68. Ide Switching · drvoss
    Use when moving between VS Code and Copilot CLI in the same session — transfers context between environments so you don't lose state when switching from editor to terminal.
    0
    installs
  69. MCP Ecosystem · drvoss
    Use when Copilot CLI's built-in tools do not cover a service you need — for example PostgreSQL, Redis, Jira, Slack, or an internal API — and you need to add an MCP server beyond the default GitHub MCP. NOT when the built-in tools already cover the task.
    0
    installs
  70. Context Engineering · drvoss
    Use when designing prompts or agent tasks to optimize information delivery — minimize noise, maximize signal for AI agents
    0
    installs
  71. API Documentation · drvoss
    Use when source code has changed and API docs are stale, or a new endpoint lacks documentation — generates accurate docs from implementation, not guesswork.
    0
    installs
  72. Document Generate · drvoss
    Use when a feature, module, or whole project needs missing documentation created from scratch - read the codebase, map the public surface with Diataxis (tutorial/how-to/reference/explanation), and generate the missing docs with cross-links.
    0
    installs
  73. Security Bounty Hunter · drvoss
    Use when the goal is practical vulnerability discovery for responsible disclosure or bounty submission — focuses on remotely reachable, exploitable issues that qualify for real reports rather than a broad best-practices review
    0
    installs
  74. Copilot Memory · drvoss
    Use when you need to understand, review, or curate GitHub Copilot's repository-level memory — the persistent facts Copilot reuses across CLI, cloud agent, and code review for the same repository
    0
    installs
  75. Fleet Parallel · drvoss
    Use when you need to run the same task across many files, components, or contexts in parallel — triggers /fleet mode for batch refactoring, mass testing, or bulk review. NOT when sequential order matters.
    0
    installs
  76. Stack Detector · drvoss
    Scan the current project's tech stack (package.json, config files, lockfiles) and recommend the most relevant skills and rules from this collection for the detected technologies.
    0
    installs
  77. Systematic Debugging · drvoss
    Use when a bug is non-obvious or has resisted quick fixes — applies a 4-phase root cause analysis to find and permanently resolve the issue rather than patching symptoms
    0
    installs
  78. Receiving Code Review · drvoss
    Use when you have just received code review feedback (human or agent) and are about to act on it — verify each item against the codebase before implementing, and push back with technical reasoning instead of performative agreement
    0
    installs
  79. Opportunity Solution Tree · drvoss
    Use when you need to ensure every feature in the backlog connects to a measurable business outcome — applies Teresa Torres' OST framework to map outcomes → opportunities → solutions → experiments.
    0
    installs
  80. Doubt Driven Development · drvoss
    Use when a non-trivial decision should not stand without a fresh-context challenge - isolate the artifact and contract, run an adversarial review before committing, and reconcile the findings while change is still cheap.
    0
    installs
  81. Background Agent · drvoss
    Use when a task is too long to block the current session or should run autonomously — delegates to a cloud background agent via & or /delegate so work can continue on GitHub while you keep moving locally, not in a local async PowerShell session.
    0
    installs
  82. Ecosystem Intake · drvoss
    Use when monitoring a curated ecosystem source and you need to turn new items into concrete adopt/adapt/reject backlog candidates — combines GitHub-native reading with SQL triage and repository-fit scoring.
    0
    installs
  83. Github Actions Efficiency · drvoss
    Use when auditing GitHub Actions workflows for efficiency — reducing CI minutes, cutting costs, eliminating redundant runs, or optimizing caching and concurrency.
    0
    installs
  84. Actions Debugging · drvoss
    Use when a GitHub Actions workflow fails — diagnose the run log, identify the root cause, and apply a targeted fix
    0
    installs
  85. Knowledge Curator · drvoss
    Use when repeated lessons, pitfalls, or decisions should move from temporary session context into durable project guidance — curate what to keep, what to discard, and where it belongs.
    0
    installs
  86. Plan Mode Mastery · drvoss
    Use when starting a complex multi-step task to create an approved plan, track todos in SQL, and execute with checkpoints
    0
    installs
  87. Spec Driven Development · drvoss
    Use before starting any non-trivial feature to write a technical spec first — prevents misaligned implementation and scope creep
    0
    installs
  88. Autopilot Patterns · drvoss
    Use when you're ready to let Copilot execute a multi-step plan autonomously — configures appropriate guardrails, handles plan-to-autopilot transitions, and sets safety boundaries.
    0
    installs
  89. Github Code Search · drvoss
    Use when you need real-world implementation examples or cross-repository context — search GitHub's global code index with the built-in MCP tools and reuse the results as grounded context.
    0
    installs
  90. Github Pr Workflow · drvoss
    Use when creating, updating, or managing pull requests — automates the full PR lifecycle (open, review requests, labels, merge) via GitHub MCP
    0
    installs
  91. Session Management · drvoss
    Use when a task spans multiple steps or sessions and needs structured state tracking — leverages the built-in SQLite session database for todos, dependencies, and batch operation progress.
    0
    installs
  92. Task Intake Router · drvoss
    Use when a request arrives and the right execution path is unclear — routes the work to the correct mode, agent type, model tier, and delegation pattern before implementation starts.
    0
    installs
  93. API And Interface Design · drvoss
    Use when defining a public API, CLI, webhook, or SDK surface — lock the contract first so compatibility, validation, and versioning stay intentional instead of accidental
    0
    installs
  94. Performance Optimization · drvoss
    Use when performance is a real concern — measure first, isolate the bottleneck, and prove the improvement instead of guessing
    0
    installs
  95. Architecture Decisions · drvoss
    Use when making significant, hard-to-reverse technical decisions to document context, rationale, and consequences as Architecture Decision Records (ADRs)
    0
    installs
  96. Agentic Engineering · drvoss
    Use when designing or decomposing a task for agent execution — applies 15-minute task units, eval-first loops, and explicit input/output contracts so agents work reliably without implicit state
    0
    installs
  97. Github Issue Triage · drvoss
    Use when you have a backlog of unorganized GitHub Issues — bulk-reads, labels, prioritizes, and assigns issues at scale using Copilot's built-in GitHub MCP tools.
    0
    installs
  98. Deprecation And Migration · drvoss
    Use when removing old APIs, migrating to new patterns, or cleaning up legacy code — treats code as liability and follows a structured removal process
    0
    installs
  99. Source Driven Development · drvoss
    Use when implementing framework-specific or library-specific code — verify non-trivial APIs against official documentation before writing them, and record the source in task notes, docs, or the PR.
    0
    installs
  100. Cross Session Memory · drvoss
    Use when you need to recover context, decisions, or artifacts across multiple Copilot CLI sessions — search prior session history and resume with the right files, notes, and state.
    0
    installs