design-patterns

design-patterns is a cursor rule for Cursor from sijeeshmiziha/visionagent. It costs 894 tokens per session, scanned A, original, MIT.

A set of design and code-organization rules for a TypeScript codebase.

In plain words
What is it for?
Use it when structuring TypeScript features involving state changes, interchangeable algorithms, event listeners, builders, decorators, factories, or handler chains.
Why use it?
It guides decisions about when to split files and which reusable design pattern fits a problem, helping keep code focused and manageable.

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/sijeeshmiziha/visionagent/design-patterns
Clone the repo
git clone --depth 1 https://github.com/sijeeshmiziha/visionagent

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 design-patterns

README.md
[![agentmods](https://agentmods.dev/badge/rules/sijeeshmiziha/visionagent/design-patterns.svg)](https://agentmods.dev/rules/sijeeshmiziha/visionagent/design-patterns)
Your own site
<a href="https://agentmods.dev/rules/sijeeshmiziha/visionagent/design-patterns"><img src="https://agentmods.dev/badge/rules/sijeeshmiziha/visionagent/design-patterns.svg" alt="Measured on agentmods" height="20"></a>
Per session 894 This file is loaded in full into every session.
When invoked 894 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 $0.00894 $0.00894
Opus 5 $0.00447 $0.00447
Sonnet 5 $0.00179 $0.00179
Haiku 4.5 $0.00089 $0.00089

Measured 3d ago against content hash cb3370a76580, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

design-patterns 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.

.cursor/rules/design-patterns.mdc · 96 lines

How it starts

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

Design Patterns and Code Organization

File Size Limit: 150 Lines Maximum

Every source file must contain at most 150 lines of code.

  • Enforces Single Responsibility and keeps files navigable.
  • When a file grows toward the limit, split before adding more.
  • Splitting strategies: Extract interfaces to *.interface.ts or types.ts; move helpers to *.utils.ts; split a class into a base in one file and concrete impl in another; one pattern/feature per file.

Pattern Selection

Pattern Use When Avoid When
State Behavior varies by internal state; replacing switch/case on state Simple flags; few states
Strategy Interchangeable algorithms at runtime Single algorithm
Chain of Responsibility Multiple handlers may process a request; dynamic chains Single handler; fixed flow
Builder Complex object, many optional parts, step-by-step construction Simple objects; few params
Observer Multiple listeners for the same events Single consumer
Decorator Add/stack behaviors dynamically (retry, log, cache) Static, single behavior
Factory Method Creation delegated to callers; varying product types One product type; simple new

State vs Strategy

  • State: Context has a current state; state object handles requests and may transition context to another state. Use for stage machines, wizards, workflows (e.g. discovery → requirements → design).
  • Strategy: Context delegates an algorithm to a strategy; no notion of "current state" or transitions. Use for swapping sort/search/format logic.

Read the full file on GitHub · 96 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. 3d ago First seen · 96 lines · 894 tokens per session scan A cb3370a76580

Subscribe to this mod's changes

design-patterns is a cursor rule published in the GitHub repository sijeeshmiziha/visionagent (2 stars, last pushed 5mo ago), licensed MIT. It adds 894 tokens to every session, about $0.0045 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.

Related

Other cursor rules, from other repositories

legacy-letter

Write a letter to the people you love, to be read later — the things you'd want them to know, the stories only you hold, the permission and the love that outlive you. Use when someone says 'help me write a letter to my kids/partner', 'legacy letter', 'ethical will', 'something for them to have when I'm gone', or is…

mohitagw15856/pm-claude-skills · 136 tokens

the-org-simulator

Stress-test a proposed org change before announcing it — simulate who gains, who loses, who blocks, where friction erupts in the first 90 days, and run the memo leak test: how does this land when it leaks before you announce it? Use when planning a reorg, changing reporting lines, merging or splitting teams, moving a…

mohitagw15856/pm-claude-skills · 105 tokens

java-springboot-jpa-cursorrules-prompt-file

description: "Cursor rules for Java development with Springboot and JPA integration." globs: / alwaysApply: false.

ItamarZand88/awesome-agent-conventions · 1,052 tokens

react

Cursor rule "react" from ItamarZand88/awesome-agent-conventions, covering react best practices, component structure, hooks, state management and performance.

ItamarZand88/awesome-agent-conventions · 491 tokens

go

Cursor rule "go" from ItamarZand88/awesome-agent-conventions, covering go language rules, error handling, naming, interfaces and concurrency.

ItamarZand88/awesome-agent-conventions · 321 tokens

cursorrules

During your interaction with the user, if you find anything reusable in this project (e.g. version of a library, model name), especially about a fix to a mistake you made or a correction you received, you should take note in the Lessons section in the .cursorrules file so you will not make the same mistake again.

ItamarZand88/awesome-agent-conventions · 1,176 tokens