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/webmaxru/is-ai-native/github-agentic-workflowsnpx skills add webmaxru/is-ai-native --skill github-agentic-workflowsgit clone --depth 1 https://github.com/webmaxru/is-ai-nativeWhat 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.00081 | $0.02334 |
| Opus 5 | $0.00041 | $0.01167 |
| Sonnet 5 | $0.00016 | $0.00467 |
| Haiku 4.5 | $0.00008 | $0.00233 |
Grade A, and why
github-agentic-workflows 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 — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitHub Agentic Workflows
Procedures
Step 1: Identify the repository state
- Inspect the workspace for
.github/workflows/,.github/agents/, existing.lock.ymlfiles, and anygh awusage. - Execute
node skills/github-agentic-workflows/scripts/find-gh-aw-targets.mjs .when a Node runtime is available. - Run
gh aw versionbefore making compiler-sensitive decisions so the workflow authoring path matches the installed CLI behavior. - If the repository contains multiple candidate workflows, prefer the workflow the user named or the one closest to the active issue, pull request, or automation surface.
- If the repository has no GH-AW setup and the task is to create or maintain agentic workflows, read
references/authoring.mdbefore editing. - If the task is limited to standard deterministic GitHub Actions YAML without agentic markdown workflows, stop and explain that this skill does not apply.
Step 2: Choose the working mode
- Classify the task as one of: repository setup, new workflow authoring, workflow revision, workflow installation from another repository, security review, or failure debugging.
- Read
references/examples.mdwhen the task needs a starting pattern for scheduled reports, issue or PR triage, orchestration, or agent handoff. - Read
references/security-and-operations.mdwhen the workflow needs safe outputs, network policy, authentication, lockdown, threat detection, or run observability. - Read
references/troubleshooting.mdwhen the workflow fails to compile, install, authenticate, execute safe outputs, or access tools.
Step 3: Author or revise the workflow source
- Keep the workflow source of truth in
.github/workflows/<workflow-name>.md. - Use
assets/workflow.template.mdas the base shape when creating a new workflow. - Choose the smallest viable trigger surface and repository role scope that satisfies the task.
- Keep
permissions:read-only unless the workflow truly needs broader GitHub Actions permissions outside the agentic section. - Prefer
safe-outputs:for comments, issues, labels, PRs, agent assignment, and orchestration instead of granting direct write access to the agent. - In safe-output workflows, instruct the agent to call
noopwhen no action is required. - Keep
tools:andtoolsets:minimal and specific to the task. - Default to
engine: copilotunless the task explicitly requires another engine and the repository is already prepared for that engine's authentication model. - Configure
network:with least privilege. Prefer ecosystem identifiers such asnode,python, orgithubover individual registry domains when the compiler supports them. - If strict mode and the installed CLI reject custom domains that the workflow still needs, prefetch external sources in deterministic setup steps and pass local files into the agent instead of broadly relaxing the firewall.
- Do not rely on
${{ steps.<id>.outputs.* }}placeholders reaching the agent-visible markdown body in real runs. If prompt instructions depend on runtime values, write them into a deterministic local file during setup and tell the agent to read that file. - Use imported or reusable workflows only when the repository genuinely benefits from shared logic or orchestration.
- For recurring work across a dynamic set of inputs, prefer a reusable GH-AW worker plus a deterministic YAML wrapper for discovery and matrix fan-out.
- When a reusable GH-AW worker is called from a matrix, do not leave it on the default shared workflow-level concurrency group. Set an explicit concurrency group keyed by the matrix input or prompt identity so parallel legs are not cancelled by GitHub's one-running-one-pending concurrency behavior.
- Recompile the workflow after frontmatter, imports, or other compile-time configuration changes.
- If only the markdown body changed and the workflow is edited directly on GitHub.com, do not recompile solely for body text changes.
- Treat
.github/aw/as transient GH-AW runtime and compiler scratch space during local compile, validate, or trial flows unless the workflow intentionally uses checked-in files from that path.
What ships with it
6 files 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 · 91 lines · 81 tokens per session scan A fdd02e24f189
github-agentic-workflows is a skill published in the GitHub repository webmaxru/is-ai-native (5 stars, last pushed 10d ago), licensed MIT. It adds 81 tokens to every session and 2,334 once invoked, about $0.0004 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-lifecycle
Complete issue → PR → merge lifecycle with readiness checks.
cross-squad-communication
Protocol for sending queries, delegating tasks, and sharing context between independent Squad instances across different repositories.
distributed-mesh
How to coordinate with squads on different machines using git as transport.
cross-squad
Coordinating work across multiple Squad instances — discovery, delegation, and disambiguation when the user says 'squad' (the product) vs casual English 'group of agents'.
pr-review-response
Teaches agents to reply to PR review comment threads after fixing issues, making resolutions traceable.
squad-commands
Categorized catalog of common Squad operations. Coordinator reads this file and presents it as an interactive menu when the user asks for available commands or help.