Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/azure/azure-sdk-for-java/githubnpx skills add Azure/azure-sdk-for-java --skill githubgit clone --depth 1 https://github.com/Azure/azure-sdk-for-javaWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00044 | $0.01358 |
| Opus 5 | $0.00022 | $0.00679 |
| Sonnet 5 | $0.00009 | $0.00272 |
| Haiku 4.5 | $0.00004 | $0.00136 |
Grade B, and why
github scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
(type -p wget >/dev/null || (sudo apt update && sudo apt install wget -y)) \ Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
(type -p wget >/dev/null || (sudo apt update && sudo apt install wget -y)) \ How it starts
The opening of the file, as written. The whole thing — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitHub Skill
Use the gh CLI to interact with GitHub. Always pass --repo owner/repo when not inside a cloned git directory.
Pull Requests
List open PRs:
gh pr list --repo owner/repo
View a specific PR (summary, checks, comments):
gh pr view 55 --repo owner/repo
Check CI status on a PR:
gh pr checks 55 --repo owner/repo
CI / Workflow Runs
List recent runs:
gh run list --repo owner/repo --limit 10
View a run summary (steps, status):
gh run view <run-id> --repo owner/repo
View logs for failed steps only:
gh run view <run-id> --repo owner/repo --log-failed
Re-run failed jobs:
gh run rerun <run-id> --repo owner/repo --failed
Issues
List open issues (optionally filter by label):
gh issue list --repo owner/repo
gh issue list --repo owner/repo --label bug
View a specific issue:
gh issue view 42 --repo owner/repo
Create an issue:
gh issue create --repo owner/repo --title "Title" --body "Description" --label bug
JSON Output & Filtering
Most commands support --json with --jq for structured output:
# List PR numbers and titles
gh pr list --repo owner/repo --json number,title --jq '.[] | "\(.number): \(.title)"'
# List issues with assignees
gh issue list --repo owner/repo --json number,title,assignees \
--jq '.[] | "\(.number): \(.title) → \(.assignees[].login // "unassigned")"'
Advanced: gh api
Use gh api for data or actions not covered by other subcommands.
Fetch a PR with specific fields:
gh api repos/owner/repo/pulls/55 --jq '.title, .state, .user.login'
List check runs for a commit:
gh api repos/owner/repo/commits/<sha>/check-runs \
--jq '.check_runs[] | "\(.name): \(.conclusion)"'
Paginate results (e.g., all issues):
gh api --paginate repos/owner/repo/issues --jq '.[].title'
Steps
- Check if
ghis installed by runninggh --version.- If the command is not found, install it (see Installation below).
- Check if
ghis authenticated by runninggh auth status.- If not authenticated, run
gh auth login.
- If not authenticated, run
- If
owner/repois not provided, check if there is a.gitdirectory and infer the remote viagh repo view --json nameWithOwner. Otherwise ask the user for the repo. - Choose the appropriate subcommand (
pr,issue,run,api) based on the user's request. - Prefer structured subcommands (
gh pr,gh issue,gh run) over rawgh apiwhen they cover the use case. - Use
--json+--jqwhen the user needs specific fields or wants to pipe output into further processing. - If a workflow run is failing, start with
gh pr checksfor a quick overview, thengh run view --log-failedfor detailed output. - Report results clearly; if output is large, summarize and highlight the relevant parts.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 157 lines · 44 tokens per session scan B 5ebc2089a573
github is a skill published in the GitHub repository Azure/azure-sdk-for-java (2,566 stars, last pushed 2d ago), licensed MIT. It adds 44 tokens to every session and 1,358 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
dpg-migration
Migration logic for Azure SDK for .NET data-plane libraries migrating from AutoRest/Swagger to TypeSpec-based generation. Uses MCP tools from the generator-agent server for automated deterministic fixes.
csharp-azure-spector-coverage-gaps
Discovers and implements gaps in Spector test coverage for the Azure C# HTTP client emitter. Use when asked to find missing Spector scenarios, add Spector test coverage, or implement a specific Spector spec for the Azure C# emitter. Can also compare coverage between the Azure dashboard and the Standard (TypeSpec core)…
auto-build-repair
Headless, bounded repair of custom-code build failures in an already-generated Azure SDK PR. Thin wrapper over the shared azure-sdk-mcp:azsdkcustomizedcodeupdate engine in custom-code-only scope (editScope: CustomCode); the skill owns the iterate-until-green loop, capped by a per-language maxIterations read from…
azure-sdk-mgmt-pr-review
Review Azure SDK management-plane pull requests, check naming conventions, API compatibility, and code quality.
mgmt-review-comment-resolution
Resolve review comments on Azure management-plane .NET SDK PRs. Handles renaming types/properties, changing property types, and other API surface adjustments by updating TypeSpec client.tsp and regenerating.
mitigate-breaking-changes
Patterns and techniques for mitigating breaking changes during Azure management-plane SDK migration from Swagger/AutoRest to TypeSpec. Covers SDK-side customizations (partial classes, CodeGenType, CodeGenSuppress) and TypeSpec decorator customizations (clientName, access, markAsPageable, alternateType…