ts

The TypeScript implementation is a minimalist, functional, and robust library with zero production dependencies besides dedent. It prioritizes predictable output and developer experience through a simple API and strict typing, while gracefully handling varied and unpredictable input data.

Cursor rule for 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/zenbase-ai/llml/ts
Clone the repo
git clone --depth 1 https://github.com/zenbase-ai/llml

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,103 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin unknown 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 $0.00000 $0.01103
Opus 5 $0.00000 $0.00551
Sonnet 5 $0.00000 $0.00221
Haiku 4.5 $0.00000 $0.00110

Measured today against content hash 981cd9eb8662, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ts 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 today.

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/ts.mdc · 63 lines

How it starts

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

TypeScript Coding Rules for LLML Project

Overall Philosophy

The TypeScript implementation is a minimalist, functional, and robust library with zero production dependencies besides dedent. It prioritizes predictable output and developer experience through a simple API and strict typing, while gracefully handling varied and unpredictable input data.

Project Structure & Conventions

Tooling

  • Runtime and Package Management: Use bun for all operations (installing dependencies, running scripts, building). The project is configured with bun.lockb.
  • Testing: vitest is the testing framework. Use bun test to run the test suite.
  • Type Checking: typescript is used for static analysis. Run bun run tsc --noEmit to check for type errors without generating JavaScript files.

Module System

  • The project uses ES Modules (ESM) exclusively, as defined by "type": "module" in package.json.
  • Use import/export syntax. Do not use require/module.exports.

File Organization

  • Source Code: All core logic resides in the src/ directory. The main entry point is src/index.ts.
  • Utilities: Pure, reusable helper functions (like kebabCase) should be placed in src/utils.ts.
  • Tests: All test files are located in the tests/ directory. Maintain the one-to-one mapping of feature-to-test-file (e.g., nested.ts logic is tested in tests/nested.test.ts).

Coding Style & Patterns

  • Functional Approach: The core logic is implemented as a set of pure functions. The main llml function is recursive and delegates formatting tasks to helpers. Avoid classes and stateful logic.
  • Immutability: Do not mutate input data. Functions should return new, transformed values.
  • Dependencies: Maintain the zero-dependency principle for production code. The only exception is dedent, which is used for cleaning up multiline strings. Do not add new production dependencies without strong justification.
  • Readability: Use const by default and let only when a variable must be reassigned. Code is formatted with a 2-space indent.
  • Comments: Add JSDoc-style comments to exported functions and complex utility functions to explain their purpose, parameters, and return values, as seen in src/utils.ts.

Read the full file on GitHub · 63 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. today First seen · 63 lines · 0 tokens per session scan A 981cd9eb8662

Subscribe to this mod's changes

ts is a cursor rule published in the GitHub repository zenbase-ai/llml (72 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,103 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-09-01.