Use when designing standardized development workflows, paved roads, or opinionated defaults. Covers golden path patterns, template design, developer workflow optimization, and guardrails.
View on GitHubmelodic-software/claude-code-plugins
systems-design
January 21, 2026
Select agents to install to:
npx add-skill https://github.com/melodic-software/claude-code-plugins/blob/main/plugins/systems-design/skills/golden-paths/SKILL.md -a claude-code --skill golden-pathsInstallation paths:
.claude/skills/golden-paths/# Golden Paths Patterns for designing standardized, opinionated development workflows that make the right way the easy way. ## When to Use This Skill - Designing standardized developer workflows - Creating paved roads for common patterns - Building template-based service creation - Implementing guardrails with flexibility - Optimizing developer onboarding - Reducing cognitive load for developers ## Golden Path Fundamentals ### What is a Golden Path? ```text Golden Path Definition: An opinionated, well-supported workflow that makes best practices the path of least resistance while not blocking alternatives. Key Characteristics: ┌─────────────────────────────────────────────────────────────┐ │ GOLDEN PATH │ ├─────────────────────────────────────────────────────────────┤ │ │ │ ✓ Opinionated: Clear decisions made for you │ │ ✓ Supported: First-class documentation and tooling │ │ ✓ Optimized: Fastest path to production │ │ ✓ Maintained: Kept up-to-date by platform team │ │ ✓ Escapable: Can deviate when needed │ │ │ │ "Make the right way the easy way" │ │ │ │ Golden Path ≠ The Only Path │ │ Golden Path = The Recommended Path │ │ │ └─────────────────────────────────────────────────────────────┘ vs Paved Road vs Rails: ├── Golden Path: Recommended workflow with alternatives ├── Paved Road: Same concept, Spotify terminology ├── Rails: More rigid, harder to deviate (often negative) ``` ### Golden Path vs Custom ```text Golden Path Benefits: Developer Time: ├── New service: 15 min (golden) vs 2 days (custom) ├── Setup