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 ShulkwiSEC/bb-huge --skill colang-gengit clone --depth 1 https://github.com/ShulkwiSEC/bb-hugeWrote 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/shulkwisec/bb-huge/colang-gen)<a href="https://agentmods.dev/skills/shulkwisec/bb-huge/colang-gen"><img src="https://agentmods.dev/badge/skills/shulkwisec/bb-huge/colang-gen/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/shulkwisec/bb-huge/colang-gen"><img src="https://agentmods.dev/badge/skills/shulkwisec/bb-huge/colang-gen.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.00117 | $0.01671 |
| Opus 5 | $0.00059 | $0.00835 |
| Sonnet 5 | $0.00023 | $0.00334 |
| Haiku 4.5 | $0.00012 | $0.00167 |
Grade A, and why
colang-gen 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.
How it starts
The opening of the file, as written. The whole thing — 143 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Colang Generator
You generate NeMo Guardrails Colang files and YAML config blocks from a natural-language description of a chatbot. The output is paste-ready — two labeled code blocks the user drops straight into their NeMo setup.
The allow-list mental model
NeMo Guardrails uses a semantic allow-list, not a deny-list. You define exactly what the bot is permitted to do. Anything outside those flows hits the fallback and is rejected. This has important implications:
- Coverage matters: if a legitimate use case isn't in a flow, real users will hit the fallback constantly
- Semantic variety matters: example phrases need to cover different parts of the semantic space (short, polite, frustrated, abbreviated) so the embedding matcher catches natural paraphrases — not just obvious synonyms
- The fallback is mandatory: it's the final gatekeeper. Always include it, always make it strict
The allow_free_text: false + default_reply: false combination in the YAML is what makes the system prompt "unhackable" — users cannot inject instructions or override policy. Never omit these.
Phase 1: Intake
Read the user's description. Extract what you can before asking anything:
- Bot purpose — usually stated. If not, ask.
- Allowed intents — infer from the domain. For a fintech support bot: account questions, password reset, billing, card issues, general help. For a bakery FAQ bot: menu questions, hours, ordering, allergies, locations. Confirm your inferences rather than asking open-endedly: "I'm planning to cover: X, Y, Z. Anything to add or remove?"
- Tone — default to professional but friendly unless told otherwise
- Hard restrictions — things the bot must never discuss (e.g., "never give pricing advice", "never discuss competitors"). These inform the system prompt, not additional flows — the allow-list already blocks unlisted topics implicitly.
- Embedding threshold — default 0.85. Only raise this if the user mentions strict security requirements or false positives. Only lower it if they mention users with varied phrasing or non-native language. Briefly explain the tradeoff if you adjust: "I'm setting 0.80 here since your users likely phrase things in many different ways — it's more forgiving but may occasionally pass through an edge case."
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 143 lines · 117 tokens per session scan A a98d6584bcd2
colang-gen is a skill published in the GitHub repository ShulkwiSEC/bb-huge (22 stars, last pushed 2mo ago), licensed MIT. It adds 117 tokens to every session and 1,671 once invoked, about $0.0006 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-03.
Other skills, from other repositories
bugcrowd-reporting
Bugcrowd-specific reporting tactics complementing report-writing: VRT category search-and-fallback strategy when no exact match exists, manual severity override when VRT defaults underrate impact, severity-request paragraph as first body section, OOS-clause rebuttal templates (rate limiting on auth-flow endpoints…
skill-context-detection
Auto-detect work context (Dev vs Knowledge) — use to tailor workflows based on current task type.
skill-copilot-provider
GitHub Copilot CLI as optional zero-cost provider via copilot -p programmatic mode.
supabase
Supabase / PostgREST Row-Level-Security playbook — pull the anon (or leaked servicerole) key out of the frontend JS, map tables from the auto-generated OpenAPI spec, test anonymous RLS READ disclosures (PII/secret leaks), and anonymous RLS WRITE abuse (insert/update/delete — e.g. forging…
skill-security-framing
URL validation and content sanitization for untrusted sources — use when handling external input safely.
race
Race condition / TOCTOU playbook — limit overrun (one-time codes used twice, gift cards spent twice), single-packet attack (last-byte sync) to force parallel processing, and state-confusion races (file upload + read, order before payment). Use when timing-sensitive logic could be abused — one-time codes, coupons/gift…