igniter-patterns

This guide provides a COMPLETE, ACCURATE, and MANDATORY reference for creating controllers and actions in Igniter.js. It incorporates established architectural patterns, coding best practices, and lessons learned from real-world implementations, ensuring strict adherence for all future development.

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/felipebarcelospro/igniter-js/igniter-patterns
Clone the repo
git clone --depth 1 https://github.com/felipebarcelospro/igniter-js

Made for: Cursor.

Per session 8,510 This file is loaded in full into every session.
When invoked 8,510 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.08510 $0.08510
Opus 5 $0.04255 $0.04255
Sonnet 5 $0.01702 $0.01702
Haiku 4.5 $0.00851 $0.00851

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

Security

Grade A, and why

igniter-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 yesterday.

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.

apps/starter-nextjs/.cursor/rules/igniter-patterns.mdc · 811 lines

How it starts

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

Igniter.js Controller & API Development Standards (Optimized for LLMs)

This guide provides a COMPLETE, ACCURATE, and MANDATORY reference for creating controllers and actions in Igniter.js. It incorporates established architectural patterns, coding best practices, and lessons learned from real-world implementations, ensuring strict adherence for all future development.

🚨 CRITICAL ARCHITECTURAL PRINCIPLES

1. Separation of Concerns (SoC)

  • Controllers: Responsible only for handling HTTP requests, validating input, orchestrating business logic (via procedures/repositories), and constructing HTTP responses.
  • Procedures: Responsible for extending the request context, injecting dependencies (like repositories), handling cross-cutting concerns (e.g., authentication, logging), and pre-processing requests.
  • Repositories: Responsible only for direct data access operations (e.g., Prisma calls). They abstract the database layer from the business logic.
  • Interfaces: Centralize all shared definitions (constants, Zod schemas, types, interfaces) for a given feature.

2. Type Safety & Documentation First

  • End-to-End Type Safety: Leverage TypeScript and Zod to ensure type consistency from request body to database operations.
  • Comprehensive TSDoc: All exposed components (controllers, actions, procedures, repositories, interfaces, schemas, types, constants) MUST be fully documented with TSDoc in English.

3. Immutability & Context Extension

  • Context is Extended, Not Mutated: Procedures extend the Igniter context by returning an object, which is then shallow-merged. Direct mutation of the context object in procedures is forbidden.
  • Special Case: next() for Post-Action Processing: The next() function in a procedure's handler should only be used if the procedure needs to capture and process the result of the subsequent action (e.g., for auditing, performance monitoring, or response modification). In such cases, await next() should be called, and the result should then be handled. Otherwise, procedures should either return an object to extend the context (e.g., { auth: { session: { user } } }) or void (implicitly or explicit return;) to simply allow the request to proceed without modifying the context.
  • Default Behavior: Context Extension or Void Return: In all other scenarios, procedures should either return an object to extend the context (e.g., { auth: { session: { user } } }) or void (implicitly or explicitly return;) to simply allow the request to proceed without modifying the context.
  • Auth Procedure Context for Optional Authentication: When an authProcedure is configured with required: false (or if authentication fails but is not strictly required), it MUST explicitly return an object like { auth: { session: { user: null } } } to maintain consistent context typing, indicating that no authenticated user is present.

Read the full file on GitHub · 811 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. yesterday First seen · 811 lines · 8,510 tokens per session scan A 8b98330263dd

Subscribe to this mod's changes

igniter-patterns is a cursor rule published in the GitHub repository felipebarcelospro/igniter-js (242 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 8,510 tokens to every session, about $0.0426 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-01.