apm tests.instructions.md

A testing rule for checking URLs with parsed components such as hostname, port, scheme, or path instead of searching for text inside the URL.

In plain words
What is it for?
Use it when writing tests that assert a URL, host, port, scheme, or path appears in output or matches an expected value.
Why use it?
It avoids unsafe or incomplete substring checks that can pass when a value appears in an unintended part of a URL and can trigger CodeQL findings.

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/microsoft/apm/tests
Clone the repo
git clone --depth 1 https://github.com/microsoft/apm

Made for: GitHub Copilot.

Per session 3,329 This file is loaded in full into every session.
When invoked 3,329 The same file — it is already loaded in full.
Security scan A 1 finding. 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.03329 $0.03329
Opus 5 $0.01665 $0.01665
Sonnet 5 $0.00666 $0.00666
Haiku 4.5 $0.00333 $0.00333

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

Security

Grade A, and why

apm tests.instructions.md scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

description: "Test conventions: URL assertions must use urllib.parse, never substring."
.github/instructions/tests.instructions.md · 331 lines

How it starts

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

Test Conventions

URL assertions: use urllib.parse, never substring

Any assertion that a URL appears in or matches some output must parse the URL with urllib.parse.urlparse and compare on a parsed component (hostname, port, scheme, path). Substring assertions like assert "host.example.com" in msg or assert "https://x" in url are flagged by CodeQL as py/incomplete-url-substring-sanitization (high severity, "the string may be at an arbitrary position in the URL") and will fail CI.

This rule applies regardless of whether the value being asserted looks like a "safe" hostname — CodeQL is a static check and cannot infer that host in assert host in msg is bounded; the alert fires anyway.

Wrong

# Substring match -- CodeQL py/incomplete-url-substring-sanitization
assert "registry.example.com" in msg
assert "https://api.github.com/v0/servers" in url
assert "127.0.0.1" in warning_text

# Set membership of substring -- still flagged (CodeQL can't infer set type)
hosts = {urlparse(tok).hostname for tok in msg.split() if "://" in tok}
assert "poisoned.example.com" in hosts

Right

from urllib.parse import urlparse

# Direct hostname equality on a parsed URL token
urls = [tok for tok in msg.split() if "://" in tok]
assert len(urls) == 1
assert urlparse(urls[0]).hostname == "registry.example.com"

# Set equality (not membership) when multiple URLs are expected
hosts = {urlparse(tok.strip("()")).hostname for tok in msg.split() if "://" in tok}
assert hosts == {"a.example.com", "b.example.com"}

# Component-level checks for path / scheme / port
parsed = urlparse(url)
assert parsed.scheme == "https"
assert parsed.hostname == "api.github.com"
assert parsed.path == "/v0/servers"

Helper pattern for multi-URL output

When asserting against logger / CLI output that may contain multiple URLs, extract them with a small helper and assert on the parsed tuple:

def _printed_urls(text: str) -> list[tuple[str, str, str]]:
    """Extract (scheme, hostname, path) tuples from any URLs in text."""
    from urllib.parse import urlparse
    out = []
    for token in text.split():
        cleaned = token.strip("(),.;'\"")
        if "://" not in cleaned:
            continue
        p = urlparse(cleaned)
        out.append((p.scheme, p.hostname or "", p.path))
    return out

assert ("https", "registry.example.com", "/v0/servers") in _printed_urls(msg)

Read the full file on GitHub · 331 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 · 331 lines · 3,329 tokens per session scan A 555f792adf02

Subscribe to this mod's changes

apm tests.instructions.md is an instructions file published in the GitHub repository microsoft/apm (3,668 stars, last pushed 2d ago), licensed MIT. It adds 3,329 tokens to every session, about $0.0166 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.