04-error-handling-logging

04-error-handling-logging is a cursor rule for Cursor from gargoyle92/agentify-mcp. It costs 0 tokens per session (1,644 once invoked), scanned A, original, MIT.

Rules for using a shared logger and handling errors in a project. They require structured log messages, suitable severity levels, context before errors, and event notifications for error conditions.

In plain words
What is it for?
Adding logging to classes through an injected Logger, reporting errors consistently, emitting monitoring events, and avoiding passwords or tokens in logs.
Why use it?
They make failures easier to investigate while preventing sensitive information, silent errors, direct console output, and excessive log noise.

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/gargoyle92/agentify-mcp/04-error-handling-logging
Clone the repo
git clone --depth 1 https://github.com/gargoyle92/agentify-mcp

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for 04-error-handling-logging

README.md
[![agentmods](https://agentmods.dev/badge/rules/gargoyle92/agentify-mcp/04-error-handling-logging.svg)](https://agentmods.dev/rules/gargoyle92/agentify-mcp/04-error-handling-logging)
Your own site
<a href="https://agentmods.dev/rules/gargoyle92/agentify-mcp/04-error-handling-logging"><img src="https://agentmods.dev/badge/rules/gargoyle92/agentify-mcp/04-error-handling-logging.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,644 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.01644
Opus 5 $0.00000 $0.00822
Sonnet 5 $0.00000 $0.00329
Haiku 4.5 $0.00000 $0.00164

Measured 3d ago against content hash 87f10d4b8d34, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

04-error-handling-logging 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 3d 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.

.cursor/rules/04-error-handling-logging.mdc · 222 lines

How it starts

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

04-Error-Handling-Logging

Logging System Architecture

The project uses a centralized logging system implemented in logger.ts with configurable log levels.

Logger Integration

All classes receive a Logger instance via dependency injection and must use it for all logging operations.

CRITICAL LOGGING RULES - MUST FOLLOW

✅ ALWAYS DO:

  1. Use Logger instance: Never use console.log - always use the injected Logger
  2. Appropriate log levels: Use error/warn/info/debug according to severity
  3. Structured logging: Include relevant context (clientId, operation, etc.)
  4. Log before errors: Log context before throwing exceptions
  5. Event emission: Emit events for error conditions to enable monitoring

❌ NEVER DO:

  1. Direct console output: Never use console.log, console.error, etc.
  2. Silent failures: Never catch errors without logging them
  3. Expose sensitive data: Don't log passwords, tokens, or sensitive information
  4. Generic error messages: Avoid vague messages like "Error occurred"
  5. Log flooding: Don't log inside tight loops without throttling

Error Handling Patterns

✅ PROPER Error Handling:

// Class with proper logging setup
export class SessionManager extends EventEmitter {
  constructor(private logger: Logger) {
    super();
  }

  public registerClient(client: AgentClient): void {
    try {
      this.logger.info(`Registering client: ${client.id} (${client.type})`);
      this.clients.set(client.id, client);
      this.emit('clientConnected', client);
      this.logger.info(`Client registered successfully: ${client.id}`);
    } catch (error: unknown) {
      this.logger.error(`Failed to register client ${client.id}:`, error);
      this.emit('error', { operation: 'registerClient', clientId: client.id, error });
      throw error;
    }
  }
}

❌ INCORRECT Patterns:

// Bad - no logging
public registerClient(client: AgentClient): void {
  this.clients.set(client.id, client); // Silent operation
}

// Bad - console usage
public registerClient(client: AgentClient): void {
  console.log('Registering client:', client.id); // Wrong logging method
}

// Bad - swallowing errors
public registerClient(client: AgentClient): void {
  try {
    this.clients.set(client.id, client);
  } catch (error) {
    // Silent failure - very bad!
  }
}

Read the full file on GitHub · 222 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. 3d ago First seen · 222 lines · 0 tokens per session scan A 87f10d4b8d34

Subscribe to this mod's changes

04-error-handling-logging is a cursor rule published in the GitHub repository gargoyle92/agentify-mcp (1 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,644 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.