install-workflow

A setup guide for adding a GitHub Actions workflow from the GitHubnext Agentics catalogue to the current repository. It covers fetching the workflow, authentication, committing it, and checking that it works.

In plain words
What is it for?
Use it to install a named workflow, configure the required GitHub access, commit the generated files, and verify the installation.
Why use it?
It helps avoid setup failures caused by missing GitHub command-line tools, repository access, or token permissions.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/verkyyi/github-agent-runner/install-workflow
Any agent
npx skills add verkyyi/github-agent-runner --skill install-workflow
Clone the repo
git clone --depth 1 https://github.com/verkyyi/github-agent-runner

Made for: Claude Code, Codex.

Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 948 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 5b7cbd55cd88, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

skills/install-workflow/SKILL.md · 40 lines

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

  1. If the user didn't name a workflow, pitch daily-repo-status as 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-workflows for the full catalog. Otherwise, treat the name as a workflow in githubnext/agentics/workflows/gh aw add <workflow> in Step 4 will fail cleanly if the name doesn't resolve.

  2. Check prerequisites:

    • gh CLI authenticated (gh auth status)
    • gh aw extension installed (gh extension list | grep gh-aw)
    • Write access to the repo (gh repo view --json viewerPermission)
    • workflow scope present on the gh token — check via gh auth status -t 2>&1 | grep -i 'token scopes' or inspect the scopes line. Without it, the user's first git push of the generated .lock.yml will fail with "refusing to allow an OAuth App to create or update workflow ... without workflow scope". If missing, have the user run gh 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.

  3. Pick auth path and set the secret — see auth.md. Ask once: subscription or API key? Before asking, check gh secret list — if the matching secret already exists, skip the setup and use it. Otherwise, for OAuth path guide the user through claude setup-token + gh secret set CLAUDE_CODE_OAUTH_TOKEN; for API-key path, gh secret set ANTHROPIC_API_KEY.

  4. Run gh aw add <workflow> — fetches source and compiles the .lock.yml. The name must be fully qualified as githubnext/agentics/<workflow> (bare names fail with "invalid workflow specification").

  5. Inspect the fetched .md for an engine: field. Upstream agentics workflows that omit engine: default to the copilot engine — which ignores the Claude secret and won't use your auth. If missing, add engine: claude to the frontmatter and run gh aw compile <workflow> to regenerate the .lock.yml.

  6. If OAuth path: apply the post-compile tweak from auth.md Step 3 (two-pass sed — never skip the --exclude-env carve-out). Verify with the grep counts in auth.md Step 4.

  7. Run gh aw validate (safe — does not recompile).

  8. Summarize what changed (files added, secret set or reused, engine fix applied if needed, tweak applied if applicable). Remind: gh aw compile reverts the tweak — re-apply on every recompile.

Read the full file on GitHub · 40 lines

Files

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.

Changes

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.

  1. 2d ago First seen · 40 lines · 47 tokens per session scan A 5b7cbd55cd88

Subscribe to this mod's changes

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.

Related

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.

cobusgreyling/loop-engineering · 35 tokens

dependency-triage

Scan package manifests and lockfiles for outdated and vulnerable dependencies. Classify by severity and update type.

cobusgreyling/loop-engineering · 25 tokens

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.

marcus/sidecar · 69 tokens

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…

marcus/sidecar · 63 tokens

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.

Spielewoy/autoprompt-skill · 56 tokens

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.

Spielewoy/autoprompt-skill · 56 tokens