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/nunosoarescsw/copilot-agentic-workshop/testsgit clone --depth 1 https://github.com/nunosoarescsw/copilot-agentic-workshopWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/nunosoarescsw/copilot-agentic-workshop/tests)<a href="https://agentmods.dev/instructions/nunosoarescsw/copilot-agentic-workshop/tests"><img src="https://agentmods.dev/badge/instructions/nunosoarescsw/copilot-agentic-workshop/tests.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00627 | $0.00627 |
| Opus 5 | $0.00313 | $0.00313 |
| Sonnet 5 | $0.00125 | $0.00125 |
| Haiku 4.5 | $0.00063 | $0.00063 |
Grade A, and why
copilot-agentic-workshop tests.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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Test Conventions
Stack
- Framework: xUnit
- Assertions: FluentAssertions (
result.Should().Be(...)) - Mocking: NSubstitute (
Substitute.For<T>())
Never use Moq, MSTest, or manual fake classes unless explicitly requested.
Test Class Structure
public sealed class ClassNameTests
{
// Dependencies substituted via NSubstitute
private readonly IDependency _dep = Substitute.For<IDependency>();
// System under test
private readonly ClassName _sut;
public ClassNameTests() => _sut = new ClassName(_dep);
[Fact]
public async Task MethodName_Scenario_ExpectedResult()
{
// Arrange
_dep.SomeMethod(Arg.Any<string>()).Returns("value");
// Act
var result = await _sut.MethodName("input");
// Assert
result.Should().NotBeNull();
result.Value.Should().Be("expected");
}
}
Naming Convention
MethodName_Scenario_ExpectedResult
Examples:
CreateAsync_WithValidRequest_ReturnsCreatedTaskGetByIdAsync_WhenTaskDoesNotExist_ReturnsNullComplete_WhenAlreadyDone_ThrowsInvalidOperationException
FluentAssertions Patterns
// Equality
result.Should().Be(expected);
result.Should().NotBe(unexpected);
// Nullability
result.Should().NotBeNull();
result.Should().BeNull();
// Collections
list.Should().HaveCount(3);
list.Should().ContainSingle(x => x.Id == id);
list.Should().BeEmpty();
// Exceptions
var act = async () => await _sut.Method();
await act.Should().ThrowAsync<InvalidOperationException>()
.WithMessage("*partial match*");
// Strings
str.Should().StartWith("prefix");
str.Should().NotBeNullOrWhiteSpace();
// Dates
dt.Should().BeCloseTo(DateTimeOffset.UtcNow, TimeSpan.FromSeconds(1));
NSubstitute Patterns
// Return value
_repo.GetByIdAsync(id, Arg.Any<CancellationToken>()).Returns(task);
// Return argument
_repo.AddAsync(Arg.Any<TaskItem>(), Arg.Any<CancellationToken>())
.Returns(x => x.Arg<TaskItem>());
// Verify call
await _repo.Received(1).DeleteAsync(id, Arg.Any<CancellationToken>());
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.
- 4d ago First seen · 105 lines · 627 tokens per session scan A bed59410abbd
copilot-agentic-workshop tests.instructions.md is an instructions file published in the GitHub repository nunosoarescsw/copilot-agentic-workshop (1 stars, last pushed 2mo ago), licensed MIT. It adds 627 tokens to every session, about $0.0031 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
presidio recognizers.instructions.md
Instructions for data-privacy-stack/presidio, covering recognizer changes, the load-bearing rule: test the configuration path, placement and naming, pattern scores and context words.
Math-To-Manim tests.instructions.md
Guidelines for writing and maintaining tests in Math-To-Manim.
plan-forge testing.instructions.md
Testing rules for Plan Forge — vitest patterns, fake-timers vs tolerance, mocking conventions, and how to read test output without hallucinating failures. Auto-loads when editing test files.
specs-driven-development-spring-angular frontend-code.instructions.md
Frontend code guardrails for Angular implementation, testing, and accessibility.
pr-narrator-mcp testing.instructions.md
Instructions for mhaviv/pr-narrator-mcp, covering test file review rules, mock setup (critical ordering), mock completeness, mock return values and test lifecycle.
kernel_chat GEMINI.md
Instructions for Ravi-Teja-konda/kernel_chat, covering building and running, writing tests, test structure and framework, mocking (vi from vitest) and commonly mocked modules.