error-patterns
SolidKnown agent error patterns -- debugging reference for tool failures, git errors, CI issues, and common mistakes. Consult when encountering unexpected behavior, tool errors, or CI failures.
AI & Automation 5 stars
3 forks Updated 2 days ago MIT
Install
Quality Score: 80/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Error Patterns -- Top 20
**#1: Parallel verification kills siblings** --
Chain with `;` or `&&`, never parallel Bash calls.
**#2: Worktree cwd resets to main repo** --
Prefix EVERY command with `cd /absolute/path &&`.
**#3: Pre-commit hook rejection** --
Run typecheck/lint BEFORE committing. Fix first.
**#8: Tilde in file paths** --
Never use `~` in Read/Write/Edit paths. Full absolute.
**#9: Push rejected (non-fast-forward)** --
Pull with rebase first: `git pull --rebase && git push`.
**#12: Push and forget CI** --
Spawn background agent to monitor CI after every push.
**#13: Skipping TDD** --
Write the failing test FIRST. Red-Green-Refactor.
**#16: Dependencies not installed** --
Run `pnpm install` / `uv sync` before build/test/lint.
**#25: No upstream tracking** --
First push: `git push -u origin branch-name`.
**#30: PR create before pushing** --
Push branch to remote BEFORE `gh pr create`.
**#33: Pull rebase with dirty tree** --
Commit before `git pull --rebase` (hook enforced).
**#44: Push --tags pushes ALL tags** --
Push specific: `git push origin v1.0.0` or `--follow-tags`.
**#45: Fabricated filesystem paths** --
Never guess paths. Use Glob/Grep to find files first.
**#48: Commit/push to wrong branch** --
Run `git branch --show-current` before every commit.
**#49: Sub-agent git conflicts** --
Each sub-agent owns different files. Central commit.
**#51: CI explosion from parallel pushes** --
Batch pushes. One push triggers one CI run.
**#56: Merge to m...
Details
- Author
- juan294
- Repository
- juan294/cc-rpi
- Created
- 5 months ago
- Last Updated
- 2 days ago
- Language
- Shell
- License
- MIT
Integrates with
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
multi-agent
Rules for sub-agents, Agent Teams, worktree agents, central commit pattern, and parallel work coordination.
5 Updated 2 days ago
juan294 AI & Automation Listed
error-handling-patterns
Error handling best practices - cause chaining, boundary validation, structured errors, fire-and-forget safety, retry discipline
3 Updated today
kookr-ai AI & Automation Listed
git-workflow
Git recipes, worktree management, push sequences, branch verification, and conflict resolution patterns.
5 Updated 2 days ago
juan294