Validate Config

Detect and remediate misconfigurations and secret exposures in software projects.

1|Updated Feb 7, 2026
One-click install
npx skills add https://github.com/beekeeper-lab/foundry --skill validate-config
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Validate Config
Source: https://github.com/beekeeper-lab/foundry/tree/main/ai-team-library/claude/skills/validate-config
Command: npx skills add https://github.com/beekeeper-lab/foundry --skill validate-config

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Checks configuration and secrets hygiene across the project. Detects hardcoded secrets, validates environment variable usage, verifies config schemas, ensures secrets come from expected sources (env vars, secret managers, encrypted files), and flags configuration that would break across environments. This skill catches the class of bugs where code works on one machine but fails in staging or production because of config assumptions.

Core Features & Use Cases

  • Inventories configuration files across environments
  • Detects hardcoded secrets and improper secret sourcing
  • Validates environment variable usage and cross-environment consistency
  • Generates a structured validation report for audits and compliance

Quick Start

Run the validation against a project root to identify config and secrets hygiene issues.

Frequently Asked Questions about Validate Config

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect hardcoded secrets and config misconfigurations in a software project?

To detect hardcoded secrets and config misconfigurations, validate environment variable usage and secret sourcing across multi-environment deployments to catch cross-environment breakages before release.

Why does my code work locally but fail in staging due to config issues?

Code fails in staging due to config issues when environment variable usage and config schemas lack cross-environment consistency. Validating config assumptions and secret sourcing catches these environment-specific breaks.

How do I validate config schemas and secret sourcing for CI pipelines?

Validating config schemas and secret sourcing for CI pipelines involves checking that secrets come from expected sources like env vars or secret managers, and verifying configuration files across environments to ensure deployment consistency.

Can I audit secrets hygiene and environment variable usage for multi-environment deployments?

You can audit secrets hygiene and environment variable usage for multi-environment deployments by inventorying configuration files, detecting improper secret sourcing, and generating a structured validation report for compliance.

What is the best way to scan configuration files for improper secret sourcing?

The best way to scan configuration files for improper secret sourcing is to inventory configs across environments, validate that secrets come from expected sources like encrypted files or secret managers, and report findings with severity and remediation guidance.

What are the limitations of relying only on config schema validation for security?

Relying only on config schema validation misses hardcoded secrets and improper secret sourcing. A full config and secrets hygiene check is needed to detect exposures, verify environment variable usage, and ensure cross-environment consistency.