Security - Secret Detection

SkillSecurity

Code scan to detect secrets before commit. Use before git add/commit/push or on demand. Checks for tokens, API keys, credentials, and other sensitive data.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Security - Secret Detection skill

What this skill tells your AI

The instructions your AI receives, as published by dgouron/review-flow in .claude/skills/security/SKILL.md and read by ahel’s review.

Persona

Read .claude/roles/code-reviewer.md — adopt this profile and follow all its rules.

Activation

This skill activates:

  • Before a git commit or git push
  • On explicit request (/security)
  • Via the CLI command flux security-scan (full repo scan)

Detected Patterns

Tokens & API Keys

PatternExampleRegex
GitLab PATglpat-xxxxglpat-[a-zA-Z0-9_-]{20,}
GitHub PATghp_xxxxgh[ps]_[a-zA-Z0-9]{36,}
GitHub OAuthgho_xxxxgho_[a-zA-Z0-9]{36,}
OpenAIsk-xxxxsk-[a-zA-Z0-9]{32,}
Anthropicsk-ant-xxxxsk-ant-[a-zA-Z0-9-]{32,}
AWS Access KeyAKIA...AKIA[0-9A-Z]{16}
AWS Secret-[a-zA-Z0-9/+=]{40} (AWS context)
Slack Tokenxox[baprs]-xox[baprs]-[a-zA-Z0-9-]+
Discord Token-[MN][a-zA-Z0-9]{23,}\.[a-zA-Z0-9-_]{6}\.[a-zA-Z0-9-_]{27}

Generic Credentials

PatternContext
password\s*=\s*["'][^"']+["']Hardcoded passwords
secret\s*=\s*["'][^"']+["']Hardcoded secrets
token\s*=\s*["'][^"']+["']Hardcoded tokens
api[_-]?key\s*=\s*["'][^"']+["']Hardcoded API keys
Bearer [a-zA-Z0-9_-]+\.[a-zA-Z0-9_-]+\.[a-zA-Z0-9_-]+JWT tokens

Suspicious Files

FileRisk
.envEnvironment variables (often secrets)
*.pem, *.keyPrivate keys
secrets.*, credentials.*Secret files
config.toml with [secrets] sectionConfig with embedded secrets
id_rsa, id_ed25519Private SSH keys

Workflow

Pre-commit scan (git diff --staged)

SECURITY - Pre-commit Scan

Analyzing staged diff...

Result:
- Files scanned: X
- Secrets detected: Y

[If secrets found]
WARNING: Secrets detected!

File: src/config.ts
Line 42: token = "glpat-..." (GitLab PAT)

Action: Fix before committing.
Suggestions:
- Use an environment variable
- Move to a secure configuration file

Full repo scan (flux security-scan)

SECURITY - Full Scan

Scanning entire repository...

Result:
- Files scanned: X
- Files ignored (.gitignore): Y
- Secrets detected: Z

[List of files with secrets]

Commands

Git diff staged

git diff --cached --name-only  # List of staged files
git diff --cached              # Diff content

Scan patterns

# Example with grep (the skill uses more advanced tools)
git diff --cached | grep -E "(glpat-|ghp_|sk-|password\s*=)"

False Positives

Ignore if:

  • In a test file with dummy values (test_token, fake_key)
  • In documentation (examples with xxxx or your-token-here)
  • Pattern in a comment explaining the expected format

CLAUDE.md Integration

This skill applies the security rule:

Absolute rule: Never store tokens, API keys, or secrets in plain text in code or versioned files.

Report

The scan produces a report with:

  1. Overall status (OK / WARNING)
  2. Number of files scanned
  3. List of detected secrets (file, line, type)
  4. Correction suggestions

Signals

GitHub stars
43
Forks
6
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
security-dgouron
Source
github.com/dgouron/review-flow