plan-forge performance.instructions.md

Performance instructions for .NET code, including analysis of frequently used code paths, read-only collections, generated logging, regular expressions, and asynchronous work.

In plain words
What is it for?
Reviewing request-path performance, choosing frozen collections, reducing logging and regular-expression overhead, and improving async code.
Why use it?
They focus optimization on code that runs often and encourage measuring performance before changing it.

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/srnichols/plan-forge/performance
Clone the repo
git clone --depth 1 https://github.com/srnichols/plan-forge

Made for: GitHub Copilot.

Per session 1,041 This file is loaded in full into every session.
When invoked 1,041 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.01041 $0.01041
Opus 5 $0.00521 $0.00521
Sonnet 5 $0.00208 $0.00208
Haiku 4.5 $0.00104 $0.00104

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

Security

Grade A, and why

plan-forge performance.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.

presets/dotnet/.github/instructions/performance.instructions.md · 132 lines

How it starts

The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Performance Patterns (.NET)

Hot Path vs Cold Path

Hot path: Code executed on every request (middleware, auth, routing, serialization). Cold path: Code run infrequently (startup, config reload, migration).

Rules:

  • Optimize hot paths aggressively; cold paths can favor readability
  • Profile before optimizing — don't guess

Frozen Collections (Hot Config)

// ✅ Use FrozenDictionary for read-heavy lookups (routing, config, tenant mapping)
private static readonly FrozenDictionary<string, TenantConfig> _tenantCache =
    tenants.ToFrozenDictionary(t => t.Id, t => t.Config);

// ✅ Use FrozenSet for membership checks
private static readonly FrozenSet<string> _validRoles =
    new[] { "Admin", "Editor", "Viewer" }.ToFrozenSet();

Source-Generated Logging

// ❌ NEVER on hot paths (allocates params array)
_logger.LogInformation("Processing request for tenant {TenantId}", tenantId);

// ✅ ALWAYS use source-generated (zero-alloc)
[LoggerMessage(Level = LogLevel.Information, Message = "Processing request for tenant {TenantId}")]
partial void LogProcessingRequest(string tenantId);

Source-Generated Regex

// ❌ NEVER compile at runtime
var regex = new Regex(@"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$");

// ✅ ALWAYS use source-generated
[GeneratedRegex(@"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$")]
private static partial Regex EmailRegex();

Async Best Practices

  • NEVER use .Result, .Wait(), .GetAwaiter().GetResult() — causes thread pool starvation
  • ALWAYS pass CancellationToken through the full call chain
  • AVOID Task.Run to wrap synchronous code — keep sync methods sync
  • Use ValueTask<T> for methods that often complete synchronously

String Optimization

// ❌ Excessive string allocations
string result = input.ToLower().Replace("-", "").Trim();

// ✅ Use Span<char> for hot paths
ReadOnlySpan<char> span = input.AsSpan().Trim();

Database Performance

  • Use CreateReadOnlyConnectionAsync() for SELECT queries (routes to read replicas)
  • Batch queries with WHERE id = ANY(@Ids) instead of looping
  • Select only needed columns — never SELECT *
  • Add indexes for frequently filtered/sorted columns
  • Use DataLoaders in GraphQL to prevent N+1

Read the full file on GitHub · 132 lines

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 · 132 lines · 1,041 tokens per session scan A aa99916ae26e

Subscribe to this mod's changes

plan-forge performance.instructions.md is an instructions file published in the GitHub repository srnichols/plan-forge (5 stars, last pushed 21d ago), licensed MIT. It adds 1,041 tokens to every session, about $0.0052 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.

Related

Other instructions, from other repositories

dotnet-skills AGENTS.md

Instructions for managedcode/dotnet-skills, covering agents.md, purpose, solution topology, rule precedence and path and linking rules.

managedcode/dotnet-skills · 13,592 tokens

dotnet-skills copilot-instructions.md

Instructions for managedcode/dotnet-skills: Use AGENTS.md as the repository-wide source of truth for workflow, catalog structure, release policy, and skill maintenance rules.

managedcode/dotnet-skills · 97 tokens

Perigon.CLI copilot-instructions.md

Instructions for AterDev/Perigon.CLI, covering github copilot instructions, general guidelines, 技术栈, 项目结构与分层 and 代码风格约定.

AterDev/Perigon.CLI · 1,254 tokens

copilot-instructions copilot-instructions.md

Instructions for SebastienDegodez/copilot-instructions, covering copilot instructions, language policy, development code generation and workflow implementation.

SebastienDegodez/copilot-instructions · 364 tokens

maf-doctor maf-deployment.instructions.md

Always-loaded production-deployment patterns for MAF 1.3.0. Auto-applies to Program.cs, DI registration files, and infra config. Covers ManagedIdentityCredential, MaxTokens caps, secret handling, OpenTelemetry wiring, and the analyzer rules that catch regressions at write time.

joslat/maf-doctor · 1,884 tokens

maf-doctor copilot-instructions.md

Instructions for joslat/maf-doctor, covering maf 1.3.0 migration — auto-loaded constraints, maf 1.3.0 — constraints & breaking changes reference, hard constraints (never violate), fan-out / fan-in rules (silent failure risk) and key breaking changes.

joslat/maf-doctor · 1,604 tokens