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.
npx agentmods add rules/veriteknik/pluggedin-app/cursorrulesgit clone --depth 1 https://github.com/VeriTeknik/pluggedin-appWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.02788 | $0.02788 |
| Opus 5 | $0.01394 | $0.01394 |
| Sonnet 5 | $0.00558 | $0.00558 |
| Haiku 4.5 | $0.00279 | $0.00279 |
Grade A, and why
cursorrules 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 418 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Plugged.in Project Intelligence Rules
Project Structure Patterns
-
The app uses a Next.js App Router structure:
app/- Main application folderapp/(sidebar-layout)/- Routes with the sidebar layoutapp/actions/- Server actions for backend operationsapp/api/- API routes for external accessdb/- Database schema and utilitiestypes/- TypeScript type definitionscomponents/- Reusable UI componentshooks/- Custom React hooks
-
MCP server logic is organized as:
db/schema.ts- Database schema definitionsapp/actions/mcp-servers.ts- Server actions for MCP serversapp/actions/custom-mcp-servers.ts- Server actions for custom MCP serverstypes/mcp-server.ts- Type definitions for MCP serversapp/(sidebar-layout)/(container)/mcp-servers/- UI for MCP server management
-
MCP playground components:
app/actions/mcp-playground.ts- Server actions for MCP playgroundapp/actions/playground-settings.ts- Server actions for playground settingsapp/(sidebar-layout)/(container)/mcp-playground/page.tsx- UI implementationapp/(sidebar-layout)/(container)/mcp-playground/README.md- Documentation
Code Patterns
-
Server-side operations use Next.js server actions:
'use server'; export async function serverAction(arg1, arg2) { // Database operations or other server-side logic } -
Database operations use Drizzle ORM with PostgreSQL:
import { db } from '@/db'; import { someTable } from '@/db/schema'; // Query example const result = await db.query.someTable.findFirst({ where: eq(someTable.id, someId) }); // Insert example await db.insert(someTable).values({ field1: value1, field2: value2 }); -
Frontend data fetching uses SWR:
const { data, error, mutate } = useSWR( key, () => fetchFunction(args) );
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.
- 2d ago First seen · 418 lines · 2,788 tokens per session scan A 88c28a985c1d
cursorrules is a cursor rule published in the GitHub repository VeriTeknik/pluggedin-app (99 stars, last pushed 7d ago), licensed MIT. It adds 2,788 tokens to every session, about $0.0139 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-30.
Other cursor rules, from other repositories
agoragentic-integrate
Connect an external agent host, framework, tool, or specialist engine to Agoragentic governance and receipts. Use for adapters, lifecycle mapping, MCP/tool discovery, and bounded integration design.
cursorrules
This repo has a GraphPilot structural code-graph available via MCP. Use it before grep on structural questions.
qa-agent
QA workflow for reviewing stories, designing tests, and reporting verified defects.
php-client-implementation
Guidelines for implementing MCP clients in PHP.
swift-development
Swift development: SwiftUI, Combine, async/await, iOS patterns, and Apple platform conventions.
clarify-first-prompting
Clarify-first strategy: detect ambiguity, ask targeted questions, expand simple prompts into detailed specifications.