Loading...
Loading...
Triages new GitHub issues — classifies, reproduces bugs, attempts conservative fixes, and comments. Use when a new issue is opened and needs automated triage.
npx skill4agent add max-sixty/worktrunk issue-triage/running-in-cigh issue view $ARGUMENTS --json title,body,labels,author# Search open issues for similar problems
gh issue list --state open --json number,title,labels --limit 50
# Check for existing fix branches
git branch -r --list 'origin/fix/issue-*'
git branch -r --list 'origin/repro/issue-*'
# Check open PRs
gh pr list --state open --json number,title,headRefName --limit 50cargo test --lib --bins -- test_name
# or for integration tests:
cargo test --test integration -- test_namecargo run -- hook pre-merge --yesgit checkout -b fix/issue-$ARGUMENTS
git add -A
git commit -m "fix: <description>
Closes #$ARGUMENTS
Co-authored-by: Claude <noreply@anthropic.com>"
git push -u origin fix/issue-$ARGUMENTS
gh pr create --title "fix: <description>" --label "automated-fix" --body "## Problem
[What the issue reported and the root cause]
## Solution
[What was fixed and why]
## Testing
[How the fix was verified — mention the reproduction test]
---
Closes #<issue-number> — automated triage"gh run list --branch fix/issue-$ARGUMENTS
gh run watchgh run view <run-id> --log-failedgit checkout -b repro/issue-$ARGUMENTS
git add -A
git commit -m "test: add reproduction for #$ARGUMENTS
Co-authored-by: Claude <noreply@anthropic.com>"
git push -u origin repro/issue-$ARGUMENTS
gh pr create --title "test: reproduction for #$ARGUMENTS" --label "automated-fix" --body "## Context
Adds a failing test that reproduces #$ARGUMENTS. The fix is not yet included —
this PR captures the reproduction so a maintainer can investigate.
---
Automated triage for #<issue-number>"gh issue comment/running-in-ci--body!\!Thanks for reporting this! I was able to reproduce the issue and identified the root cause: [one-sentence explanation].I've opened #PR_NUMBER with a fix. A maintainer will review it shortly.
Thanks for reporting this! I was able to reproduce the issue — #PR_NUMBER adds a failing test that demonstrates the bug.Root cause appears to be [brief explanation if known, or "still under investigation"]. A maintainer will take a closer look.
Thanks for reporting this! I tried to reproduce this but wasn't able to with the information provided.Could you share [specific information needed — exact command, config file, git repo structure, OS, shell, etc.]? That would help narrow it down.A maintainer will also take a look.
Thanks for reporting this! I looked into this and it appears the behavior described may already be fixed on(the relevant test passes).mainCould you confirm which version you're running ()? If you're on an older release, updating should resolve this. A maintainer will confirm.wt --version
Thanks for the suggestion! This is a feature request rather than a bug, so I'll leave it for a maintainer to evaluate and prioritize.
Thanks for reaching out! This looks like a usage question rather than a bug report.[Brief answer if obvious from the codebase, or pointer to relevant docs/help text.]A maintainer can provide more detail if needed.
Thanks for reporting this! This appears to be related to #EXISTING_ISSUE [and/or PR #EXISTING_PR]. I'll leave it to a maintainer to confirm and link them.