Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/amir0135/github-copilot-use-cases/copilot-instructionsgit clone --depth 1 https://github.com/amir0135/github-copilot-use-casesWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01294 | $0.01294 |
| Opus 5 | $0.00647 | $0.00647 |
| Sonnet 5 | $0.00259 | $0.00259 |
| Haiku 4.5 | $0.00129 | $0.00129 |
Grade A, and why
github-copilot-use-cases copilot-instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 248 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitHub Copilot Instructions and Use Cases
Overview
This document provides comprehensive guidelines and use cases for effectively using GitHub Copilot in software development projects.
General Copilot Best Practices
Code Generation
- Write clear, descriptive comments before generating code
- Use meaningful function and variable names as context
- Break complex tasks into smaller, focused functions
- Review and test all generated code before committing
Prompt Engineering
- Be specific about requirements and constraints
- Include relevant context in comments
- Use examples when requesting specific patterns
- Iterate on prompts to improve results
Common Use Cases
1. Function Implementation
// Generate a function that validates email addresses using regex
// Should return true for valid emails, false otherwise
2. Documentation Generation
# Generate comprehensive docstring for this function
def process_data(data, filters, options):
# Implementation here
3. Test Case Creation
// Generate unit tests for the UserService class
// Include positive and negative test cases
// Use Jest testing framework
4. Code Refactoring
// Refactor this method to use dependency injection
// Apply SOLID principles
// Improve error handling
5. API Integration
# Create a REST API client for GitHub API
# Include authentication and error handling
# Support GET, POST, PUT, DELETE operations
Language-Specific Guidelines
JavaScript/TypeScript
- Request TypeScript interfaces for data structures
- Ask for proper async/await patterns
- Include error handling with try/catch blocks
- Request JSDoc comments for functions
Python
- Ask for type hints in function signatures
- Request docstrings following Google or NumPy style
- Include proper exception handling
- Request logging where appropriate
Java
- Request proper access modifiers
- Ask for JavaDoc comments
- Include appropriate design patterns
- Request proper exception handling
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 248 lines · 1,294 tokens per session scan A 5ef74bdda7d4
github-copilot-use-cases copilot-instructions.md is an instructions file published in the GitHub repository amir0135/github-copilot-use-cases (2 stars, last pushed 21d ago), licensed MIT. It adds 1,294 tokens to every session, about $0.0065 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
copilot-brag-sheet AGENTS.md
Instructions for microsoft/copilot-brag-sheet, covering agents.md, 1. project overview, 2. architecture map, 3. build / test / lint commands and run a single test file.
spec-kitty AGENTS.md
AGENTS.md instructions for Priivacy-ai/spec-kitty, covering spec kitty development guidelines, ⚠️ critical: load the project charter first, ⚠️ critical: template source location, ⚠️ critical: use canonical sources, never improvise and ⚠️ critical: git workflow — no direct pushes to origin/main.
apm python.instructions.md
Python development guidelines.
goodboy AGENTS.md
Instructions for akhayam99/goodboy, covering agents.md, where new code goes, naming, components and exports and store selectors and memoization.
copilot-proxy-api CLAUDE.md
Instructions for voidsteed/copilot-proxy-api, covering claude.md, project overview, common commands, architecture and entry points & cli structure.
agent-toolkit AGENTS.md
Instructions for ulises-jeremias/agent-toolkit, covering agents.md — ai agent contract, what this toolkit does, repository structure, operating rules and how to add a skill.