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/tam159/next-role/commitnpx skills add tam159/next-role --skill commitgit clone --depth 1 https://github.com/tam159/next-roleWhat 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.00046 | $0.00490 |
| Opus 5 | $0.00023 | $0.00245 |
| Sonnet 5 | $0.00009 | $0.00098 |
| Haiku 4.5 | $0.00005 | $0.00049 |
Grade A, and why
commit 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.
What it actually says
Create a single commit using Conventional Commits format, matching the style in git log.
Workflow
-
Run these in parallel:
git status(see what's untracked / modified)git diffandgit diff --staged(see what will be committed)git log --oneline -10(match recent style)
-
Review the changes and group them into ONE commit. If the diff spans clearly unrelated changes, ask the user whether to split.
-
Stage explicitly (avoid
git add -A/git add .):- Add the specific files that belong in this commit by name.
- Never stage
.env, credentials, or other secrets. Ifgitleakswould flag it, don't stage it.
-
Compose the commit message:
- Subject:
<type>: <short imperative summary>— lowercase, no trailing period, ≤72 chars. - Types in use here:
feat,fix,chore,docs,refactor,test. - Body (optional): explain the why, not the what. Wrap at 72 chars.
- Subject:
-
Commit with a HEREDOC so formatting survives:
git commit -m "$(cat <<'EOF' feat: <subject> <optional body> EOF )" -
Pre-commit will run automatically. If it modifies files (auto-fix), re-stage and create a NEW commit — do not amend unless the user asks. If hooks fail with errors, fix the underlying issue and create a new commit; never bypass with
--no-verify. -
After the commit succeeds, run
git statusto confirm a clean tree and report the commit SHA + subject.
Do not
- Push to the remote unless the user asks.
- Add a
Co-Authored-Bytrailer unless the user has asked for one (this repo's history doesn't use them). - Use
--amendunless explicitly requested.
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 · 47 lines · 46 tokens per session scan A e9e0a721e4c2
commit is a skill published in the GitHub repository tam159/next-role (48 stars, last pushed 2d ago), licensed MIT. It adds 46 tokens to every session and 490 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
openspec-verify-change
Verify implementation matches change artifacts. Use when the user wants to validate that implementation is complete, correct, and coherent before archiving.
schema-exploration
Lists tables, describes columns and data types, identifies foreign key relationships, and maps entity relationships in a database. Use when the user asks about database schema, table structure, column types, what tables exist, ERD, foreign keys, or how entities relate.
openspec-new-change
Start a new OpenSpec change using the experimental artifact workflow. Use when the user wants to create a new feature, fix, or modification with a structured step-by-step approach.
omni-mcp
Connect to the OmniRoute MCP server (107 tools, 3 transports: SSE/stdio/HTTP). Covers routing, cache, compression, memory, skills, providers, and audit tools across 32 permission scopes.
cli-resilience
Inspect and manage circuit-breaker states, connection cooldowns, quota limits, and backoff levels from the CLI. Reset stuck providers and configure resilience thresholds.
analyze-market
Perform a market analysis for a product category or segment. Trigger on: market analysis, market size, TAM SAM SOM, market opportunity, industry analysis.