fix-error

fix-error is a command for Cursor from hoshikitsunoda/figma-plugins-vibe-coding-template. It costs 0 tokens per session (488 once invoked), scanned A, original, MIT.

A command that investigates errors from a program build or while the program is running, explains the cause in plain language, and applies a fix. A build is the process of preparing source code to run.

In plain words
What is it for?
Use it for pasted error messages, crashes, type errors, syntax errors, and other build or runtime problems in a codebase.
Why use it?
It turns a confusing error message or crash into an identified code problem and a suggested path to verify the fix.

Command 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 commands/hoshikitsunoda/figma-plugins-vibe-coding-template/fix-error
Clone the repo
git clone --depth 1 https://github.com/hoshikitsunoda/figma-plugins-vibe-coding-template

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 fix-error

README.md
[![agentmods](https://agentmods.dev/badge/commands/hoshikitsunoda/figma-plugins-vibe-coding-template/fix-error.svg)](https://agentmods.dev/commands/hoshikitsunoda/figma-plugins-vibe-coding-template/fix-error)
Your own site
<a href="https://agentmods.dev/commands/hoshikitsunoda/figma-plugins-vibe-coding-template/fix-error"><img src="https://agentmods.dev/badge/commands/hoshikitsunoda/figma-plugins-vibe-coding-template/fix-error.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 488 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.00488
Opus 5 $0.00000 $0.00244
Sonnet 5 $0.00000 $0.00098
Haiku 4.5 $0.00000 $0.00049

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

Security

Grade A, and why

fix-error 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 5d 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/commands/fix-error.md · 66 lines

What it actually says

Diagnoses and fixes errors from build or runtime.

What it does:

  • Analyzes error messages pasted by user
  • Finds the root cause in the codebase
  • Proposes and implements a fix
  • Suggests next steps (rebuild, retest)

Usage: /fix_error <paste error message or describe the issue>

Examples:

  • /fix_error Cannot read property 'id' of undefined
  • /fix_error The plugin crashes when I click the button
  • /fix_error Build failed with "Type 'string' is not assignable to type 'number'"

Steps

  1. Understand the error

    • Parse the error message for key information:
      • Error type (TypeError, SyntaxError, build error, etc.)
      • File and line number if provided
      • Stack trace if available
    • If error is vague, ask user for more context
  2. Locate the cause

    • Search the codebase for the relevant code
    • Check recent changes that might have caused it
    • Look for common patterns that cause this error
  3. Explain in plain language

    • Tell user what went wrong and why
    • Avoid jargon — explain like they're not an engineer
  4. Implement the fix

    • Make the necessary code changes
    • Explain what you changed and why
  5. Suggest next steps

    • "Run /build to recompile the plugin"
    • "Test in Figma to verify the fix"
    • If the fix might have side effects, mention them

Common Error Patterns

"Cannot read property 'X' of undefined"

  • Something is null/undefined when it shouldn't be
  • Usually a missing null check or wrong variable

"Type 'X' is not assignable to type 'Y'"

  • TypeScript type mismatch
  • Check the expected type and fix the value

"figma is not defined"

  • Trying to use figma.* in UI code (not allowed)
  • Move that code to src/plugin/ instead

"Cannot find module"

  • Import path is wrong or file doesn't exist
  • Check spelling and file location

"postMessage" errors

  • Message type mismatch between plugin and UI
  • Check src/shared/messages.ts for correct types
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. 5d ago First seen · 66 lines · 0 tokens per session scan A 9a594d07e004

Subscribe to this mod's changes

fix-error is a command published in the GitHub repository hoshikitsunoda/figma-plugins-vibe-coding-template (21 stars, last pushed 8mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 488 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-30.