<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Luke Hackett</title>
    <description>The latest articles on Forem by Luke Hackett (@lukehackett).</description>
    <link>https://forem.com/lukehackett</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2945922%2F426cc328-dcf5-499d-ad74-80292364347e.jpeg</url>
      <title>Forem: Luke Hackett</title>
      <link>https://forem.com/lukehackett</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/lukehackett"/>
    <language>en</language>
    <item>
      <title>GitHub Copilot Prompts vs Skills vs Instructions: What's the Difference and When to Use Each</title>
      <dc:creator>Luke Hackett</dc:creator>
      <pubDate>Sun, 17 May 2026 19:09:07 +0000</pubDate>
      <link>https://forem.com/lukehackett/github-copilot-prompts-vs-skills-vs-instructions-whats-the-difference-and-when-to-use-each-2f8l</link>
      <guid>https://forem.com/lukehackett/github-copilot-prompts-vs-skills-vs-instructions-whats-the-difference-and-when-to-use-each-2f8l</guid>
      <description>&lt;p&gt;You've been using GitHub Copilot for a while. It's great out of the box, but you keep catching yourself repeating the same context. "We use Vitest, not Jest.", "Always use server actions, not API routes.", "Run migrations with this specific command."&lt;/p&gt;

&lt;p&gt;GitHub Copilot now has three primitives that let you codify this kind of knowledge: &lt;strong&gt;Instructions&lt;/strong&gt;, &lt;strong&gt;Prompts&lt;/strong&gt;, and &lt;strong&gt;Skills&lt;/strong&gt;. They overlap just enough to be confusing, but once you see how each one works, the choice becomes obvious.&lt;/p&gt;

&lt;p&gt;Let's break them down.&lt;/p&gt;




&lt;h2&gt;
  
  
  Instructions: The Always-On Rules
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;instructions.md&lt;/code&gt; are Markdown files that passively shape Copilot's behavior. Think of them as the coding standards document your team actually reads - because the AI reads it for them.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where they live:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;.github/copilot-instructions.md&lt;/code&gt; - project-wide rules, loaded on every interaction&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;.github/instructions/*.instructions.md&lt;/code&gt; - file-specific or task-specific rules, loaded on-demand&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  When to use instructions
&lt;/h3&gt;

&lt;p&gt;Use instructions when the guidance applies broadly and should &lt;strong&gt;always be in play&lt;/strong&gt; without anyone explicitly asking for it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example 1: Project-wide standards&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.github/copilot-instructions.md&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# Project Guidelines&lt;/span&gt;

&lt;span class="gu"&gt;## Code Style&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Use functional components with hooks, never class components
&lt;span class="p"&gt;-&lt;/span&gt; Prefer named exports over default exports
&lt;span class="p"&gt;-&lt;/span&gt; Use &lt;span class="sb"&gt;`pnpm`&lt;/span&gt;, not &lt;span class="sb"&gt;`npm`&lt;/span&gt; or &lt;span class="sb"&gt;`yarn`&lt;/span&gt;

&lt;span class="gu"&gt;## Architecture&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; API routes live in &lt;span class="sb"&gt;`src/app/api/`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; All database access goes through the repository pattern in &lt;span class="sb"&gt;`src/lib/db/`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Never import server-only modules in client components

&lt;span class="gu"&gt;## Testing&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Run tests with &lt;span class="sb"&gt;`pnpm test`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Use Vitest, not Jest
&lt;span class="p"&gt;-&lt;/span&gt; Co-locate test files next to source: &lt;span class="sb"&gt;`Button.test.tsx`&lt;/span&gt; beside &lt;span class="sb"&gt;`Button.tsx`&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This file is loaded into every Copilot interaction. When you ask it to write a test, it'll reach for Vitest. When it scaffolds a component, it'll use a named export. No reminders needed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example 2: File-specific rules loaded automatically&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.github/instructions/react-components.instructions.md&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Standards&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;for&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;React&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;components"&lt;/span&gt;
&lt;span class="na"&gt;applyTo&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;src/components/**/*.tsx"&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;

&lt;span class="gh"&gt;# React Component Standards&lt;/span&gt;
&lt;span class="p"&gt;
-&lt;/span&gt; Use the &lt;span class="sb"&gt;`cn()`&lt;/span&gt; utility from &lt;span class="sb"&gt;`@/lib/utils`&lt;/span&gt; for conditional classes
&lt;span class="p"&gt;-&lt;/span&gt; Props types go above the component, named &lt;span class="sb"&gt;`{ComponentName}Props`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Use &lt;span class="sb"&gt;`forwardRef`&lt;/span&gt; for any component that wraps a native element
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The &lt;code&gt;applyTo&lt;/code&gt; glob means this loads automatically whenever Copilot is working on files in &lt;code&gt;src/components/&lt;/code&gt;. You never invoke it — it just shows up when relevant.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example 3: On-demand task instructions&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.github/instructions/database-migrations.instructions.md&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Use&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;when&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;writing&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;database&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;migrations,&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;schema&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;changes,&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;or&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;data&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;transformations"&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;

&lt;span class="gh"&gt;# Migration Guidelines&lt;/span&gt;
&lt;span class="p"&gt;
-&lt;/span&gt; Always create reversible migrations with explicit &lt;span class="sb"&gt;`up`&lt;/span&gt; and &lt;span class="sb"&gt;`down`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Never drop a column in the same release as the code removal
&lt;span class="p"&gt;-&lt;/span&gt; Add indexes concurrently: &lt;span class="sb"&gt;`CREATE INDEX CONCURRENTLY`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Test rollback locally before pushing
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No &lt;code&gt;applyTo&lt;/code&gt; here. Instead, the &lt;code&gt;description&lt;/code&gt; tells Copilot &lt;em&gt;when&lt;/em&gt; this instruction is relevant. When you ask Copilot to help with a migration, it reads the description, recognizes the match, and pulls in the instructions automatically.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Takeaway
&lt;/h3&gt;

&lt;p&gt;Instructions are &lt;strong&gt;passive&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;They shape behavior without you thinking about them. The best instructions are ones your team writes once and then forgets exist — because Copilot just does the right thing.&lt;/p&gt;




&lt;h2&gt;
  
  
  Prompts: The Reusable Tasks
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What they are:&lt;/strong&gt; Template files for specific, repeatable tasks you trigger on-demand. They're like saved chat messages with superpowers — you can pin them to specific models, restrict their tools, and parameterize inputs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where they live:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;.github/prompts/*.prompt.md&lt;/code&gt; — workspace-scoped&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;~/.config/github-copilot/prompts/*.prompt.md&lt;/code&gt; — personal, follows you across projects&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  When to use prompts
&lt;/h3&gt;

&lt;p&gt;Use prompts when you have a &lt;strong&gt;single, focused task&lt;/strong&gt; you do repeatedly and want consistent output every time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example 1: Generating tests from code&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.github/prompts/generate-tests.prompt.md&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Generate&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;test&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;cases&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;for&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;the&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;selected&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;code"&lt;/span&gt;
&lt;span class="na"&gt;agent&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;agent"&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;

Generate comprehensive test cases for the provided code:
&lt;span class="p"&gt;
-&lt;/span&gt; Include happy path, edge cases, and error scenarios
&lt;span class="p"&gt;-&lt;/span&gt; Follow existing test patterns in this codebase
&lt;span class="p"&gt;-&lt;/span&gt; Use descriptive test names that read like specifications
&lt;span class="p"&gt;-&lt;/span&gt; Mock external dependencies, never hit real APIs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now type &lt;code&gt;/generate-tests&lt;/code&gt; in chat, and you get consistent, well-structured tests every time. No re-explaining your preferences.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example 2: Writing a changelog entry&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.github/prompts/changelog.prompt.md&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Draft&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;a&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;changelog&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;entry&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;from&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;recent&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;git&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;commits"&lt;/span&gt;
&lt;span class="na"&gt;agent&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;agent"&lt;/span&gt;
&lt;span class="na"&gt;tools&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;terminal&lt;/span&gt;&lt;span class="pi"&gt;]&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;

Review the git log since the last tag and draft a changelog entry.

Format:
&lt;span class="gu"&gt;## [version] - YYYY-MM-DD&lt;/span&gt;
&lt;span class="gu"&gt;### Added&lt;/span&gt;
&lt;span class="gu"&gt;### Changed&lt;/span&gt;
&lt;span class="gu"&gt;### Fixed&lt;/span&gt;

Group by type. Use past tense. Link PR numbers. Keep entries to one line.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example 3: PR description generator&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.github/prompts/pr-description.prompt.md&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Generate&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;a&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;PR&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;description&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;from&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;the&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;current&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;branch&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;diff"&lt;/span&gt;
&lt;span class="na"&gt;agent&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;agent"&lt;/span&gt;
&lt;span class="na"&gt;tools&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;terminal&lt;/span&gt;&lt;span class="pi"&gt;]&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;

Generate a pull request description based on the current branch's diff against main.

Include:
&lt;span class="p"&gt;1.&lt;/span&gt; &lt;span class="gs"&gt;**Summary**&lt;/span&gt; — what changed and why (2-3 sentences)
&lt;span class="p"&gt;2.&lt;/span&gt; &lt;span class="gs"&gt;**Changes**&lt;/span&gt; — bullet list of notable changes
&lt;span class="p"&gt;3.&lt;/span&gt; &lt;span class="gs"&gt;**Testing**&lt;/span&gt; — how this was tested
&lt;span class="p"&gt;4.&lt;/span&gt; &lt;span class="gs"&gt;**Screenshots**&lt;/span&gt; — placeholder if UI changed

Use the conventional commits in the log to understand intent.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Key Takeaway
&lt;/h3&gt;

&lt;p&gt;Prompts are &lt;strong&gt;active&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;You invoke them deliberately when you want to run a specific task. They're your saved workflows — small, focused, and reusable. If you're reaching for the same chat prompt more than twice, it should be a prompt file.&lt;/p&gt;




&lt;h2&gt;
  
  
  Skills: The Multi-Step Workflows
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What they are:&lt;/strong&gt; Folders containing instructions, scripts, templates, and reference docs that Copilot loads on-demand for complex, multi-step tasks. Skills are the heavy machinery — they bundle everything the agent needs to execute a sophisticated workflow.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where they live:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;.github/skills/&amp;lt;skill-name&amp;gt;/SKILL.md&lt;/code&gt; — workspace-scoped&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;~/.copilot/skills/&amp;lt;skill-name&amp;gt;/SKILL.md&lt;/code&gt; — personal&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  When to use skills
&lt;/h3&gt;

&lt;p&gt;Use skills when you need a &lt;strong&gt;multi-step workflow with bundled assets&lt;/strong&gt; — scripts to run, templates to fill, reference docs to consult. If a prompt is a recipe card, a skill is the entire cookbook chapter with ingredients included.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example 1: A deployment verification skill&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.github/skills/verify-deployment/
├── SKILL.md
├── scripts/
│   └── smoke-test.sh
└── references/
    └── endpoints.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;SKILL.md&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;verify-deployment&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;Verify&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;a&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;deployment&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;is&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;healthy.&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;Use&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;when&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;deploying,&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;after&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;deploy,&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;smoke&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;test,&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;health&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;check.'&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;

&lt;span class="gh"&gt;# Deployment Verification&lt;/span&gt;

&lt;span class="gu"&gt;## Procedure&lt;/span&gt;
&lt;span class="p"&gt;1.&lt;/span&gt; Ask which environment (staging/production)
&lt;span class="p"&gt;2.&lt;/span&gt; Run the &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;smoke test script&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;./scripts/smoke-test.sh&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; against the environment
&lt;span class="p"&gt;3.&lt;/span&gt; Check each endpoint listed in &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;endpoints reference&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;./references/endpoints.md&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;4.&lt;/span&gt; Report results as a table: endpoint, status, response time
&lt;span class="p"&gt;5.&lt;/span&gt; Flag any endpoint returning non-200 or responding &amp;gt; 2s
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This bundles the smoke test script and endpoint list &lt;em&gt;with&lt;/em&gt; the instructions. The agent doesn't need to search for them or ask you where they are.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example 2: A component scaffolding skill&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.github/skills/new-component/
├── SKILL.md
└── assets/
    ├── component.tsx.template
    ├── component.test.tsx.template
    └── component.stories.tsx.template
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;SKILL.md&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;new-component&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;Scaffold&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;a&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;new&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;React&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;component&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;with&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;tests&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;and&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;stories.&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;Use&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;when&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;creating&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;components,&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;new&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;UI&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;element,&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;add&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;component.'&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;

&lt;span class="gh"&gt;# New Component&lt;/span&gt;

&lt;span class="gu"&gt;## Procedure&lt;/span&gt;
&lt;span class="p"&gt;1.&lt;/span&gt; Ask for the component name and directory
&lt;span class="p"&gt;2.&lt;/span&gt; Create from &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;component template&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;./assets/component.tsx.template&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;3.&lt;/span&gt; Create test from &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;test template&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;./assets/component.test.tsx.template&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;4.&lt;/span&gt; Create story from &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;stories template&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;./assets/component.stories.tsx.template&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;5.&lt;/span&gt; Add barrel export to the directory's &lt;span class="sb"&gt;`index.ts`&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Key Takeaway
&lt;/h3&gt;

&lt;p&gt;Skills are &lt;strong&gt;orchestrations&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;They package complex workflows with their dependencies. The bar for creating a skill is higher — you need a folder structure, and the task needs to be complex enough to justify it. But for workflows you run regularly, they're transformative.&lt;/p&gt;




&lt;h2&gt;
  
  
  Decisions, Decisions, Decisions
&lt;/h2&gt;

&lt;p&gt;The examples above should help&lt;/p&gt;

&lt;p&gt;You've seen all three, but you're probably still wondering which option best fits your usecase. &lt;/p&gt;

&lt;p&gt;Don't overthink it — ask yourself these questions:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Question&lt;/th&gt;
&lt;th&gt;Answer&lt;/th&gt;
&lt;th&gt;Use&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Should this apply without anyone asking?&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Instructions&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Is it a single, focused task?&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Prompt&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Does it need scripts, templates, or multi-step orchestration?&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Skill&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Does it apply to specific file types?&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Instructions&lt;/strong&gt; (with &lt;code&gt;applyTo&lt;/code&gt;)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Do I want it as a slash command?&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Prompt&lt;/strong&gt; or &lt;strong&gt;Skill&lt;/strong&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Is it project-wide context?&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Instructions&lt;/strong&gt; (&lt;code&gt;copilot-instructions.md&lt;/code&gt;)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Remember:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Instructions&lt;/strong&gt; = "Always do this" (passive)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Prompts&lt;/strong&gt; = "Do this now" (active, simple)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Skills&lt;/strong&gt; = "Do this now, and here's everything you need" (active, complex)&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;Don't try to build all three at once. &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Start with &lt;code&gt;copilot-instructions.md&lt;/code&gt;&lt;/strong&gt; — write down the things you keep correcting Copilot on. "Use Vitest.", "We use pnpm.", "Components go here." This takes five minutes and pays off immediately.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Notice your repeated prompts&lt;/strong&gt; — if you've typed "write tests for this using our patterns" more than twice, make it a &lt;code&gt;.prompt.md&lt;/code&gt; file.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Graduate to skills when you feel the friction&lt;/strong&gt; — when a prompt isn't enough because you need to reference a script or template, that's your signal to create a skill folder.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The goal isn't to configure Copilot perfectly on day one. It's to gradually encode your team's knowledge so the AI gets smarter about &lt;em&gt;your&lt;/em&gt; codebase over time.&lt;/p&gt;

</description>
      <category>githubcopilot</category>
      <category>github</category>
      <category>vscode</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
