|
| 1 | +name: Bug report |
| 2 | +description: Something in the CLI, the methodology docs, or the VS Code extension is broken. |
| 3 | +title: "[bug] " |
| 4 | +labels: ["bug", "triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to file a bug! Before submitting, please search existing issues to avoid duplicates. |
| 10 | +
|
| 11 | + If this is a **security vulnerability**, do NOT file it here — use the [private advisory flow](https://github.com/zakelfassi/skills-driven-development/security/advisories) instead. |
| 12 | +
|
| 13 | + - type: dropdown |
| 14 | + id: component |
| 15 | + attributes: |
| 16 | + label: Affected component |
| 17 | + description: Which part of SkDD is misbehaving? |
| 18 | + options: |
| 19 | + - skdd CLI (init / forge / validate / link / doctor / import / list / sync) |
| 20 | + - VS Code extension (extensions/vscode) |
| 21 | + - Methodology docs |
| 22 | + - skillforge meta-skill |
| 23 | + - Claude Code plugin (plugins/skdd-claude) |
| 24 | + - Colony manifest (.colony.json) / JSON Schema |
| 25 | + - Other / not sure |
| 26 | + validations: |
| 27 | + required: true |
| 28 | + |
| 29 | + - type: input |
| 30 | + id: version |
| 31 | + attributes: |
| 32 | + label: skdd CLI version |
| 33 | + description: Output of `skdd --version` (if CLI-related). Otherwise leave blank. |
| 34 | + placeholder: "0.3.0" |
| 35 | + |
| 36 | + - type: input |
| 37 | + id: node |
| 38 | + attributes: |
| 39 | + label: Node.js version |
| 40 | + description: Output of `node --version` |
| 41 | + placeholder: "v20.x" |
| 42 | + |
| 43 | + - type: dropdown |
| 44 | + id: os |
| 45 | + attributes: |
| 46 | + label: Operating system |
| 47 | + options: |
| 48 | + - macOS |
| 49 | + - Linux |
| 50 | + - Windows |
| 51 | + - Other |
| 52 | + validations: |
| 53 | + required: true |
| 54 | + |
| 55 | + - type: dropdown |
| 56 | + id: harness |
| 57 | + attributes: |
| 58 | + label: Agent harness (if relevant) |
| 59 | + description: Which harness were you using when you hit the bug? |
| 60 | + options: |
| 61 | + - Claude Code |
| 62 | + - OpenAI Codex |
| 63 | + - Cursor |
| 64 | + - GitHub Copilot |
| 65 | + - Gemini CLI |
| 66 | + - OpenCode |
| 67 | + - Goose |
| 68 | + - Amp |
| 69 | + - Roo Code |
| 70 | + - Junie |
| 71 | + - VS Code (Copilot / Agent Mode) |
| 72 | + - Not harness-related |
| 73 | + |
| 74 | + - type: textarea |
| 75 | + id: what-happened |
| 76 | + attributes: |
| 77 | + label: What happened? |
| 78 | + description: Describe the bug. What command did you run, what did you expect, and what did you observe instead? |
| 79 | + placeholder: | |
| 80 | + I ran `skdd link --harness=claude,codex` in a fresh project and … |
| 81 | + validations: |
| 82 | + required: true |
| 83 | + |
| 84 | + - type: textarea |
| 85 | + id: repro |
| 86 | + attributes: |
| 87 | + label: Steps to reproduce |
| 88 | + description: Minimal steps, starting from a clean directory if possible. |
| 89 | + placeholder: | |
| 90 | + 1. mkdir /tmp/repro && cd /tmp/repro |
| 91 | + 2. pnpm dlx skdd init --harness=claude |
| 92 | + 3. ... |
| 93 | + render: shell |
| 94 | + validations: |
| 95 | + required: true |
| 96 | + |
| 97 | + - type: textarea |
| 98 | + id: logs |
| 99 | + attributes: |
| 100 | + label: Relevant output / logs |
| 101 | + description: Include the exact CLI output, stack traces, or `.skdd-sync.json` state if applicable. Use `SKDD_DEBUG=1` for verbose logging. |
| 102 | + render: shell |
| 103 | + |
| 104 | + - type: textarea |
| 105 | + id: extra |
| 106 | + attributes: |
| 107 | + label: Anything else? |
| 108 | + description: Context, screenshots, workspace layout, `.colony.json`, etc. |
0 commit comments