Install
$ agentstack add skill-cyberelf-agent-skills-issue-fixer ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Issue Fixer
Overview
This skill provides a comprehensive, systematic workflow for investigating and fixing issues with minimal impact. It ensures proper issue tracking, thorough root cause analysis, impact assessment, quality validation, and automated testing for all fixes.
When to Use This Skill
Invoke this skill when:
- User reports a bug or unexpected behavior
- Tests are failing and need investigation
- Features are broken or not working as expected
- User explicitly requests a fix for a specific issue
- Error messages or exceptions need resolution
Core Workflow
The issue-fixing process follows seven sequential phases:
- Issue Registration - Track the issue in
.issues/opening.md - Investigation - Find all related code and identify root cause
- Impact Assessment - Determine if it requires a simple fix or feature plan
- Implementation - Apply minimal, surgical changes
- Validation - Run quality checks and tests
- E2E Testing - Create/update end-to-end tests for full-stack fixes
- Finalization - Update issue status and generate summary
Quick Start Decision Tree
User reports issue
│
├─→ Is issue already tracked in .issues/opening.md?
│ ├─→ Yes: Note issue number, proceed to Investigation
│ └─→ No: Register new issue, proceed to Investigation
│
└─→ After investigation, what is the impact?
├─→ HIGH (6+ files, 200+ LOC, architecture changes, breaking changes)
│ └─→ Create feature plan, suggest handoff to speckit.plan, STOP
│
└─→ LOW/MEDIUM (1-5 files, <200 LOC, no breaking changes)
└─→ Proceed with implementation → validation → testing → finalization
Detailed Workflow
For the complete step-by-step guide covering all seven phases, refer to:
references/workflow.md - Comprehensive workflow with detailed instructions for each phase including:
- Issue registration format and procedures
- Code discovery and root cause analysis techniques
- Impact assessment criteria and decision points
- Implementation principles and patterns
- Quality validation commands for backend and frontend
- E2E testing guidelines and patterns
- Issue finalization procedures
Load this reference when beginning an issue fix to understand the complete process.
Critical Principles
Always follow these principles when fixing issues:
- Minimal Changes - Modify only what's necessary to fix the issue
- No Unrelated Changes - Don't fix other issues or refactor unrelated code
- Preserve Working Code - Don't delete functioning code
- Follow Existing Patterns - Match the project's architecture and style
- Type Safety - Maintain or improve type annotations
- Proper Error Handling - Add error handling if missing
- Test Incrementally - Run checks after each file modification
- Document Decisions - Add comments explaining non-obvious fixes
Project Standards
Always review and follow project-specific standards before making changes:
- Backend:
.github/instructions/backend.instructions.md - Frontend:
.github/instructions/frontend.instructions.md - Python:
.github/instructions/python_standard.instructions.md - TypeScript:
.github/instructions/ts_standard.instructions.md
Quality Checks
Backend (Python)
# Type checking (must pass with 0 errors)
python -m pyright app/
# Formatting
ruff format app/
# Linting
ruff check app/ --fix
# Tests
pytest tests/ -v
Frontend (TypeScript)
# Build (includes type check and lint)
cd frontend && npm run build
# Tests (if available)
npm test
Resources
references/workflow.md
Complete step-by-step guide for all seven phases of issue fixing, including:
- Detailed instructions for each phase
- Code discovery and analysis techniques
- Impact assessment criteria
- Implementation patterns
- E2E testing guidelines
- Example code snippets and templates
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: cyberelf
- Source: cyberelf/agent_skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.