From core
Guides explicit configuration of databases, APIs, frameworks, security, and infrastructure to prevent failures from varying defaults across environments.
npx claudepluginhub thebushidocollective/han --plugin coreThis skill cannot use any tools. It operates in read-only mode without the ability to modify files or execute commands.
han-core:explicit-configuration
Provides guides and best practices for managing app configuration: environment variables, hierarchies, secrets, feature flags, validation, and 12-factor principles. Use for multi-env setups.
Implements 12-Factor principles for cloud-native apps: codebase via Git, dependencies with lockfiles/Docker multistage, config via env vars. For microservices, Kubernetes, containers.
Guides 12-Factor methodology for scalable cloud-native apps. Use for microservices design, container config, Kubernetes deployment, CI/CD pipelines, and environment management.
Share bugs, ideas, or general feedback.
han-core:explicit-configuration
When configuring services, APIs, or framework features, explicitly set all parameters rather than relying on defaults. Defaults vary across versions, environments, and frameworks.
What works with defaults in development may fail in production. Explicit configuration is documentation that runs.
Database connections:
API calls:
Framework config:
Security settings:
createServer() // relies on default port, middleware, error handling
createServer({
port: config.PORT,
timeout: 30000,
cors: { origin: config.ALLOWED_ORIGINS }
})