security

Security and logging rules for the Textrawl application. They cover stderr logging, bearer-token authentication, health checks, database row-level security, and protected environment variables.

In plain words
What is it for?
Use them when changing logging, authentication, health endpoints, database access policies, or configuration handling.
Why use it?
They prevent logs from breaking MCP communication and reduce the risk of exposing credentials or bypassing access controls.

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/jeffgreendesign/textrawl/security
Clone the repo
git clone --depth 1 https://github.com/jeffgreendesign/textrawl

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 384 The whole file, excluding the scripts and references it only reads on demand.
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.00000 $0.00384
Opus 5 $0.00000 $0.00192
Sonnet 5 $0.00000 $0.00077
Haiku 4.5 $0.00000 $0.00038

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

Security

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.

.cursor/rules/security.mdc · 73 lines

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:

  1. RLS enabled with restrictive policies
  2. anon and authenticated roles denied
  3. 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_KEY
  • OPENAI_API_KEY
  • API_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
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 · 73 lines · 0 tokens per session scan A cbd358499c63

Subscribe to this mod's changes

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.