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 livlign/ccthemes --skill theme-contributegit clone --depth 1 https://github.com/livlign/ccthemesWrote 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/livlign/ccthemes/theme-contribute)<a href="https://agentmods.dev/skills/livlign/ccthemes/theme-contribute"><img src="https://agentmods.dev/badge/skills/livlign/ccthemes/theme-contribute.svg" alt="Measured on agentmods" 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.00047 | $0.00565 |
| Opus 5 | $0.00023 | $0.00282 |
| Sonnet 5 | $0.00009 | $0.00113 |
| Haiku 4.5 | $0.00005 | $0.00056 |
Grade A, and why
theme-contribute 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 7d 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.
What it actually says
Contribute a theme to the gallery
Take one of the user's custom themes and open a PR adding it to the ccthemes
catalog at github.com/livlign/ccthemes (themes live in
plugins/theme-gallery/themes/).
Steps
-
Pick the theme. If the user didn't name one, list
~/.claude/themes/*.jsonand ask which to contribute. Read the file. -
Validate it before proposing a PR — fail loudly, don't silently "fix":
name(string) andbasepresent;baseis one ofdark,light,dark-daltonized,light-daltonized,dark-ansi,light-ansi.overridesis an object; every value is a valid color (#rrggbb/#rgb/rgb(r,g,b)/ansi256(n)/ansi:<name>).- Warn on unknown token names (Claude Code ignores them, but they usually mean a typo).
- Sanity-check legibility: on a
darkbase,diffAdded/diffRemovedshould be dark tints (not near-white); onlight, pale tints. Flag anything that looks like a vivid foreground color used as a diff background. - Choose a kebab-case slug for the filename; make sure it doesn't collide with an existing file in the catalog.
-
Open the PR with
gh:- Fork/clone
livlign/ccthemesif the user doesn't have it (respect existing checkout). - Add the file at
plugins/theme-gallery/themes/<slug>.json. - Branch
add-theme/<slug>, commitfeat: add <name> theme, push, andgh pr createwith a body that names the theme, its base, and a one-line description of the look. Link the PR back to the user.
- Fork/clone
-
Never commit secrets or the user's unrelated settings — only the single theme JSON.
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.
- 7d ago First seen · 41 lines · 47 tokens per session scan A 8cd19a1baeeb
theme-contribute is a skill published in the GitHub repository livlign/ccthemes (2 stars, last pushed 1mo ago), licensed MIT. It adds 47 tokens to every session and 565 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-31.
Other skills, from other repositories
commit
Git commit workflow with precommit hook handling, lint/type checking, README updates, and API reference updates. Use when the user wants to commit changes. Handles precommit hooks that modify files (formatting, linting) by re-staging and retrying. Runs ruff lint and pyright type checks on staged Python files, and…
phx-pr-review
Address feedback left on a GitHub pull request: fetch unresolved review threads, make agreed Elixir/Phoenix code fixes, reply, and resolve. Use for a PR URL/number or reviewer comments. NOT for pre-PR review, findings triage, or CI monitoring.
branch-and-worktree-workflow
Isolates feature work in its own branch or worktree and integrates it cleanly when done. Use this when starting work that should not disturb the current workspace, when several efforts must proceed in parallel on one repository, or when implementation is finished and the change needs merging, rebasing, or splitting…
precommit
Pre-commit checks — lint:fix -> build -> test.
next-step
Change-aware next step advisor. Use when: user asks what to do next, workflow progression is unclear, session just started with dirty worktree. Not for: executing the suggested command (user decides), auto-loop decisions (hooks handle that). Output: findings-based suggestions or session summary with commit seed.
precommit-fast
Quick pre-commit checks — lint:fix -> test.