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 skills add RobinNorberg/oh-my-copilot --skill omc-gh-setupgit clone --depth 1 https://github.com/RobinNorberg/oh-my-copilotWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/robinnorberg/oh-my-copilot/omc-gh-setup)<a href="https://agentmods.dev/skills/robinnorberg/oh-my-copilot/omc-gh-setup"><img src="https://agentmods.dev/badge/skills/robinnorberg/oh-my-copilot/omc-gh-setup/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/robinnorberg/oh-my-copilot/omc-gh-setup"><img src="https://agentmods.dev/badge/skills/robinnorberg/oh-my-copilot/omc-gh-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00100 | $0.01553 |
| Opus 5 | $0.00050 | $0.00776 |
| Sonnet 5 | $0.00020 | $0.00311 |
| Haiku 4.5 | $0.00010 | $0.00155 |
Grade A, and why
omc-gh-setup 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 5d 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 — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OMC GitHub Setup
Configure GitHub integration for the current project. Detects the owner and repo from the git remote URL, verifies gh authentication, and writes .omg/config.json with all required settings.
When this skill is invoked, immediately execute the workflow below. Do not only restate or summarize these instructions back to the user.
Trigger Patterns
- "gh setup"
- "github setup"
- "configure github"
- "connect to github"
- "omc-gh-setup"
Prerequisites
Before running the main workflow, verify all prerequisites are present. If any fail, report the issue and stop with actionable remediation steps.
Check 1: gh CLI installed
gh --version 2>&1 | head -1
If this fails: tell the user to install the GitHub CLI from https://cli.github.com/.
Check 2: gh authentication status
gh auth status 2>&1
If this fails or shows "not logged in": tell the user to run gh auth login and retry.
Check 3: Token scopes
gh auth status 2>&1 | grep -i "token scopes"
The token must include the repo scope for full access. If scopes are insufficient, suggest: gh auth refresh -s repo.
Step 1: Detect GitHub Remote
Inspect the git remote URL to determine if the repo is hosted on GitHub.
git remote -v 2>&1
GitHub remote URLs follow these patterns:
https://github.com/{owner}/{repo}.githttps://github.com/{owner}/{repo}[email protected]:{owner}/{repo}.git
Parse the remote URL to extract:
owner— the GitHub organization or userrepo— the repository name (strip trailing.gitif present)
If no GitHub remote is detected, inform the user and ask whether they want to configure manually (prompt for owner, repo values).
Step 2: Probe Existing Configuration
Check if .omg/config.json already exists:
node -e "const f=require('fs');try{process.stdout.write(f.readFileSync('.omg/config.json','utf8'))}catch{console.log('NOT_FOUND')}"
If it exists and contains github settings, ask the user whether to update or keep the existing configuration (use AskUserQuestion).
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.
- 5d ago First seen · 215 lines · 100 tokens per session scan A 625b296342f1
omc-gh-setup is a skill published in the GitHub repository RobinNorberg/oh-my-copilot (5 stars, last pushed 3d ago), licensed MIT. It adds 100 tokens to every session and 1,553 once invoked, about $0.0005 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-09-04.
Other skills, from other repositories
project-session-manager
Worktree-first dev environment manager for issues, PRs, and features with optional tmux sessions.
close-task-commit-push-pr
Close the active backlog task (detected from branch name), commit all changes, push to remote, and open a pull request. Use when the user says "close task and ship it", "close task commit push pr", or invokes /close-task-commit-push-pr.
catchup
Summarize and review what changed while you were away. Use after a weekend, vacation, or flight to check missed PRs, git commits, Linear tickets, and meetings — one prioritized brief, not a firehose.
machinist
Use Machinist to create, assign, monitor, and resume software tasks. Use when a coding agent needs to work with Machinist, its GitHub issue workflow, lifecycle labels, direct runs, or managed queue.
linear-cli
Use when the user wants to list, view, start, create, or update Linear issues from the terminal via schpet/linear-cli, including setup, auth, repo config, and safe read/write boundaries.
steward-prep-delivery
Steward-assisted prep for filing issues and PRs — environment capture, template selection, duplicate detection, delivery-policy compliance check.