igniter-client-usage

Comprehensive guide to using the Igniter.js Client, covering server-side and client-side usage patterns, React hooks (useQuery, useMutation, useRealtime), context management, realtime features, and best practices. This rule explains the universal client architecture and how it works seamlessly across different Next.js…

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

Made for: Cursor.

Per session 5,663 This file is loaded in full into every session.
When invoked 5,663 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.05663 $0.05663
Opus 5 $0.02831 $0.02831
Sonnet 5 $0.01133 $0.01133
Haiku 4.5 $0.00566 $0.00566

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

Security

Grade A, and why

igniter-client-usage 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.

apps/sample-realtime-chat/.cursor/rules/igniter-client-usage.mdc · 954 lines

How it starts

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

Igniter.js Client Usage Guide

This rule provides comprehensive guidance on using the Igniter.js Client, which offers universal type-safe API communication across server and client environments with advanced features like real-time updates, caching, and React hooks integration.

1. Universal Client Architecture

1.1 Environment-Aware Client

The Igniter.js client automatically adapts to different execution environments:

// Generated client file: src/igniter.client.ts
export const api = createIgniterClient<AppRouterType>({
  baseURL: process.env.NEXT_PUBLIC_IGNITER_API_URL || 'http://localhost:3000',
  basePATH: process.env.NEXT_PUBLIC_IGNITER_API_BASE_PATH || '/api/v1',
  router: () => {
    if (typeof window === 'undefined') {
      // Server-side: Direct router access (zero HTTP overhead)
      return require('./igniter.router').AppRouter
    }
    // Client-side: HTTP-based client with hooks
    return require('./igniter.schema').AppRouterSchema
  },
})

1.2 Execution Environments

Server-Side Execution (RSC, API Routes, Middleware):

  • Direct function calls via router.caller
  • Zero HTTP overhead
  • Full access to server context
  • Synchronous execution model

Client-Side Execution (Browser, Client Components):

  • HTTP requests via fetch API
  • React hooks for state management
  • Built-in caching and revalidation
  • Real-time subscriptions via SSE

2. Server-Side Usage Patterns

2.1 React Server Components (RSC)

// app/users/page.tsx
import { api } from '@/igniter.client'

export default async function UsersPage() {
  // Direct function call - no HTTP request
  const users = await api.users.list.query()

  return (
    <div>
      <h1>Users</h1>
      {users.data.map(user => (
        <div key={user.id}>{user.name}</div>
      ))}
    </div>
  )
}

2.2 API Routes

// app/api/sync/route.ts
import { api } from '@/igniter.client'

export async function POST() {
  try {
    // Direct server-to-server calls
    const users = await api.users.list.query()
    const posts = await api.posts.list.query()

    // Perform sync logic
    return Response.json({ success: true })
  } catch (error) {
    return Response.json({ error: error.message }, { status: 500 })
  }
}

Read the full file on GitHub · 954 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 · 954 lines · 5,663 tokens per session scan A 399e7a4c2c83

Subscribe to this mod's changes

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