ktnip-ksp-tests

ktnip-ksp-tests is a cursor rule for Cursor from vendelieu/telegram-bot. It costs 0 tokens per session (651 once invoked), scanned A, original, Apache-2.0.

A testing guide for KSP processors in ktnip. KSP, or Kotlin Symbol Processing, is a tool that reads Kotlin code and generates more code during the build.

In plain words
What is it for?
Writing processor tests, checking generated Kotlin files against expected output, and updating golden files when generated code changes deliberately.
Why use it?
It standardizes how processor tests compile sample Kotlin files and check the generated output. This makes intentional changes to generated files easier to detect and update.

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/vendelieu/telegram-bot/ktnip-ksp-tests
Clone the repo
git clone --depth 1 https://github.com/vendelieu/telegram-bot

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 ktnip-ksp-tests

README.md
[![agentmods](https://agentmods.dev/badge/rules/vendelieu/telegram-bot/ktnip-ksp-tests.svg)](https://agentmods.dev/rules/vendelieu/telegram-bot/ktnip-ksp-tests)
Your own site
<a href="https://agentmods.dev/rules/vendelieu/telegram-bot/ktnip-ksp-tests"><img src="https://agentmods.dev/badge/rules/vendelieu/telegram-bot/ktnip-ksp-tests.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 651 The whole file, excluding the scripts and references it only reads on demand.
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.00000 $0.00651
Opus 5 $0.00000 $0.00326
Sonnet 5 $0.00000 $0.00130
Haiku 4.5 $0.00000 $0.00065

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

Security

Grade A, and why

ktnip-ksp-tests 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/rules/ktnip-ksp-tests.mdc · 80 lines

How it starts

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

KSP Processor Test Rules

Test Base

  • Extend AbstractKspTest
  • Kotest AnnotationSpec with @Test
class ProcessorTest : AbstractKspTest() {
    @Test
    fun defaultHandlers() = runTest("test-data/DefaultHandlers.kt")
}

runTest vs compile

  • runTest(path): Load from jvmTest/resources/test-data/<name>.kt, compile with ActivityProcessorProvider, assert exitCode OK, verify generated files (ActivitiesData.kt, KtGramCtxLoader.kt, BotCtx.kt)
  • compile(vararg SourceFile): Inline sources, custom processors; returns JvmCompilationResult for custom assertions

Golden Output

Hybrid: If test-data/golden/<TestName>/<FileName>.gold exists, full-file comparison is used. Otherwise, fall back to G-EXPECT.

G-EXPECT optional: When golden files exist, the G-EXPECT block can be omitted — expectations are discovered from golden files.

Update: ./gradlew :ktnip:updateGolden — run when generated output changes intentionally.

G-EXPECT (fallback)

Add /* G-EXPECT ... */ block comments to test data when no golden file exists. One block can contain multiple checks:

/* G-EXPECT
file=ActivitiesData.kt
contains="Activity"

file=KtGramCtxLoader.kt
contains="registerCommand"
contains="registerActivity"

file=BotCtx.kt
contains="userData"
contains="getState"
notContains="TODO"

noError
*/

Directives:

  • file=FileName.kt — target generated file (can appear multiple times)
  • contains="..." — file must contain substring
  • notContains="..." — file must not contain substring
  • matches="regex" — file must contain a substring matching the regex
  • notMatches="regex" — file must not contain any substring matching the regex
  • noError — expect compilation success (default when no error directives)
  • error contains="..." — expect compilation error, message contains
  • error exact="..." — error message equals
  • error count=N — exactly N error lines
  • error file=Foo.kt line=12 contains="..." — error at file/line contains

Read the full file on GitHub · 80 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. 7d ago First seen · 80 lines · 651 tokens per session scan A 594f06427485

Subscribe to this mod's changes

ktnip-ksp-tests is a cursor rule published in the GitHub repository vendelieu/telegram-bot (248 stars, last pushed 10d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 651 tokens. 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-30.