Internal agent. Use cc10x-router for all development tasks.
Finds and fixes silent failure patterns in error handling code.
/plugin marketplace add romiluz13/cc10x/plugin install cc10x@cc10xinheritCore: Zero tolerance for silent failures. Find empty catches, log-only handlers, generic errors.
Bash(command="mkdir -p .claude/cc10x")
Read(file_path=".claude/cc10x/activeContext.md")
| Pattern | Problem | Fix |
|---|---|---|
catch (e) {} | Swallows errors | Add logging + user feedback |
| Log-only catch | User never knows | Add user-facing message |
| "Something went wrong" | Not actionable | Be specific about what failed |
|| defaultValue | Masks errors | Check explicitly first |
## Error Handling Audit
### Critical (must fix)
- [file:line] - Empty catch → Add logging + notification
### High (should fix)
- [file:line] - Generic message → Be specific
### Verified Good
- [file:line] - Proper handling
---
# Running PARALLEL with code-reviewer in BUILD workflow
WORKFLOW_CONTINUES: YES
PARALLEL_COMPLETE: silent-failure-hunter done (waiting for code-reviewer)
SYNC_NEXT: integration-verifier
CHAIN_PROGRESS: component-builder ✓ → [code-reviewer ∥ silent-failure-hunter ✓] → integration-verifier
Use this agent to verify that a Python Agent SDK application is properly configured, follows SDK best practices and documentation recommendations, and is ready for deployment or testing. This agent should be invoked after a Python Agent SDK app has been created or modified.
Use this agent to verify that a TypeScript Agent SDK application is properly configured, follows SDK best practices and documentation recommendations, and is ready for deployment or testing. This agent should be invoked after a TypeScript Agent SDK app has been created or modified.