From mayring-coder
Use when the user mentions a GitHub issue number, URL, or asks to work on/fix/implement/triage an issue — BEFORE starting any implementation or investigation
How this skill is triggered — by the user, by Claude, or both
Slash command
/mayring-coder:github-issue-analysisThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Blind code-diving before loading context wastes time and misses systemic risks.
Blind code-diving before loading context wastes time and misses systemic risks. Turbulence data reveals which files are structurally fragile — before you touch them.
Core principle: ALWAYS load issue context + memory + turbulence BEFORE writing code.
Violating the letter of this process is violating the spirit of issue-driven development.
NO IMPLEMENTATION WITHOUT CONTEXT LOAD FIRST
If you haven't completed Phase 1 (Context), you cannot propose code changes.
#<number>, issue/<number>, or a GitHub issue URLBEFORE writing a single line of code:
Load the issue
gh issue view <nummer> --repo <repo> --json number,title,body,labels,comments
Extract: affected files/modules, error messages, reproduction steps, linked PRs.
Search memory for related context
mcp__claude_ai_Memory__search_memory(
query="<issue-titel + schlüsselbegriffe aus body>",
workspace_id="<repo-slug>"
)
Note all returned chunk_ids — needed for Phase 4 feedback.
State what you know
For every file mentioned in the issue:
Check turbulence cache:
# MayringCoder issues:
cat /home/nileneb/Desktop/MayringCoder/cache/*turbulence*.json 2>/dev/null | \
python3 -c "import json,sys; d=json.load(sys.stdin); \
[print(f'{k}: score={v.get(\"turbulence_score\",0):.2f}') \
for k,v in d.get('files',{}).items() if '<dateiname>' in k]"
# app.linn.games issues:
cat /home/nileneb/Desktop/MayringCoder/cache/nileneb-applinngames_turbulence.json 2>/dev/null | \
python3 -c "import json,sys; d=json.load(sys.stdin); \
[print(f'{k}: score={v.get(\"turbulence_score\",0):.2f}, smells={v.get(\"top_smells\",[])}') \
for k,v in d.get('files',{}).items() if '<dateiname>' in k]"
Bewertung:
score > 0.5 → High Risk: besonders vorsichtig vorgehen, Tests zuerstscore 0.2–0.5 → Medium Risk: gründlich testenscore < 0.2 → Low Risk: normale VorsichtFalls kein Cache vorhanden: Hinweis ausgeben, trotzdem mit Phase 3 fortfahren.
Erstelle IMMER diese strukturierte Übersicht vor dem ersten Code-Edit:
## Triage — Issue #<n>: <titel>
**Typ:** <bug | feature | performance | security | refactor>
**Betroffene Dateien:** <liste>
**Turbulenz-Risiko:** <hoch | mittel | niedrig> (<datei>: <score>)
**Memory-Kontext:** <n> relevante Chunks geladen
**Empfehlung:** <1-2 Sätze: Einstiegspunkt, kritische Stellen, Teststrategie>
Diese Ausgabe dient als Alignment-Checkpoint: zeige sie, BEVOR du Code änderst.
Nach Abschluss der Arbeit am Issue:
mcp__claude_ai_Memory__conversation_ingest(
turns=[{"role":"assistant",
"content":"<Triage-Zusammenfassung + was wurde implementiert/geändert>",
"timestamp":"<ISO>"}],
session_id="github-issue-<repo-slug>-<nummer>",
workspace_slug="<repo-slug>",
presumarized="Issue #<n> (<titel>): <typ>, Dateien: <liste>, \
Turbulenz: , gelöst durch: <1 Satz>" )
2. **Feedback für Memory-Chunks** (rating 1..5, seit 2026-05-10 kein binary mehr)
mcp__claude_ai_Memory__feedback( chunk_id="", signal="5", # 4=wichtig, 5=primärquelle, 3=neutral, 2=kaum, 1=schadhaft metadata={"issue":"","task":""} )
Irrelevante Chunks: `signal="2"` oder `"1"`.
## Red Flags — STOP
- Code öffnen bevor Phase 1 abgeschlossen ist
- "Das Issue ist einfach, kein Kontext nötig" — einfache Issues haben auch Kontext
- Turbulenz überspringen weil "nur kleine Änderung" — gerade kleine Änderungen in fragilen Dateien brechen alles
- Phase 4 weglassen — Memory bleibt dann leer für die nächste Session
## Workspace-Slug Konvention
`Nileneb/MayringCoder` → `mayringcoder`
`Nileneb/app.linn.games` → `applinngames` oder `app-linn-games`
Wenn unklar: `gh repo view --json nameWithOwner` im aktuellen Verzeichnis.
npx claudepluginhub nileneb/mayringcoder --plugin mayring-coderProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.