Marketplace error-memory
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/aceek/error-memory" ~/.claude/skills/aiskillstore-marketplace-error-memory && rm -rf "$T"
manifest:
skills/aceek/error-memory/SKILL.mdsource content
Error Memory
Document errors to avoid repeating them.
Trigger
Invoke when:
- Build/tests fail after your action
- User corrects you
- You realize a wrong approach
- You forget a project convention
- Unexpected behavior occurs
Process
-
Identify error type
: build, tests, syntax, runtimetech
: conventions, patterns, project stackctx
: misunderstood requirementscomp
-
Analyze root cause (not symptom)
-
Formulate fix as reusable rule
-
Append line to
:.claude/errors.md| MM-DD | type | Short error | Root cause | Rule to follow | -
Create file if missing with this template:
# Project Errors > Past Claude mistakes on this project. Check before acting. | Date | Type | Error | Cause | Fix | |------|------|-------|-------|-----| ## Legend - **tech** : Technical (build, tests, syntax) - **ctx** : Context (conventions, patterns) - **comp** : Comprehension (misunderstood request)
Rules
- One line = one error (no paragraphs)
- Fix = actionable rule, not excuse
- Cause = why, not what
- Keep < 100 lines (archive if needed)
- Check errors.md before acting on any project