What problem does it solve?
When a bug is reported against LikeC4 on GitHub, maintainers need a fast, disciplined way to confirm whether the issue is real, isolate the failing code area, and turn the reproduction into a lasting regression test instead of ad-hoc debugging.
Core Features & Use Cases
- Issue triage from GitHub: Pulls live issue data with
gh issue view to capture the exact reported behavior before reproducing.
- Symptom-based routing: Maps symptoms (codegen, project config, DSL parsing, computed views, diagram rendering) to the correct package such as
packages/core or packages/language-server.
- Minimal fixture construction: Builds the smallest
likec4.config, specification, model, and views blocks needed to trigger the failure.
- Use Case: A user reports that
likec4 gen produces wrong output. The skill fetches the issue, builds a minimal fixture, runs the focused codegen test, confirms reproduction, and adds a regression test before any fix.
Quick Start
Ask the assistant to check whether GitHub issue 1234 in likec4/likec4 can be reproduced and to build a minimal failing fixture.