AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Issue Fixer

skill-cyberelf-agent-skills-issue-fixer · by cyberelf

This skill provides a systematic approach for investigating and fixing bugs and issues in the codebase. Use this skill when users report bugs, unexpected behavior, test failures, or request fixes for specific issues. The skill guides through issue registration, root cause analysis, impact assessment, minimal code changes, quality validation, and E2E testing.

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-cyberelf-agent-skills-issue-fixer

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-cyberelf-agent-skills-issue-fixer)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Issue Fixer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:

  1. Issue Registration - Track the issue in .issues/opening.md
  2. Investigation - Find all related code and identify root cause
  3. Impact Assessment - Determine if it requires a simple fix or feature plan
  4. Implementation - Apply minimal, surgical changes
  5. Validation - Run quality checks and tests
  6. E2E Testing - Create/update end-to-end tests for full-stack fixes
  7. 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:

  1. Minimal Changes - Modify only what's necessary to fix the issue
  2. No Unrelated Changes - Don't fix other issues or refactor unrelated code
  3. Preserve Working Code - Don't delete functioning code
  4. Follow Existing Patterns - Match the project's architecture and style
  5. Type Safety - Maintain or improve type annotations
  6. Proper Error Handling - Add error handling if missing
  7. Test Incrementally - Run checks after each file modification
  8. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.