Install
$ agentstack add skill-i-onlabs-claude-code-skills-error-fixer ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Error Fixer
Translate scary error messages into plain English and actionable fixes.
How to Use This Skill
When user shares an error:
- Identify the error type (see patterns below)
- Explain in one sentence what's wrong
- Provide the fix command or action
- Explain what the fix does (briefly)
Common Error Patterns
Module/Import Errors
"Cannot find module 'X'" or "Module not found"
- Meaning: A package isn't installed
- Fix:
npm install X(replace X with the package name)
"Cannot find module './components/Thing'"
- Meaning: File path is wrong or file doesn't exist
- Fix: Check spelling, check if file exists, check capitalization
"Module parse failed" or "You may need a loader"
- Meaning: Trying to import a file type the bundler doesn't understand
- Fix: Install appropriate loader (e.g., css-loader, file-loader)
Syntax Errors
"Unexpected token" or "Parsing error"
- Meaning: Typo in code — missing bracket, comma, quote
- Fix: Look at the line number mentioned, check for typos
"X is not defined"
- Meaning: Using a variable/function that doesn't exist
- Fix: Import it, define it, or check spelling
"Unexpected end of input"
- Meaning: Missing closing bracket, brace, or quote
- Fix: Check for unclosed
{,[,(, or quotes
React Errors
"Invalid hook call"
- Meaning: Hook used outside a component or in wrong order
- Fix: Move hooks to top of component, don't use in loops/conditions
"Each child should have a unique key prop"
- Meaning: List items need key attributes
- Fix: Add
key={uniqueId}to each mapped element
"Cannot read property 'X' of undefined"
- Meaning: Trying to access something that doesn't exist yet
- Fix: Add optional chaining
?.or check if data exists first
"Too many re-renders"
- Meaning: Component is updating itself in an infinite loop
- Fix: Check useEffect dependencies, don't call setState during render
"Rendered more/fewer hooks than expected"
- Meaning: Hooks are being called conditionally
- Fix: Move all hooks before any return statements or conditions
"Hydration failed" or "Text content mismatch"
- Meaning: Server HTML doesn't match client HTML (Next.js/SSR)
- Fix: Use
suppressHydrationWarning, or check for browser-only code
Next.js Errors
"'next/router' should not be imported in app directory"
- Meaning: Using old router in App Router
- Fix: Use
import { useRouter } from 'next/navigation'instead
"You're importing a component that needs useState..."
- Meaning: Server component using client-only features
- Fix: Add
'use client'at top of file
"Dynamic server usage" or "cookies/headers"
- Meaning: Using dynamic features in static context
- Fix: Add
export const dynamic = 'force-dynamic'to page
Tailwind Errors
Styles not applying
- Meaning: Class names not being detected
- Fix: Check
contentpaths in tailwind.config.js include your files
"Unknown at rule @tailwind"
- Meaning: Editor doesn't recognize Tailwind
- Fix: Install Tailwind CSS IntelliSense extension, or ignore the warning
Build/Compile Errors
"ENOENT: no such file or directory"
- Meaning: A file or folder is missing
- Fix: Check path, run
npm installif it's in node_modules
"EACCES: permission denied"
- Meaning: No permission to access file/folder
- Fix:
sudo chown -R $USER ~/.npmor use sudo
"ENOMEM" or "JavaScript heap out of memory"
- Meaning: Node ran out of memory
- Fix: Add
NODE_OPTIONS=--max-old-space-size=4096before command
"ERESOLVE unable to resolve dependency tree"
- Meaning: Package version conflicts
- Fix:
npm install --legacy-peer-depsor update conflicting packages
Git Errors
"fatal: not a git repository"
- Meaning: Not in a git project folder
- Fix:
cdto your project folder, or rungit init
"Your branch is behind"
- Meaning: Others pushed changes you don't have
- Fix:
git pull
"Merge conflict"
- Meaning: Same lines changed by two people
- Fix: Open the file, look for `` |
| "ENOENT" | Check file path exists | | "unexpected token" | Syntax error — check brackets/quotes | | "is not defined" | Import or define the variable | | "CORS" | Backend needs CORS headers | | "401" | Check API key in .env | | "port already in use" | kill -9 $(lsof -t -i:3000) | | "cannot read property of undefined" | Add ?. or null check | | "heap out of memory" | Add NODE_OPTIONS=--max-old-space-size=4096 | | "hydration" | Add 'use client' or suppressHydrationWarning | | "too many re-renders" | Check useEffect deps, don't setState in render |
When Error is Unclear
- Copy the FIRST line of the error (usually the actual problem)
- Look for a file path and line number
- Google the exact error message in quotes
- Or paste to AI with the relevant code file
- Check if it's a known issue: search GitHub Issues
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: I-Onlabs
- Source: I-Onlabs/claude-code-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.