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 commands/iolairus/borderlint/opsx-verifygit clone --depth 1 https://github.com/iolairus/borderlintWrote 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/commands/iolairus/borderlint/opsx-verify)<a href="https://agentmods.dev/commands/iolairus/borderlint/opsx-verify"><img src="https://agentmods.dev/badge/commands/iolairus/borderlint/opsx-verify.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.00008 | $0.00879 |
| Opus 5 | $0.00004 | $0.00439 |
| Sonnet 5 | $0.00002 | $0.00176 |
| Haiku 4.5 | $0.00001 | $0.00088 |
Grade A, and why
opsx-verify 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 3d 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
Verify that an implementation matches the change artifacts (specs, tasks, design) before archiving.
Input: Optionally specify a change name after /opsx-verify (e.g., /opsx-verify add-auth). If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.
Steps
-
Select the change
If a name is provided, use it. Otherwise:
- Infer from conversation context if the user mentioned a change
- Auto-select if only one active change exists
- If ambiguous, run
openspec list --jsonto get available changes and use the AskUserQuestion tool to let the user select
Always announce: "Verifying change: " and how to override.
-
Check status to understand the schema
openspec status --change "<name>" --jsonParse the JSON to understand:
schemaName: The workflow being used- Which artifacts exist for this change
-
Get the change directory and load artifacts
openspec instructions apply --change "<name>" --jsonThis returns
contextFiles(artifact ID -> array of concrete file paths). Read all available artifacts fromcontextFiles. -
If the
openspec-verify-changeskill is available, load it for the full execution logicThe skill provides the detailed verification procedure across three dimensions:
- Completeness: Tasks done, spec coverage
- Correctness: Requirements implemented, scenarios covered
- Coherence: Design followed, pattern consistency
Follow the skill's steps to perform the verification and generate the report.
-
If the skill is not available, perform a basic verification
- Read tasks file and check
- [x]vs- [ ]completion - Read delta specs and search codebase for requirement coverage
- Read design and check for obvious contradictory implementation
- Report findings with CRITICAL / WARNING / SUGGESTION priority levels
- Read tasks file and check
-
Generate and display the verification report
Output the report with:
- Summary scorecard (Completeness / Correctness / Coherence)
- Issues grouped by priority (CRITICAL, WARNING, SUGGESTION)
- Final assessment: ready for archive or issues to fix
Output On Success (All Clear)
## Verification Report: <change-name>
### Summary
| Dimension | Status |
|--------------|-----------------|
| Completeness | 6/6 tasks ✓ |
| Correctness | 3/3 reqs ✓ |
| Coherence | No issues ✓ |
### Final Assessment
All checks passed. Ready for archive.
Output On Success (With Issues)
## Verification Report: <change-name>
### Summary
| Dimension | Status |
|--------------|-----------------|
| Completeness | 4/6 tasks |
| Correctness | 2/3 reqs |
| Coherence | Issues found |
### Issues
**CRITICAL** (Must fix before archive):
- [ ] 2 incomplete tasks: 1.3, 1.4
- [ ] 1 missing requirement: "User can export data"
**WARNING** (Should fix):
- Design decision not followed: Use SQLite (using Postgres instead)
**SUGGESTION** (Nice to fix):
- Code pattern deviation: file naming mismatch
### Final Assessment
2 critical issue(s) found. Fix before archiving.
Guardrails
- Always read the change artifacts before verifying
- If the
openspec-verify-changeskill exists, use it - it has richer verification logic - Be conservative: prefer SUGGESTION over WARNING, WARNING over CRITICAL when uncertain
- Every issue must have a specific, actionable recommendation
- If no artifacts exist to verify against, report that clearly
- Gracefully degrade: if only tasks exist, verify tasks; if full artifacts exist, verify all dimensions
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.
- 3d ago First seen · 112 lines · 8 tokens per session scan A 612d53c7d835
opsx-verify is a command published in the GitHub repository iolairus/borderlint (7 stars, last pushed 11d ago), licensed MIT. It adds 8 tokens to every session and 879 once invoked, about $0.0000 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 commands, from other repositories
git
Git operations with intelligent commit messages and workflow optimization.
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.