windows-test-truth

windows-test-truth is a skill for Claude Code from AURORA-NEURO/aurora-agent. It costs 77 tokens per session (464 once invoked), scanned A, original, Apache-2.0.

A troubleshooting guide for Rust tests on Windows when the operating system blocks a newly built test program before it runs.

In plain words
What is it for?
Use it to investigate Windows test errors such as os error 4551, refresh stale test binaries, and verify that the reported test count includes every suite.
Why use it?
It prevents a blocked test program from being mistaken for a failing test and stops workspace totals from hiding suites that never ran.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the aurora-honesty plugin — 2 skills shipped together

Good fit Use it to investigate Windows test errors such as os error 4551, refresh stale test binaries, and verify that the reported test count includes every suite.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aurora-neuro/aurora-agent/windows-test-truth
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.

Any agent
npx skills add AURORA-NEURO/aurora-agent --skill windows-test-truth
Clone the repo
git clone --depth 1 https://github.com/AURORA-NEURO/aurora-agent

Made for: Claude Code.

Or install aurora-honesty, the plugin that ships this one along with the rest of its 2 skills.

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

agentmods badge for windows-test-truth

README.md
[![agentmods](https://agentmods.dev/badge/skills/aurora-neuro/aurora-agent/windows-test-truth/github.svg)](https://agentmods.dev/skills/aurora-neuro/aurora-agent/windows-test-truth)
Your own site
<a href="https://agentmods.dev/skills/aurora-neuro/aurora-agent/windows-test-truth"><img src="https://agentmods.dev/badge/skills/aurora-neuro/aurora-agent/windows-test-truth/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for windows-test-truth

Your own site · 80×15
<a href="https://agentmods.dev/skills/aurora-neuro/aurora-agent/windows-test-truth"><img src="https://agentmods.dev/badge/skills/aurora-neuro/aurora-agent/windows-test-truth.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 464 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00077 $0.00464
Opus 5 $0.00039 $0.00232
Sonnet 5 $0.00015 $0.00093
Haiku 4.5 $0.00008 $0.00046

Measured 9d ago against content hash b1e4ead359a2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

windows-test-truth 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 9d 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.

plugins/aurora-honesty/skills/windows-test-truth/SKILL.md · 47 lines

What it actually says

Windows test truth (os error 4551)

Windows Application Control sometimes blocks a freshly linked binary. The symptom in Rust is:

error: test failed ... (os error 4551)

The binary never executed. This is not a failing test — the suite NEVER RAN. Two consequences:

  1. A suite that never ran looks like a suite that failed.
  2. cargo test --workspace keeps going and its final total silently loses every test in and after the blocked binary. One real run reported 344 tests where the true figure was 4,327.

The recipe

Force a relink (a new binary usually passes) and prove the count is complete:

find crates -name '*.rs' -path '*/tests/*' -exec touch {} +
cargo test --workspace --offline --no-fail-fast 2>&1 | grep -c 'never executed'
cargo test --workspace --offline --no-fail-fast 2>&1 \
  | grep -E '^test result: ok' | awk '{s+=$4} END {print s}'

A non-zero first number invalidates the second. If touching is not enough, delete the stale test executable under target/ so the linker must produce a fresh one.

  • The same block can hit any freshly built executable, not just tests — a packaged app that "won't start" with an Application Control message needs a pristine known binary or a policy allowance, not a rebuild loop.
  • Never sum per-crate results while other agents are concurrently editing crates: a crate mid-edit fails to compile and takes the whole invocation down for reasons unrelated to your change. Test per-crate (-p) in that situation.
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. 9d ago First seen · 47 lines · 77 tokens per session scan A b1e4ead359a2

Subscribe to this mod's changes

windows-test-truth is a skill published in the GitHub repository AURORA-NEURO/aurora-agent (1 stars, last pushed today), licensed Apache-2.0. It adds 77 tokens to every session and 464 once invoked, about $0.0004 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 skills, from other repositories

blazemeter-troubleshooting

Comprehensive troubleshooting guide for BlazeMeter, covering API Monitoring, Performance Testing, general issues, integrations, and security. Use when troubleshooting for (1) API Monitoring issues (Radar Agent auth, SSL certificates, debug tests), (2) Performance Testing issues (high response time, 500 errors, partial…

Blazemeter/bzm-mcp · 131 tokens

qa

QA test a live website with Axon discovery/content evidence plus browser automation when interaction is required. Use when the user wants exploratory QA, form testing, navigation/link checks, responsive checks, performance observations, bug reports, or a pre-launch quality review.

dinglebear-ai/axon · 52 tokens

opik-diagnose

Surface the Opik traces worth a developer's attention, ranked by signal — Diagnostics issues first, then errors, failed tool calls, latency, regressions, and low online-eval scores. With the Opik MCP connected it lists the project's agentinsightsissue entities, then fills the gaps with list (filters, sort, a time…

comet-ml/opik-mcp · 174 tokens

opik-explain

Root-cause a specific Opik trace, or a pattern across traces, and return a grounded explanation. Uses the hosted Opik MCP when it is connected, and falls back to SDK scripting otherwise. Returns the root cause, the evidence spans as clickable Opik UI links, and one suggested next step. Use for "why did this trace…

comet-ml/opik-mcp · 113 tokens

qa-knowledge

To run QA engineering — requirements/gap analysis, scenario & spec design, test implementation, failure triage — over the QA knowledge base.

griddynamics/rosetta · 32 tokens

blazemeter-performance-testing

Comprehensive guide for BlazeMeter Performance Testing, including load configuration, reporting, JMeter configuration, Taurus, scenarios, and advanced features. Use when working with Performance tests for (1) Configuring load settings and distribution, (2) Creating and running tests (JMeter, Browser, URL/API…

Blazemeter/bzm-mcp · 138 tokens