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/aspose-pdf/agentic-net-examples/copilot-instructionsgit clone --depth 1 https://github.com/aspose-pdf/agentic-net-examplesWhat 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.00418 | $0.00418 |
| Opus 5 | $0.00209 | $0.00209 |
| Sonnet 5 | $0.00084 | $0.00084 |
| Haiku 4.5 | $0.00042 | $0.00042 |
Grade A, and why
agentic-net-examples 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.
What it actually says
Copilot Instructions
This repository is a curated collection of validated, build-tested C# examples for Aspose.PDF for .NET (26.7.0) targeting net10.0.
The canonical coding-agent guide is AGENTS.md at the repository root, and there is one per category folder. Read those first before suggesting changes.
When suggesting code in this repository
- Match the style of the surrounding
.csfiles. They are self-containeddotnet new consoleexamples, not a multi-file project. - Use fully-qualified
Aspose.Pdf.*types (e.g.Aspose.Pdf.Drawing.Path) soSystem.IO.Pathdoes not shadow them. - Wrap every
IDisposablein ausingblock.Documentin particular must be disposed deterministically. - Aspose.PDF uses 1-based page indexing (
pdfDoc.Pages[1]is the first page). Off-by-one is the most common bug. - Write errors to
Console.Error.WriteLinewith theError:prefix. Successful operations log toConsole.WriteLine.
Do not
- Edit
AGENTS.md,index.json, orREADME.mdby hand. They are regenerated by an external generator and your edits will be overwritten. - Add a
.csprojper example. CI synthesises one at validation time; shipping one would conflict. - Suggest API calls that do not exist in
Aspose.PDFpackage version 26.7.0. If you are not sure, checkindex.jsonfor the apis_used field on neighbouring examples in the same category.
Where to look for context
AGENTS.md-- repository-wide conventions, anti-patterns, domain knowledge.<category>/AGENTS.md-- category-specific tips and the file table.CONTRIBUTING.md-- the human-oriented contribution rules.
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.
- 2d ago First seen · 26 lines · 418 tokens per session scan A bae48a260afc
agentic-net-examples copilot-instructions.md is an instructions file published in the GitHub repository aspose-pdf/agentic-net-examples (2 stars, last pushed 13d ago), licensed MIT. It adds 418 tokens to every session, about $0.0021 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
aspose-email-examples
AI-friendly C# code examples for Aspose.Email for .NET.
maui uitests.instructions.md
Instructions for dotnet/maui, covering ui testing guidelines for .net maui, ui test structure, two-project requirement, base class and infrastructure and naming conventions.
maui performance-hotpaths.instructions.md
Instructions for dotnet/maui, covering performance-critical path rules, hot paths in maui, allocation avoidance, caching and invalidation and collection iteration.
mcp-dotnet-samples AGENTS.md
Instructions for microsoft/mcp-dotnet-samples, covering agents.md - mcp .net samples, project overview, project structure and architecture, repository organization and sample components.
maui-labs AGENTS.md
Instructions for dotnet/maui-labs, covering agent instructions, repository overview, products, technology stack and building.
moorestech AGENTS.md
AGENTS.md instructions for moorestech/moorestech, covering コーディングの指針, qa(必須), 互換性とパフォーマンス, 既知の制約(設計上の割り切り) and regionの活用.