AgentStack
drvoss avatar

drvoss

50 listings · 0 installs

Open-source publisher. Listings imported from github.com/drvoss — credited to the original author with their license.

↗ github.com/drvoss
50+ results
Self-run
SKILL

Fix Build Errors

Use when a build, compilation, or type-check fails — diagnose the error, identify root cause, and apply the minimal fix to get green

0
15
Free
Self-run
SKILL

Ai Visibility

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
16
Free
Self-run
SKILL

Api And Interface Design

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
15
Free
Self-run
SKILL

Session Management

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
12
Free
Self-run
SKILL

Team Planner

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
15
Free
Self-run
SKILL

Review

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
14
Free
Self-run
SKILL

Knowledge Curator

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
12
Free
Self-run
SKILL

Nextjs Prisma

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
14
Free
Self-run
SKILL

Autopilot Patterns

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
12
Free
Self-run
SKILL

Systematic Debugging

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
18
Free
Self-run
SKILL

React Vitest

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
18
Free
Self-run
SKILL

Actions Debugging

Use when a GitHub Actions workflow fails — diagnose the run log, identify the root cause, and apply a targeted fix

0
13
Free
Self-run
SKILL

Copilot Memory

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
14
Free
Self-run
SKILL

Source Driven Development

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
13
Free
Self-run
SKILL

Ide Switching

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
11
Free
Self-run
SKILL

Sub Agent Sandboxing

Use when delegated work needs runtime guardrails — constrain sub-agents with loop detection, circuit breakers, and escalating sandbox levels before accepting their output

0
16
Free
Self-run
SKILL

Fleet Parallel

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
13
Free
Self-run
SKILL

Refactor Clean

Use when code has grown complex, duplicated, or cluttered — clean up structure and remove dead code without changing observable behavior

0
14
Free
Self-run
SKILL

Context Prime

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
11
Free
Self-run
SKILL

Scope Guard

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
13
Free
Self-run
SKILL

Spec Driven Development

Use before starting any non-trivial feature to write a technical spec first — prevents misaligned implementation and scope creep

0
14
Free
Self-run
SKILL

Stack Detector

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
14
Free
Self-run
SKILL

Pr Multi Perspective Review

Review a pull request from 6 perspectives (PM, Dev, QA, Security, DevOps, UX) for comprehensive, bias-free feedback

0
14
Free
Self-run
SKILL

Mcp Builder

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
18
Free
Self-run
SKILL

Performance Optimization

Use when performance is a real concern — measure first, isolate the bottleneck, and prove the improvement instead of guessing

0
17
Free
Self-run
SKILL

Mcp Ecosystem

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
18
Free
Self-run
SKILL

Token Cost Optimizer

Use before a large Copilot task when model choice, context size, or parallelism could drive up billed usage — estimate cost pressure early and apply Copilot-specific reduction tactics before you run

0
19
Free
Self-run
SKILL

Github Issue Triage

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
14
Free
Self-run
SKILL

Background Agent

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
16
Free
Self-run
SKILL

Fix Github Issue

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
19
Free
Self-run
SKILL

Diagnose

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
14
Free
Self-run
SKILL

Deprecation And Migration

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
17
Free
Self-run
SKILL

Context Engineering

Use when designing prompts or agent tasks to optimize information delivery — minimize noise, maximize signal for AI agents

0
16
Free
Self-run
SKILL

Github Codespaces Efficiency

>

0
19
Free
Self-run
SKILL

Ecosystem Intake

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
18
Free
Self-run
SKILL

Cpp Debugging

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
17
Free
Self-run
SKILL

Nestjs Prisma

Use when building a NestJS application with Prisma — covers PrismaService setup as an injectable singleton, repository pattern integration, and testing with Prisma mocks.

0
14
Free
Self-run
SKILL

Github Code Search

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
13
Free
Self-run
SKILL

Agentic Engineering

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
17
Free
Self-run
SKILL

Content Strategy

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
19
Free
Self-run
SKILL

Improve Codebase Architecture

Use when a codebase feels hard to change, test, or navigate — surface architectural friction, identify deeper module seams, and walk one candidate into a concrete refactoring direction.

0
17
Free
Self-run
SKILL

Seo

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
19
Free
Self-run
SKILL

Task Intake Router

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
15
Free
Self-run
SKILL

Plan Mode Mastery

Use when starting a complex multi-step task to create an approved plan, track todos in SQL, and execute with checkpoints

0
15
Free
Self-run
SKILL

Skill Creator

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
19
Free
Self-run
SKILL

Code Review

Use when reviewing code changes for quality, correctness, and security — runs a structured checklist with severity-rated findings

0
15
Free
Self-run
SKILL

Multi Model Strategy

Use when choosing which AI model to use for a task — pick the right model family and tier based on cost, speed, context needs, and reasoning depth

0
19
Free
Self-run
SKILL

Cross Session Memory

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
14
Free
Self-run
SKILL

Github Pr Workflow

Use when creating, updating, or managing pull requests — automates the full PR lifecycle (open, review requests, labels, merge) via GitHub MCP

0
21
Free
Self-run
SKILL

Prototype

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
19
Free