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/sybil-solutions/local-studio/githubnpx skills add sybil-solutions/local-studio --skill githubgit clone --depth 1 https://github.com/sybil-solutions/local-studioWhat 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.00067 | $0.00850 |
| Opus 5 | $0.00034 | $0.00425 |
| Sonnet 5 | $0.00013 | $0.00170 |
| Haiku 4.5 | $0.00007 | $0.00085 |
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 — 36 lines — stays where its author put it; the contents beside it link to each section on GitHub.
github
The github_* tools are the gh CLI, already installed and already authenticated on this machine. That is the whole design: gh holds the credentials in the OS keyring, knows which repo the session directory belongs to, paginates, and renders diffs and check runs. Do not write an API client, do not ask the user for a token, and do not go looking for one in the environment.
github_status tells you which account you are acting as and which repository this directory resolves to. Call it when something 404s or 403s — the cause is almost always the wrong account, a missing token scope, or a directory that is not a GitHub checkout, not a bad query.
Tools
github_status— signed-in account, scopes, and the repo this directory resolves to.github_search— issues, PRs, repos, code, or commits across GitHub, using GitHub search syntax.github_issue_list/github_issue_view— one repo's issues; the view includes the comment thread.github_pr_list/github_pr_view— pull requests; the view includes reviews and comments.github_pr_diff— the diff, or withnamesOnlyjust the changed paths.github_pr_checks— CI check runs for a PR. A non-zero exit is the answer, not an error.github_run_list/github_run_view— Actions runs;failedLogsreturns only the failing steps' output.github_api— any REST endpoint the named tools miss. GET only.github_cli— any otherghsubcommand, as an argv array. This is the write path.
Every tool takes an optional repo as OWNER/REPO. Omit it to use the repository checked out in this session's project directory, exactly as running gh there would.
Protocol
- Narrow before you read.
github_pr_diffwithnamesOnly, orgithub_issue_listbeforegithub_issue_view, costs one call and saves a truncated wall of output. - Read the comments. A PR's blocking objection and an issue's actual decision live in the thread, not the description —
github_pr_viewandgithub_issue_viewinclude them by default, so use them rather than summarizing from the title. - For red CI, go
github_pr_checks→github_run_viewwithfailedLogs. That is the shortest path from "the build broke" to the error line, and it is far smaller than a whole run's logs. - Prefer a named tool over
github_cliwhen one exists; the named tools return structured JSON,github_clireturns whateverghprints. github_cliwrites.gh pr create,gh issue comment,gh pr merge,gh release createare public, attributed to the user, and usually permanent. Only run one the user actually asked for, and say exactly what you ran.- There is no shell behind
github_cli— pass each argument as its own array element. Pipes, redirects, globs, and&&do not work. - Credential subcommands (
gh auth,gh secret,gh config) and everydeleteare refused by design. If the user genuinely wants one, tell them to run it themselves rather than working around the block. - For a repository that is checked out locally, plain
gitand reading the files is faster and more accurate than GitHub search. Use these tools for what only GitHub knows: issues, reviews, CI, and other people's repos.
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 · 36 lines · 67 tokens per session scan A 52d1d1281293
github is a skill published in the GitHub repository sybil-solutions/local-studio (1,745 stars, last pushed 5d ago), licensed Apache-2.0. It adds 67 tokens to every session and 850 once invoked, about $0.0003 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
mood-tracker
A simple mood tracking skill that stores your daily mood and comments. Use this when the user wants to log their mood, track how they feel, or see their mood history.
translator
Translates text between languages. Use this when the user wants to translate a word, phrase, or passage into another language.
kitchen-adventure
Act as a dungeon master for a text-based adventure set in a world where everyone is a sentient kitchen appliance. Trigger when user says "start kitchen adventure".
mood-music
A skill to suggest or play music based on the user's mood, including analyzing images or audio, by querying available genres and generating music via the Loudly API.
budget-tracker
Track daily expenses and income. Use when the user wants to log spending, record a purchase, add income, or see a budget summary.
query-wikipedia
Query summary from Wikipedia for a given topic.