'Sub-skill of yaml-configuration: Pattern 1: Configuration Hierarchy
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill pattern-1-configuration-hierarchy --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pattern 1 Configuration Hierarchy?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-pattern-1-configuration-hierarchy)More formats (shields.io, HTML) on the badges page.
---
name: yaml-configuration-pattern-1-configuration-hierarchy
description: 'Sub-skill of yaml-configuration: Pattern 1: Configuration Hierarchy
(+2).'
version: 1.0.0
category: data
type: reference
scripts_exempt: true
---
# Pattern 1: Configuration Hierarchy (+2)
## Pattern 1: Configuration Hierarchy
```yaml
# Global defaults
defaults: &defaults
version: 1.0
units: "SI"
precision: 6
# Project-specific configs inherit defaults
project_a:
<<: *defaults
*See sub-skills for full details.*
## Pattern 2: Environment-Specific Configs
```yaml
# development.yaml
database:
host: "localhost"
port: 5432
# production.yaml
database:
host: "prod-server.example.com"
port: 5432
```
## Pattern 3: Parameterized Templates
```yaml
# template.yaml
analysis:
name: "${PROJECT_NAME}"
water_depth: ${WATER_DEPTH}
wave_height: ${HS}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.