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/verkyyi/github-agent-runner/install-workflownpx skills add verkyyi/github-agent-runner --skill install-workflowgit clone --depth 1 https://github.com/verkyyi/github-agent-runnerWhat 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.00047 | $0.00948 |
| Opus 5 | $0.00023 | $0.00474 |
| Sonnet 5 | $0.00009 | $0.00190 |
| Haiku 4.5 | $0.00005 | $0.00095 |
Grade A, and why
install-workflow scanned grade A with 0 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 40 lines — stays where its author put it; the contents beside it link to each section on GitHub.
install-workflow
Install one workflow from the upstream githubnext/agentics catalog into the current repo, end to end: fetch, configure auth, commit, verify.
Flow
-
If the user didn't name a workflow, pitch
daily-repo-statusas the recommended starter — it creates a daily GitHub issue summarizing repo activity, needs only read + issue-create permissions, and gives visible value on the first run. Offer to proceed with it, or run/discover-workflowsfor the full catalog. Otherwise, treat the name as a workflow ingithubnext/agentics/workflows/—gh aw add <workflow>in Step 4 will fail cleanly if the name doesn't resolve. -
Check prerequisites:
ghCLI authenticated (gh auth status)gh awextension installed (gh extension list | grep gh-aw)- Write access to the repo (
gh repo view --json viewerPermission) workflowscope present on theghtoken — check viagh auth status -t 2>&1 | grep -i 'token scopes'or inspect the scopes line. Without it, the user's firstgit pushof the generated.lock.ymlwill fail with "refusing to allow an OAuth App to create or update workflow ... withoutworkflowscope". If missing, have the user rungh auth refresh -s workflow -h github.com(one-line fix, opens a browser auth flow for the scope bump) before proceeding.
Surface missing pieces plainly; don't try to install tools on the user's behalf.
-
Pick auth path and set the secret — see
auth.md. Ask once: subscription or API key? Before asking, checkgh secret list— if the matching secret already exists, skip the setup and use it. Otherwise, for OAuth path guide the user throughclaude setup-token+gh secret set CLAUDE_CODE_OAUTH_TOKEN; for API-key path,gh secret set ANTHROPIC_API_KEY. -
Run
gh aw add <workflow>— fetches source and compiles the.lock.yml. The name must be fully qualified asgithubnext/agentics/<workflow>(bare names fail with "invalid workflow specification"). -
Inspect the fetched
.mdfor anengine:field. Upstream agentics workflows that omitengine:default to thecopilotengine — which ignores the Claude secret and won't use your auth. If missing, addengine: claudeto the frontmatter and rungh aw compile <workflow>to regenerate the.lock.yml. -
If OAuth path: apply the post-compile tweak from
auth.mdStep 3 (two-pass sed — never skip the--exclude-envcarve-out). Verify with the grep counts inauth.mdStep 4. -
Run
gh aw validate(safe — does not recompile). -
Summarize what changed (files added, secret set or reused, engine fix applied if needed, tweak applied if applicable). Remind:
gh aw compilereverts the tweak — re-apply on every recompile.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 40 lines · 47 tokens per session scan A 5b7cbd55cd88
install-workflow is a skill published in the GitHub repository verkyyi/github-agent-runner (10 stars, last pushed 2mo ago), licensed MIT. It adds 47 tokens to every session and 948 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
pr-review-triage
Watch open PRs, check CI status, review staleness, merge conflicts, and unanswered review comments. Produces a prioritized watchlist.
dependency-triage
Scan package manifests and lockfiles for outdated and vulnerable dependencies. Classify by severity and update type.
create-modal
Create declarative modals using the modal library API. Covers modal types (confirm, input, select, form), sections (Text, Buttons, Input, Textarea, Checkbox, List, Combo, When, Custom), rendering with OverlayModal, and keyboard/mouse handling. Use when adding modals or dialogs to the application.
merge-strategy
Git merge strategies, conflict resolution approaches, merge vs rebase recommendations, and branch integration patterns in sidecar. Covers pull strategy menu, direct merge workflow, squash merge, commit message templates, configurable defaults, and protected branches. Use when working on git merge features or making…
autoprompt
Explicit-only useful-first orchestration. Invoke /autoprompt to turn a mission into one executable roadmap, build dependency-safe lanes, and verify the result with independent reviewers. Never infer invocation from ordinary requests. Never resume from leftover artifacts without an explicit resume instruction.
autoprompt
Explicit-only useful-first orchestration. Invoke /autoprompt to turn a mission into one executable roadmap, build dependency-safe lanes, and verify the result with independent reviewers. Never infer invocation from ordinary requests. Never resume from leftover artifacts without an explicit resume instruction.