opentester

opentester is a cursor rule for Cursor from kznr02/OpenTester-Skills. It costs 1,172 tokens per session, scanned A, original, MIT.

Testing rules for OpenTester, a system that defines and runs command-line, API, or text-interface tests using a structured YAML format. They require each test definition to be validated before it is saved and run.

In plain words
What is it for?
Use them when creating, validating, running, or deleting OpenTester cases, including tests for commands, web APIs, and terminal interfaces.
Why use it?
They reduce syntax errors and ensure a test is checked before execution, especially when its YAML instructions are complex.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

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 rules/kznr02/opentester-skills/opentester
Clone the repo
git clone --depth 1 https://github.com/kznr02/OpenTester-Skills

Made for: Cursor.

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 opentester

README.md
[![agentmods](https://agentmods.dev/badge/rules/kznr02/opentester-skills/opentester.svg)](https://agentmods.dev/rules/kznr02/opentester-skills/opentester)
Your own site
<a href="https://agentmods.dev/rules/kznr02/opentester-skills/opentester"><img src="https://agentmods.dev/badge/rules/kznr02/opentester-skills/opentester.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,172 This file is loaded in full into every session.
When invoked 1,172 The same file — it is already loaded in full.
Security scan A 0 findings. 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.1 $0.01172 $0.01172
Opus 5 $0.00586 $0.00586
Sonnet 5 $0.00234 $0.00234
Haiku 4.5 $0.00117 $0.00117

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

Security

Grade A, and why

opentester 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 6d 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.

.cursor/rules/opentester.mdc · 177 lines

How it starts

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

OpenTester Testing Guidelines

When to Use

When the user mentions:

  • "/test" or "/t" - Create tests for code changes
  • "run tests" - Execute existing tests
  • "validate" - Check test syntax
  • "delete project" or "delete test" - Remove test data
  • Test files are modified

DSL Validation Workflow (CRITICAL)

ALWAYS validate DSL before saving!

1. Generate DSL YAML
2. Call opentester.validateDSL(dsl_yaml) to check syntax
3. IF validation fails:
   - Read the error message
   - Fix the DSL (common: use assertion object instead of direct type/value)
   - Call validateDSL again
   - REPEAT until validation passes
4. IF validation passes:
   - Call opentester.saveCase to store the test
5. Call opentester.runCase to execute

DSL Format

Basic Structure

version: "1.0"
meta:
  name: "Test Name"
  description: "What this test verifies"

target:
  type: cli  # cli, api, or tui

timeout: 10

steps:
  - name: "Step description"
    action: exec|assert|wait
    # action-specific fields

Action: exec

- name: "Execute command"
  action: exec
  command: "echo Hello"           # CLI
  # OR for API:
  method: GET
  path: "/endpoint"

Action: assert (CRITICAL - USE assertion OBJECT!)

❌ WRONG - assert with direct type/value:

- action: assert
  type: stdout_contains      # ❌ Wrong!
  value: "text"              # ❌ Wrong!

✅ CORRECT - assert with assertion object:

- name: "Verify output"
  action: assert
  assertion:                 # ✅ Correct!
    type: stdout_contains
    expected: "text"         # ✅ Use 'expected', not 'value'!

CLI Assertions:

- action: assert
  assertion:
    type: exit_code|stdout_contains|stderr_contains|stdout_matches|stderr_empty
    expected: value

API Assertions:

- action: assert
  assertion:
    type: status_code|json_path
    path: "$.data.name"      # Required for json_path
    expected: value

TUI Assertions:

- action: assert
  assertion:
    type: screen_contains|cursor_at|screen_stable
    expected: value

Read the full file on GitHub · 177 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. 6d ago First seen · 177 lines · 1,172 tokens per session scan A 448dd98cbb5f

Subscribe to this mod's changes

opentester is a cursor rule published in the GitHub repository kznr02/OpenTester-Skills (4 stars, last pushed 6mo ago), licensed MIT. It adds 1,172 tokens to every session, about $0.0059 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.