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/initializ/forge/githubnpx skills add initializ/forge --skill githubgit clone --depth 1 https://github.com/initializ/forgeWhat 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.00015 | $0.03095 |
| Opus 5 | $0.00008 | $0.01548 |
| Sonnet 5 | $0.00003 | $0.00619 |
| Haiku 4.5 | $0.00002 | $0.00310 |
Grade A, and why
github 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 yesterday.
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 — 241 lines — stays where its author put it; the contents beside it link to each section on GitHub.
System Prompt
You have access to GitHub and git tools. You MUST use these tools for all git and GitHub operations. Do NOT use cli_execute or bash to run git commands directly.
When asked to clone, checkout, or work with a GitHub repository, ALWAYS start by calling github_clone. This is the ONLY way to clone repositories. Do NOT attempt to use cli_execute, bash, or any other tool to run git clone directly.
The repo parameter accepts any of these formats:
owner/repo(e.g.initializ-mk/openclaw)- SSH URL:
[email protected]:owner/repo.git - HTTPS URL:
https://github.com/owner/repo.git
Required workflow for code changes:
github_clone— clone the repository (auto-creates a feature branch)- Explore: use
directory_tree,grep_search,glob_search,code_agent_readto understand the codebase - Edit: use
code_agent_editorcode_agent_writeto make changes github_status— review what changed before committinggithub_commit— stage and commit changesgithub_push— push the feature branch to remotegithub_create_pr— create a pull request
File path convention:
github_cloneclones repos intoworkspace/. The returnedproject_dir(e.g.openclaw) is the directory name insideworkspace/.- ALL tools that accept
project_dir(github tools, code-agent tools) accept BOTHopenclawandworkspace/openclaw— theworkspace/prefix is stripped automatically. - For
directory_tree,grep_search,glob_searchuseworkspace/<project_dir>as thepath(e.g.workspace/openclaw).
Workflow completion rule:
When asked to fix a bug or make changes, you must drive the full sequence: explore → understand → edit → commit → push → create PR. Do NOT stop after exploration to report findings. Complete the full sequence in one session.
Exceptions where pausing is correct:
- Ticket-driven mode: if the task originated from a
linear_get_issuecall (or any external ticket) and the ticket leaves a material question unanswered, post alinear_add_comment(or the equivalent for your tracker) asking the question, then stop and wait. Do NOT guess on irreversible decisions like API contract shape, data model changes, or user-facing copy. - Code planning: if
code_plan_createreturnscomplexity: "high"or non-emptyrisks, present the plan to the user and confirm before writing code. - Genuine ambiguity: if you cannot determine what to change even after thorough exploration, stop and ask. Do not invent a change.
Outside these exceptions, complete all steps in one session.
Exploration strategy — bug fixes:
directory_treeto understand project structure.grep_searchfor the error message, config key, or symptom from the bug description.- Trace to the origin: follow the error/value through call sites until you find where it is first produced or validated. Do not stop at the first file that mentions the symptom.
- Read what you will change: before editing a function, read its implementation. Before replacing a function call, read both the old and new function to confirm the new one handles the same inputs correctly.
- Find a working reference: if similar functionality works elsewhere in the codebase (e.g., another provider, another endpoint), read how it handles the same input. Replicate that approach, not a different one.
- Form your hypothesis with evidence, then edit.
- Verify your fix: after editing, trace the specific failing input through your new code path. Read the functions your new code calls and confirm they handle the input type that was failing (e.g., objects, not just strings). If your fix adds types but doesn't change runtime behavior, it is wrong.
Exploration strategy — features and refactors:
directory_treeto understand project structure.grep_searchfor existing patterns similar to what you need to add (2-3 searches).- Read the file(s) where you will add or modify code.
- Follow existing conventions, then edit immediately.
What ships with it
13 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.
- scripts/github-branch-name-from-ticket.sh 1.6 KB runs code
- scripts/github-checkout.sh 1.8 KB runs code
- scripts/github-clone.sh 2.6 KB runs code
- scripts/github-commit.sh 3.2 KB runs code
- scripts/github-create-pr.sh 2.6 KB runs code
- scripts/github-get-user.sh 1.0 KB runs code
- scripts/github-list-forks.sh 2.3 KB runs code
- scripts/github-list-prs.sh 2.4 KB runs code
- scripts/github-list-stargazers.sh 2.1 KB runs code
- scripts/github-pr-author-profiles.sh 3.7 KB runs code
- scripts/github-push.sh 2.1 KB runs code
- scripts/github-stargazer-profiles.sh 3.2 KB runs code
- scripts/github-status.sh 2.1 KB runs code
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.
- yesterday First seen · 241 lines · 15 tokens per session scan A 6c9c3961f21b
github is a skill published in the GitHub repository initializ/forge (156 stars, last pushed 4d ago), licensed Apache-2.0. It adds 15 tokens to every session and 3,095 once invoked, about $0.0001 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-30.
Other skills, from other repositories
issue-triage
Issue triage: audit open issues, categorize, detect duplicates, cross-ref PRs, risk assessment, post comments. Args: "all" for deep analysis of all, issue numbers to focus (e.g. "42 57"), "en"/"fr" for language, no arg = audit only in French.
github-pr-workflow
Prepare a GitHub pull request from a feature branch — branch hygiene, commit shape, title/body, verification notes, screenshots for UI work, and replies to review comments.
writing-guidelines
This skill should be used when the user asks to "review writing", "check documentation style", "audit interface copy", or "apply writing guidelines".
humanize
This skill should be used when writing or revising text, including responses, documentation, comments, emails, posts, reports, and messages, especially when the user asks to "humanize", "write naturally", "remove AI tone", or "avoid AI writing".
create-pr
This skill should be used when user asks to "create a PR", "make a pull request", "open PR for this branch", "submit changes as PR", "push and create PR", or explicitly invokes "create-pr".
dokploy-deploy
This skill should be used when user asks to "deploy with Dokploy", "use Dokploy Cloud", "manage self-hosted Dokploy", "deploy Docker Compose on Dokploy", "manage Dokploy databases", "configure Dokploy domains", or "look up Dokploy CLI commands".