Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
thebushidocollective avatar

Explicit Configuration

  • 1 installs
  • 186 repo stars
  • Updated July 19, 2026
  • thebushidocollective/han

Prefer explicit configuration over framework defaults to prevent environment-dependent failures.

About

A guideline skill advocating explicit configuration over framework defaults to avoid environment-dependent failures. A developer applies it when setting up or reviewing configuration in an application.

  • Avoids reliance on implicit framework defaults
  • Reduces environment-dependent failures

Explicit Configuration by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #984 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
  • Data as of Aug 1, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thebushidocollective/han --skill explicit-configuration

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars186
Last updatedJuly 19, 2026
Repositorythebushidocollective/han

What it does

Prefer explicit configuration over framework defaults to prevent environment-dependent failures.

Files

SKILL.mdMarkdownGitHub ↗

Explicit Configuration

Name

han-core:explicit-configuration

Description

When configuring services, APIs, or framework features, explicitly set all parameters rather than relying on defaults. Defaults vary across versions, environments, and frameworks.

Principle

What works with defaults in development may fail in production. Explicit configuration is documentation that runs.

Examples

Database connections:

  • Set pool size, timeout, retry policy explicitly
  • Don't rely on default connection string parsing

API calls:

  • Set timeout, retry count, headers explicitly
  • Don't assume default content-type

Framework config:

  • Set port, environment, logging level explicitly
  • Don't rely on framework auto-detection

Security settings:

  • Never rely on default CORS, auth, or session config
  • Always configure explicitly, even if the default is "secure"

Anti-Pattern

createServer()  // relies on default port, middleware, error handling

Pattern

createServer({
  port: config.PORT,
  timeout: 30000,
  cors: { origin: config.ALLOWED_ORIGINS }
})

When to Apply

  • Any time you're initializing a service, client, or framework
  • Any time you're configuring infrastructure (Docker, CI, cloud services)
  • Any time the behavior difference between dev and production matters

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.