tell-proof: Skill for Cursor

.cursor/skills/tell-detector-authoring/SKILL.md

tell-detector-authoring is a skill for Cursor from ashishpatill/tell-proof. It costs 100 tokens per session (530 once invoked), scanned A, original, MIT.

Code for detecting repeated or outdated visual patterns in websites, such as one font everywhere, identical shadows, or missing focus states. The detectors produce measured findings for later review.

In plain words
What is it for?
Use it to add or adjust detectors, set thresholds, and maintain tests that confirm known website patterns are reported correctly.
Why use it?
It makes visual problems repeatable and testable instead of relying only on personal judgment.

Skill for Cursor

Written for Cursor: installed under .cursor/.

This is ashishpatill/tell-proof's own configuration. It tells Cursor how to work on tell-proof itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything tell-proof configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ashishpatill/tell-proof. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ashishpatill/tell-proof/master/.cursor/skills/tell-detector-authoring/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ashishpatill/tell-proof

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 tell-detector-authoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/ashishpatill/tell-proof/tell-detector-authoring/github.svg)](https://agentmods.dev/skills/ashishpatill/tell-proof/tell-detector-authoring)
Your own site
<a href="https://agentmods.dev/skills/ashishpatill/tell-proof/tell-detector-authoring"><img src="https://agentmods.dev/badge/skills/ashishpatill/tell-proof/tell-detector-authoring/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 tell-detector-authoring

Your own site · 80×15
<a href="https://agentmods.dev/skills/ashishpatill/tell-proof/tell-detector-authoring"><img src="https://agentmods.dev/badge/skills/ashishpatill/tell-proof/tell-detector-authoring.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 530 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.00100 $0.00530
Opus 5 $0.00050 $0.00265
Sonnet 5 $0.00020 $0.00106
Haiku 4.5 $0.00010 $0.00053

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

Security

Grade A, and why

tell-detector-authoring 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 7d 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/skills/tell-detector-authoring/SKILL.md · 56 lines

What it actually says

Tell detector authoring

Scope

  • packages/schema — add or extend TellDetector / DriftDetector enums and Finding fields first
  • packages/core/src/detectors/index.ts — all 14 detectors live here unless a real split is needed
  • packages/core/src/__tests__/detectors.test.ts — golden assertions against committed capture JSON

Rules

  1. No LLM, API, or model calls in core
  2. Detectors are pure: (fingerprint: DesignFingerprint, capture: CapturePayload) => Finding[]
  3. Emit deterministic facts and evidence; taste layer assigns final verdicts
  4. Use Finding.parse(...) at emit time
  5. Set verdictHint mechanically; taste may override to intentional

Workflow

  1. Read threshold spec in BUILD.md §5.3–5.4
  2. If schema changes are needed, edit @tell/schema first and rebuild
  3. Add detector logic in detectFindings
  4. Update golden test expectations in detectors.test.ts
  5. If fixture UI must change to plant the finding, coordinate with tell-demo-fixture skill
  6. Run pnpm test

Finding shape

Finding.parse({
  id: "tell-example",
  family: "tell", // or "drift"
  detector: "SystemFontTell",
  verdictHint: "generic",
  severity: "high",
  facts: { /* measured numbers only */ },
  evidence: [{ kind: "computed", label: "...", value: "..." }],
});

DoD

  • Detector is deterministic and reproducible on fixtures/reports/capture.json
  • Golden test passes
  • No invented facts that taste cannot validate
  • Rules: .cursor/rules/tell-core-engine.mdc
  • Agent: .cursor/agents/core-engineer.md
  • Methodology: docs/05_GENERICNESS_METHODOLOGY.md
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. 7d ago First seen · 56 lines · 100 tokens per session scan A 70480091dc79

Subscribe to this mod's changes

tell-detector-authoring is a skill published in the GitHub repository ashishpatill/tell-proof (1 stars, last pushed 15d ago), licensed MIT. It adds 100 tokens to every session and 530 once invoked, about $0.0005 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-09-03.

Related

Other skills, from other repositories

go-testing

Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.

Gentleman-Programming/gentle-ai · 26 tokens

testing

To write thorough, isolated, idempotent tests — 80%+ coverage, external-only mocking, scenario-driven.

griddynamics/rosetta · 26 tokens

Add executable smoke tests for shell scripts and CLIs before refactors ship

Use Bats-core when an agent needs to turn fragile shell scripts or command-line workflows into something it can verify repeatedly after edits. The agent writes focused Bash tests for success paths, failure paths, and output contracts, then runs them locally or in CI before a refactor, release, or incident fix goes out.

agentskillexchange/skills · 78 tokens

test-writer

Writes tests for code that already exists: behaviour over implementation, arrange-act-assert structure, mocks only at real boundaries, and no time- or order-dependent flakiness. Use when asked to add tests, close a coverage gap on a function, component, or endpoint, or write a regression test for a bug just fixed. Not…

Ozzeron/prompt-pack · 95 tokens

testing-patterns

Jest testing patterns, factory functions, mocking strategies, and TDD workflow. Use when writing unit tests, creating test factories, or following TDD red-green-refactor cycle.

KunanonJ/ai-skills-hub · 40 tokens

dev-testing

A testing guide that defines when to use unit, integration, API, and end-to-end tests. Unit tests check small pieces of code, while end-to-end tests check a full user flow.

devcodex-labs/devcodex · 27 tokens