fix-issue — for Claude Code fix-issue, ascfix, community, for Claude Code, ide skills, gh issue view $ARGUMENTS --comments, GitHub, ARGUMENTS, comments, everything

v1.0.0

Über diesen Skill

Perfekt für Entwicklungsmittel, die eine effiziente GitHub-Problemlösung und Automatisierungsfähigkeiten benötigen. Lokalisierte Zusammenfassung: Enforces RED→GREEN→CLEANUP TDD discipline and requires every reproduction case from the issue to have a passing test before any code ships. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Funktionen

Fix GitHub Issue #$ARGUMENTS
Step 0 — Read the issue in full
Fetch the issue and all its comments. Read everything before touching any code.
gh issue view $ARGUMENTS --comments
Step 1 — Extract every reproduction case

# Kernthemen

evoludigit evoludigit
[3]
[0]
Aktualisiert: 3/19/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Perfekt für Entwicklungsmittel, die eine effiziente GitHub-Problemlösung und Automatisierungsfähigkeiten benötigen. Lokalisierte Zusammenfassung: Enforces RED→GREEN→CLEANUP TDD discipline and requires every reproduction case from the issue to have a passing test before any code ships. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Warum diese Fähigkeit verwenden

Ermöglicht es den Agenten, den Arbeitsablauf zu automatisieren, indem sie Probleme abrufen, Wiedergabefälle extrahieren und GitHub-CLI-Befehle wie 'gh issue view' für eine effiziente Problemanalyse und -lösung verwenden, wodurch die Produktivität der Entwickler und die Teamzusammenarbeit

Am besten geeignet für

Perfekt für Entwicklungsmittel, die eine effiziente GitHub-Problemlösung und Automatisierungsfähigkeiten benötigen.

Handlungsfähige Anwendungsfälle for fix-issue

Automatisieren der Analyse von GitHub-Problemen für eine schnellere Lösung
Extrahieren von Wiedergabefällen aus Kommentaren und Problemtexten
Fehlerbehebung mit präzisen Eingabe/Ausgabebespielen und Diffs

! Sicherheit & Einschränkungen

  • Benötigt die Installation und Konfiguration von GitHub CLI
  • Benötigt Zugriff auf GitHub-Probleme und -Kommentare
  • Begrenzt auf GitHub-Probleme nur

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs-Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ und Installationsschritte

These questions and steps mirror the structured data on this page for better search understanding.

? Häufige Fragen

Was ist fix-issue?

Perfekt für Entwicklungsmittel, die eine effiziente GitHub-Problemlösung und Automatisierungsfähigkeiten benötigen. Lokalisierte Zusammenfassung: Enforces RED→GREEN→CLEANUP TDD discipline and requires every reproduction case from the issue to have a passing test before any code ships. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Wie installiere ich fix-issue?

Führen Sie den Befehl aus: npx killer-skills add evoludigit/ascfix/fix-issue. Er funktioniert mit Cursor, Windsurf, VS Code, Claude Code und mehr als 19 weiteren IDEs.

Wofür kann ich fix-issue verwenden?

Wichtige Einsatzbereiche sind: Automatisieren der Analyse von GitHub-Problemen für eine schnellere Lösung, Extrahieren von Wiedergabefällen aus Kommentaren und Problemtexten, Fehlerbehebung mit präzisen Eingabe/Ausgabebespielen und Diffs.

Welche IDEs sind mit fix-issue kompatibel?

Dieser Skill ist mit Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer kompatibel. Nutzen Sie die Killer-Skills CLI für eine einheitliche Installation.

Gibt es Einschränkungen bei fix-issue?

Benötigt die Installation und Konfiguration von GitHub CLI. Benötigt Zugriff auf GitHub-Probleme und -Kommentare. Begrenzt auf GitHub-Probleme nur.

So installieren Sie den Skill

  1. 1. Terminal öffnen

    Öffnen Sie Ihr Terminal oder die Kommandozeile im Projektverzeichnis.

  2. 2. Installationsbefehl ausführen

    Führen Sie aus: npx killer-skills add evoludigit/ascfix/fix-issue. Die CLI erkennt Ihre IDE oder Ihren Agenten automatisch und richtet den Skill ein.

  3. 3. Skill verwenden

    Der Skill ist jetzt aktiv. Ihr KI-Agent kann fix-issue sofort im aktuellen Projekt verwenden.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

fix-issue

Install fix-issue, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Fix GitHub Issue #$ARGUMENTS

Step 0 — Read the issue in full

Fetch the issue and all its comments. Read everything before touching any code.

gh issue view $ARGUMENTS --comments

Step 1 — Extract every reproduction case

From the issue body and every comment, extract all concrete input/output examples:

  • Exact Markdown input snippets
  • Exact diffs showing before/after
  • Any edge cases mentioned in follow-up comments

List them explicitly before continuing. Do not skip cases that appear only in comments — those are often the ones that reveal a more complete failure mode.

STOP HERE if any reproduction case is ambiguous. Ask for clarification before writing any code.

Step 2 — RED: write failing tests for every reproduction case

For each case identified in Step 1, write a test that:

  1. Uses the exact input from the issue (copy verbatim, do not paraphrase)
  2. Asserts the exact expected output described in the report
  3. Is named after the scenario (e.g. ordered_list_child_after_blank_line_preserves_indent)

Run the tests. Every new test must fail before you write any fix. If a test passes already, the case is either already handled or the test is wrong — investigate before continuing.

cargo test [new_test_name] -- --nocapture

Do not move to Step 3 until all new tests are RED for the right reason.

Step 3 — GREEN: implement the minimal fix

Write the smallest code change that makes all RED tests pass. No refactoring, no extra features.

cargo test

All tests (old and new) must be GREEN before continuing.

Step 4 — CLEANUP: lint and format

cargo clippy --all-targets --all-features -- -D warnings
cargo fmt --check

Fix every warning. Zero tolerance.

Step 5 — Verify idempotency

Run the fix on each reproduction case twice. The second run must produce no diff (idempotent output). Add a test if it isn't.

Step 6 — Prepare the release

  1. Determine the version bump (bug fix → patch)
  2. Update Cargo.toml version
  3. Run cargo build --release to update Cargo.lock
  4. Add a CHANGELOG.md entry that references the issue number and describes what was broken and what was fixed
  5. Update aur/PKGBUILD and aur/.SRCINFO version (pkgrel reset to 1, sha256 marked SKIP)
  6. Commit all changes
  7. Tag the release: git tag vX.Y.Z
  8. Push commit and tag: git push && git push --tags
  9. Create the GitHub release to trigger the publish workflow: gh release create vX.Y.Z
    • The release notes must close the issue: include "Fixes #$ARGUMENTS"

Hard rules

  • Never write a fix before writing a failing test for every case in the issue, including comments.
  • Never release without running the full test suite.
  • Never skip the idempotency check.
  • If a comment on the issue reveals that a previous fix did not work, re-read all comments as new reproduction cases and restart from Step 1.

Verwandte Fähigkeiten

Looking for an alternative to fix-issue or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Lokalisierte Zusammenfassung: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Lokalisierte Zusammenfassung: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Lokalisierte Zusammenfassung: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Lokalisierte Zusammenfassung: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Entwickler