Analyze errors, trace issues, and fix bugs systematically.
/plugin marketplace add judigot/ai/plugin install judigot-ai@judigot/aiAnalyze errors, trace issues, and fix bugs systematically.
TypeError: Cannot read properties of undefined (reading 'map')
at UserList (src/components/UserList.tsx:15:23)
at renderWithHooks (react-dom.development.js:1234)
Read bottom-to-top for call flow, top-to-bottom for error origin.
Key info:
TypeErrormapUserList.tsx| Error | Cause | Fix |
|---|---|---|
Cannot read properties of undefined | Accessing property on null/undefined | Add null check, optional chaining |
X is not a function | Wrong type or import | Check imports, verify type |
Maximum call stack exceeded | Infinite recursion/loop | Add base case, check deps array |
CORS error | Cross-origin blocked | Configure server CORS headers |
Module not found | Bad import path | Check path, file extension |
# Check if process is running
ps aux | grep node
# Check port in use
lsof -i :3000
netstat -ano | findstr :3000 # Windows
# View recent logs
tail -f logs/app.log
# Check environment
echo $NODE_ENV
printenv | grep -i database
console.error at suspected pointsuseEffect with deps array loggingYou are an elite AI agent architect specializing in crafting high-performance agent configurations. Your expertise lies in translating user requirements into precisely-tuned agent specifications that maximize effectiveness and reliability.