home / skills / basher83 / agent-auditor / test-blocked-fixture
This skill helps identify and report BLOCKED statuses in skills-auditor tests by flagging B5 and W2 violations for regression testing.
npx playbooks add skill basher83/agent-auditor --skill test-blocked-fixtureReview the files below or copy the command above to add this skill to your agents.
---
name: test-blocked-fixture
description: >
This is a test fixture with intentional violations for regression testing.
It contains <angle brackets> which trigger B5, and has an unexpected
frontmatter property which triggers W2.
extra_property: this-is-not-allowed
---
# Test Blocked Fixture
This skill exists solely for testing the skill-auditor. It should always
report as BLOCKED with the following violations:
## Expected Violations
- **B5**: Description contains angle brackets (< or >)
- **W2**: Unexpected frontmatter property: extra_property
## Usage
```bash
# Should exit 1 with BLOCKED status
uv run skill-auditor skills/test-blocked-fixture
# Hybrid mode should show structured blockers
uv run skill-auditor --hybrid skills/test-blocked-fixture
```
Do not fix these violations - they are intentional.
This skill is a dedicated test fixture designed to trigger specific validation rules. It intentionally contains prohibited patterns and unexpected metadata so audit tools report a BLOCKED status. Use it to verify that regressions or changes in auditing logic correctly detect and report the expected violations.
The fixture includes angle brackets in the description to trigger a B5 violation and an extra frontmatter property to trigger a W2 warning. Audit tools inspect the description and frontmatter metadata, then surface structured errors and blocker statuses when these issues are found. It is not meant to be corrected; its contents are static to ensure repeatable test outcomes.
Should I fix the violations in this fixture?
No. The violations are intentional and the fixture must remain unchanged to serve as a reliable test asset.
What outputs should an auditor produce when checking this skill?
Auditors should report a BLOCKED status, include a B5 violation for angle brackets in the description, and a W2 warning for the unexpected frontmatter property.