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/iblai/enterprise-agents/githubnpx skills add iblai/enterprise-agents --skill githubgit clone --depth 1 https://github.com/iblai/enterprise-agentsWhat 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.00033 | $0.00541 |
| Opus 5 | $0.00016 | $0.00270 |
| Sonnet 5 | $0.00007 | $0.00108 |
| Haiku 4.5 | $0.00003 | $0.00054 |
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 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 — 37 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitHub
What it is
GitHub is the leading Git hosting and software collaboration platform, used by enterprise engineering teams for source control, code review, and CI/CD orchestration via GitHub Actions. In this segment the engineering agent uses GitHub in read-only mode to fetch pull request diffs, review comments, commit history, and workflow run results to provide code review assistance, generate release notes, and surface build failures.
When to use this skill
- Reading a pull request diff and review thread to provide feedback or generate a summary
- Fetching the latest GitHub Actions workflow run status for a branch or commit
- Looking up commit history for a repository to understand recent changes
- Retrieving open issues or PR metadata to assess engineering backlog context
- Checking repository topics, language, or contributor stats for onboarding documentation
Credentials
This skill authenticates using variables from ~/.openclaw/.env (template: .env.example at the config root). Required variables:
GITHUB_TOKEN- personal access token or GitHub App installation token withrepoandactions:readscopes
Key operations
GET /repos/{owner}/{repo}/pulls/{pull_number}- fetch a pull request with diff metadataGET /repos/{owner}/{repo}/pulls/{pull_number}/reviews- list review decisions and commentsGET /repos/{owner}/{repo}/commits- list commits on a branchGET /repos/{owner}/{repo}/actions/runs- list workflow runsGET /repos/{owner}/{repo}/issues?state=open- list open issuesGET /search/issues?q=...- cross-repo issue and PR search
Notes
- Use a GitHub App with fine-grained permissions rather than a personal access token in production.
- REST API rate limit is 5,000 requests/hour for authenticated requests; GraphQL counts against the same quota.
- For large diffs, use the
Accept: application/vnd.github.diffheader to get the raw diff. - Treat code content as confidential; do not log or persist source code outside the secure workspace.
- Enterprise GitHub (GHES) uses a different base URL:
https://github.mycompany.com/api/v3.
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 · 37 lines · 33 tokens per session scan A 53986b16c6a4
github is a skill published in the GitHub repository iblai/enterprise-agents (11 stars, last pushed 2mo ago), licensed MIT. It adds 33 tokens to every session and 541 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-30.
Other skills, from other repositories
chatbot
Use when a support or sales bot on a live website must behave: persona/system prompt, grounding so it cannot invent prices or policy, jailbreak and injection defense, the human handoff, launch metrics and kill switch. NOT the agent loop or RAG index under it (that is building-agents), NOT a human answering one ticket…
vf-ext-development
Use when creating, modifying, testing, or publishing a Veryfront extension under extensions/ — covers manifest/factory parity, capability types, contract registration, teardown hygiene, and CI lint checks.
vf-performance
Use when reviewing code for performance issues, profiling hot paths, benchmarking before/after changes, or optimizing runtime, build, request latency, or bundle size.
flywheel
Development flywheel - autonomous cycle of run, observe, fix, verify. Use for continuous development with browser automation.
vf-error-handling
Use when creating new errors, migrating error classes to registry, catching/handling errors, or working with the VeryfrontError system.
vf-module-development
Use when creating new modules, adding exports, modifying module boundaries, or restructuring code in src/ - covers layer architecture, hash imports, barrel exports, and dependency rules.