ccboard: Skill for Claude Code

.claude/skills/security-guardian/SKILL.md

security-guardian is a skill for Claude Code from FlorianBruniaux/ccboard. It costs 0 tokens per session (1,503 once invoked), scanned A, original, MIT.

A French-language assistant for application security during software design and development. Application security means protecting code, accounts, APIs, secrets, and user data from misuse or attack.

In plain words
What is it for?
Use it to audit code, design safer features, review authentication and authorization, check input validation and secrets, assess API security, and plan fixes for identified weaknesses.
Why use it?
It helps identify security risks before they reach production and guides reviews of sensitive areas such as authentication, payments, and personal data. It also covers common vulnerability categories and secure handling practices.

Skill for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: agent in frontmatter.

This is FlorianBruniaux/ccboard's own configuration. It tells Claude Code how to work on ccboard itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ccboard configures →

Part of the ccboard plugin — 14 skills, 2 commands, 10 agents, 4 hooks, 2 MCP servers shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to FlorianBruniaux/ccboard. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/FlorianBruniaux/ccboard/main/.claude/skills/security-guardian/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/FlorianBruniaux/ccboard

Made for: Claude Code.

Or install ccboard, the plugin that ships this one along with the rest of its 14 skills, 2 commands, 10 agents, 4 hooks, 2 MCP servers.

Wrote 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.

agentmods badge for security-guardian

README.md
[![agentmods](https://agentmods.dev/badge/skills/florianbruniaux/ccboard/security-guardian/github.svg)](https://agentmods.dev/skills/florianbruniaux/ccboard/security-guardian)
Your own site
<a href="https://agentmods.dev/skills/florianbruniaux/ccboard/security-guardian"><img src="https://agentmods.dev/badge/skills/florianbruniaux/ccboard/security-guardian/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.

agentmods 80×15 button for security-guardian

Your own site · 80×15
<a href="https://agentmods.dev/skills/florianbruniaux/ccboard/security-guardian"><img src="https://agentmods.dev/badge/skills/florianbruniaux/ccboard/security-guardian.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,503 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01503
Opus 5 $0.00000 $0.00751
Sonnet 5 $0.00000 $0.00301
Haiku 4.5 $0.00000 $0.00150

Measured 9d ago against content hash 0abec906149a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

security-guardian 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 9d 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.

.claude/skills/security-guardian/SKILL.md · 211 lines

How it starts

The opening of the file, as written. The whole thing — 211 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Security Guardian

Tu es un expert en sécurité applicative qui accompagne le développement sécurisé :

  • Audit : Détection de vulnérabilités dans le code
  • Conception : Design de features sécurisées
  • Review : Analyse de code sensible (auth, paiement, données)
  • Guidance : Bonnes pratiques de sécurité
  • Remediation : Correction de failles identifiées

Expertise

  • OWASP Top 10 et vulnérabilités courantes
  • Authentification et autorisation sécurisées
  • Cryptographie et gestion de secrets
  • Validation et sanitization des entrées
  • Sécurité des APIs (REST, GraphQL)
  • Protection des données (PII, GDPR)
  • Logging et monitoring sécurisés

Contextes d'Utilisation

1. Audit de Sécurité

  • Analyser le code pour détecter des failles
  • Identifier les vulnérabilités OWASP Top 10
  • Vérifier la gestion des secrets
  • Contrôler les dépendances vulnérables

2. Conception Sécurisée

  • Guider la conception de features sensibles
  • Proposer des patterns sécurisés
  • Identifier les risques en amont
  • Définir les contrôles de sécurité

3. Review de Code Sensible

  • Analyser l'authentification/autorisation
  • Vérifier le chiffrement des données
  • Contrôler la validation des entrées
  • Auditer les accès aux données

4. Correction de Failles

  • Diagnostiquer les vulnérabilités
  • Proposer des correctifs
  • Guider l'implémentation sécurisée

Méthodologie d'Audit

1. Analyse des Vulnérabilités

Consulter vulnerabilities/ pour détecter :

  • SQL Injection, NoSQL Injection
  • XSS, CSRF, XXE
  • Command Injection
  • Path Traversal, SSRF

2. Authentification & Autorisation

Consulter authentication/ et authorization/ pour vérifier :

  • Sécurité des mots de passe
  • Gestion des sessions/tokens (JWT)
  • OAuth, MFA
  • RBAC, ABAC
  • Protection contre brute-force
  • IDOR, privilege escalation

3. Cryptographie

Consulter cryptography/ pour valider :

  • Algorithmes de chiffrement/hashing
  • Gestion des clés
  • Configuration TLS
  • Génération de random sécurisé

Read the full file on GitHub · 211 lines

Changes

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.

  1. 9d ago First seen · 211 lines · 0 tokens per session scan A 0abec906149a

Subscribe to this mod's changes

security-guardian is a skill published in the GitHub repository FlorianBruniaux/ccboard (97 stars, last pushed 7d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,503 tokens. 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.

Related

Other skills, from other repositories

tokenscope

Judgment-layer review of Claude Code token usage. Use when the user asks to audit token costs, review Claude Code spending, check context waste, or interpret a tokenscope report. Runs the tokenscope profiler, then interprets its findings with knowledge of the project's actual workflow — separating mechanical waste…

AviVAvi/TokenScope · 65 tokens

review

Validate plans, execution, or PRs against wish criteria — returns SHIP / FIX-FIRST / BLOCKED with severity-tagged gaps.

automagik-dev/genie · 29 tokens

work

Execute an approved wish plan — orchestrate subagents per task group with fix loops, validation, and review handoff.

automagik-dev/genie · 26 tokens

save-learning

Saves user instructions as persistent learnings for future sessions. Use when the user says 'remember this', 'always do X', 'from now on', 'never do Y', or gives any instruction they want persisted across sessions. Proactively suggest when the user states a preference, convention, or rule they clearly want followed in…

caliber-ai-org/ai-setup · 71 tokens

web-access

A method for handling difficult web tasks across search, page fetching, and a real browser. It covers sites that need login sessions, dynamic pages, anti-bot handling, or exploration before their structure is understood.

open-octo/octo-agent · 139 tokens

skill-creator

A skill for creating or improving reusable instructions for an agent. It covers capturing the intended workflow, writing a draft, testing it, and refining its trigger description.

open-octo/octo-agent · 123 tokens