Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Investigate a failing GitHub Actions run or job and create a GitHub issue for the failure. Use when the user shares a GitHub Actions URL and wants to file a bug report for the CI failure.
Investigate a failing GitHub Actions job, extract the root cause, and file a
well-structured bug issue against NVIDIA/Megatron-LM.
The argument is a GitHub Actions URL. It will be one of:
https://github.com/<owner>/<repo>/actions/runs/<run_id>/job/<job_id>https://github.com/<owner>/<repo>/actions/runs/<run_id>Extract run_id and, if present, job_id.
If a job_id was provided, use that job directly.
If only a run_id was provided, list all failed jobs in the run:
gh run view <run_id> --repo NVIDIA/Megatron-LM --json jobs \
--jq '[.jobs[] | select(.conclusion == "failure") | {id: .databaseId, name: .name, url: .url}]'
If multiple jobs failed, ask the user which one to triage, or triage all of them if they say so.
For each failed job, retrieve the logs and narrow them down to the failure:
# Pull the raw log and keep only error-bearing lines
gh api repos/NVIDIA/Megatron-LM/actions/jobs/<job_id>/logs 2>&1 \
npx skills add NVIDIA/skills --skill create-issueHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Highly actionable with clear, concrete steps that an agent can follow directly.