issue
SkillDev toolsCreate a GitHub issue using the wingman issue templates (bug, feature). Injects branch and commit context automatically.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the issue skill
What this skill tells your AI
The instructions your AI receives, as published by dedalus-labs/wingman in .agents/skills/issue/SKILL.md and read by ahel’s review.
Context (auto-detected from HEAD)
- Current branch: !
git branch --show-current - Last commit: !
git log -1 --oneline - Remote: !
git remote get-url origin
Template Selection
Parse the first positional arg from $ARGUMENTS as the issue type:
| Type | Template file | Labels |
|---|---|---|
| bug | .github/ISSUE_TEMPLATE/bug_report.yml | bug,triage |
| feature | .github/ISSUE_TEMPLATE/feature_request.yml | enhancement |
The bug_report.yml file is a GitHub issue form. gh issue create --body submits plain
markdown, so translate the yaml form fields into a markdown body with the same section
headings (Bug Description, Steps to Reproduce, Expected Behavior, Environment,
Additional Context).
For feature_request.yml, read the file and translate form fields the same way.
Rules
- Issue title: short, imperative, no period, under 80 chars. No conventional-commit prefix (that's for PRs, not issues).
- The remaining positional args from
$ARGUMENTS(after the type) form the title. - Use
gh issue create --title "..." --body "$(cat <<'EOF' ... EOF)" --label "...". - Labels come from the table above. Do not invent new labels.
Task
- Parse
$ARGUMENTS:- First token: issue type (
bugorfeature). If missing or invalid, ask the user which template to use. - Remaining tokens: title.
- First token: issue type (
- Read the matching template file from
.github/ISSUE_TEMPLATE/. - Fill every section. Leave no placeholder text. If a section truly has no content, write "N/A" rather than deleting the section.
- Auto-inject the branch and last-commit context into "Additional Context".
- Run
gh issue createwith the right labels. - Return the issue URL.
Signals
- GitHub stars
- 183
- Forks
- 6
- Last commit
- Apr 2026
- Hacker News mentions
- 20
Advanced
- Catalog kind
- skill
- Gateway key
issue-dedalus-labs- Source
- github.com/dedalus-labs/wingman