snippy copilot-instructions.md

A set of project instructions for building Azure Functions in Python. Azure Functions runs small pieces of code in response to events such as HTTP requests, while Durable Functions coordinates longer workflows.

In plain words
What is it for?
Use it when creating or testing Azure Functions, including workflows that run activities in parallel, access Azure services, handle secrets, or return HTTP responses.
Why use it?
It keeps generated code, tests, reviews, commits, and pull requests consistent with the project's technical requirements and safety rules.

Instructions file for GitHub Copilot

Install

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.

agentmods
npx agentmods add instructions/azure-samples/snippy/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/Azure-Samples/snippy

Made for: GitHub Copilot.

Per session 548 This file is loaded in full into every session.
When invoked 548 The same file β€” it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5 $0.00548 $0.00548
Opus 5 $0.00274 $0.00274
Sonnet 5 $0.00110 $0.00110
Haiku 4.5 $0.00055 $0.00055

Measured 2d ago against content hash f7d92d19b5ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

snippy 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 2d ago.

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.

.github/copilot-instructions.md Β· 38 lines

What it actually says

πŸ‘‰ Code-generation instructions

  • Always target Azure Functions Python v2 (azure-functions >= 1.23, blueprint model).
  • Create the global app = func.FunctionApp() once and call app.register_blueprint(bp).
  • Durable orchestrators must be def (sync) and use yield + context.task_all(...).
  • Activity functions should be async def and return JSON-serialisable data.
  • Use type hints throughout and a one-line Google-style docstring summary.
  • Use logging (level INFO) instead of print.
  • Access secrets via os.environ[...]; never commit literals.
  • Default to Python 3.11 features (e.g., match statements are allowed).
  • When calling Azure SDKs, prefer their async variants (BlobServiceClient.from_connection_string, etc.).
  • Return HTTP results with azure.functions.HttpResponse and do not await sync methods (req.get_json(), client.create_check_status_response()).

πŸ‘‰ Test-generation instructions

  • Use pytest + pytest-asyncio.
  • Mark async tests with @pytest.mark.asyncio.
  • Patch Azure SDK calls with unittest.mock.AsyncMock / MagicMock.
  • Aim for 100 % branch coverage of orchestrator fan-out/fan-in paths.
  • Keep test payloads small; embed them inline rather than external files.

πŸ‘‰ Code-review instructions

  • Verify no synchronous APIs are accidentally awaited.
  • Ensure every orchestrator is registered in a blueprint and yields on tasks.
  • Check for missing logging, un-handled exceptions, or secret leakage.
  • Confirm environment-variable names match those used in local.settings.json.
  • Flag any direct network calls inside orchestrators (should be in activities).

πŸ‘‰ Commit-message generation instructions

  • Follow Conventional Commits (feat:, fix:, test:, chore: …).
  • First line ≀ 72 chars, present-tense imperative.
  • Include a short body describing why and reference issues (fixes #123).

πŸ‘‰ Pull-request title/description instructions

  • Title: Imperative, ≀ 60 chars (e.g., β€œfeat: add Cosmos vector search”).
  • Description:
    1. What & why (one paragraph).
    2. β€œ### Changes” bullet list.
    3. β€œ### Testing” explaining manual/automated tests.
    4. β€œ### Notes” for env vars, breaking changes, or deployment steps.
Changes

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.

  1. 2d ago First seen Β· 38 lines Β· 548 tokens per session scan A f7d92d19b5ec

Subscribe to this mod's changes

snippy copilot-instructions.md is an instructions file published in the GitHub repository Azure-Samples/snippy (114 stars, last pushed 8mo ago), licensed MIT. It adds 548 tokens to every session, about $0.0027 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-30.

Related

Other instructions, from other repositories

claude-code-settings copilot-instructions.md

Instructions for feiskyer/claude-code-settings, covering claude.md, environment setup, required dependencies, configuration and skills.

feiskyer/claude-code-settings Β· 649 tokens

DevoxxGenieIDEAPlugin GEMINI.md

Instructions for devoxx/DevoxxGenieIDEAPlugin, a project described as: DevoxxGenie is an agentic plugin for IntelliJ IDEA that uses local LLM's (Ollama, LMStudio, GPT4All, Jan and Llama.cpp) and Cloud based LLMs to help review, test, explain your project code. Latest version now also supports Spec Driven Development…

devoxx/DevoxxGenieIDEAPlugin Β· 257 tokens

packmind packmind-rest-api-endpoint-design.instructions.md

Instructions for PackmindHub/packmind: Conventions for designing REST API endpoints that are predictable, self-documenting, and aligned with distinct business actions. Favors dedicated action endpoints over generic status updates, and rout... .

PackmindHub/packmind Β· 157 tokens

calva-backseat-driver changelog.instructions.md

CHANGELOG.md conventions β€” audience, scope, and entry format for the Backseat Driver extension changelog.

BetterThanTomorrow/calva-backseat-driver Β· 224 tokens

agent-rules child-process.instructions.md

Instructions for lirantal/agent-rules, covering system processes secure coding guidelines, your mission and spawning system processes.

lirantal/agent-rules Β· 196 tokens

agentconfig.org AGENTS.md

Instructions for agentconfig/agentconfig.org, covering agent instructions for agentconfig.org, project overview, target audience, site structure and tech stack.

agentconfig/agentconfig.org Β· 2,368 tokens