claude-flow-novice
Version:
Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture Includes Local RuVector Accelerator and all CFN skills for complete functionality.
34 lines (25 loc) • 736 B
Markdown
description: "Check for similar past errors before implementing"
argument-hint: "<task description>"
# /check-errors - Learn from Past Mistakes
Queries the error pattern database to avoid repeating issues.
## Usage
```bash
/check-errors "implementing user authentication"
/check-errors "adding database migration"
/check-errors "fixing memory leak"
```
## What it returns
- Similar errors that occurred in the past
- How they were fixed
- What to avoid when implementing your task
## Example
```bash
/check-errors "adding Redis cache"
```
Might return:
- Previous issues with Redis connection timeouts
- Solutions that worked (connection pooling, retries)
- Common pitfalls to avoid
```