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/jeffgreendesign/textrawl/securitygit clone --depth 1 https://github.com/jeffgreendesign/textrawlWhat 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.00000 | $0.00384 |
| Opus 5 | $0.00000 | $0.00192 |
| Sonnet 5 | $0.00000 | $0.00077 |
| Haiku 4.5 | $0.00000 | $0.00038 |
Grade A, and why
security 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.
What it actually says
Security & Logging
Critical: Logging to stderr
All logs MUST use console.error() (stderr)
stdout is reserved for MCP JSON-RPC communication. Using console.log() will corrupt the MCP protocol.
// CORRECT - use the logger
import { logger } from '../utils/logger.js';
logger.info('Message');
logger.error('Error', { details });
logger.debug('Debug info');
// WRONG - never use console.log
console.log('This will break MCP!');
The logger automatically routes to stderr.
API Authentication
Bearer token authentication for production:
// Middleware checks Authorization header
// Token must be minimum 32 characters
// Set via API_BEARER_TOKEN environment variable
Health endpoints are unprotected (for load balancer probes):
/health/health/live/health/ready
Row Level Security (RLS)
Database uses defense-in-depth RLS:
- RLS enabled with restrictive policies
anonandauthenticatedroles denied- App uses service role key (bypasses RLS)
This is intentional for single-tenant design. See scripts/security-rls.sql.
Environment Variables
Never log or expose:
SUPABASE_SERVICE_KEYOPENAI_API_KEYAPI_BEARER_TOKEN
Check if configured without exposing values:
export function isSupabaseConfigured(): boolean {
return !!(process.env.SUPABASE_URL && process.env.SUPABASE_SERVICE_KEY);
}
Rate Limiting
Built-in rate limits:
- API endpoints: 100 req/min
- Upload endpoint: 10 req/min
- Health checks: 300 req/min
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.
- yesterday First seen · 73 lines · 0 tokens per session scan A cbd358499c63
security is a cursor rule published in the GitHub repository jeffgreendesign/textrawl (5 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 384 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-08-31.
Other cursor rules, from other repositories
svelte
You are an expert in Svelte 5, SvelteKit, TypeScript, and modern web development.
frontend
Demo Shop frontend guidance.
write
Writing style guide with AI detection avoidance. For tweets, LinkedIn, blogs, READMEs, commits. Activate with @write.
rulesforconvex
description: Convex guidelines globs: alwaysApply: true.
no-crux-frontmatter
This is a regular rule file that does not have crux: true in its frontmatter. It should be ignored by the CRUX compression hook.
rule-generating-agent
This rule is essential for maintaining consistency and quality in rule creation across the codebase. It must be followed whenever: (1) A user requests a new rule to be created, (2) An existing rule needs modification, (3) The user asks to remember certain behaviors or patterns, or (4) Future behavior changes are…