backend-skeleton-builder

Builds a minimal runnable backend skeleton from architecture rules before writing business features.

Updated Aug 26, 2026
One-click install
npx skills add https://github.com/Yjj0333/skills-manager-backup --skill backend-skeleton-builder-yjj0333
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: backend-skeleton-builder
Source: https://github.com/Yjj0333/skills-manager-backup/tree/main/backend-skeleton-builder
Command: npx skills add https://github.com/Yjj0333/skills-manager-backup --skill backend-skeleton-builder-yjj0333

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Non-technical users often let AI write business features first, resulting in inconsistent structure, wavering tech choices, and unmaintainable backends. This Skill enforces a rules-first approach: define engineering rules, write them into an architecture design document, then build a minimal runnable skeleton that enforces those rules. ## Core Features & Use Cases - Rules-First Pipeline: Confirms business boundaries, locks the language and framework, and merges language conventions, framework best practices, and project rules into a backend architecture design document. - Four-Line Skeleton: Builds startup (config, health check), API (unified responses, standard HTTP error codes), business (layered separation), and operations (logging, error handling, README) lines without writing business features. - Verification & Outputs: Verifies the skeleton actually starts and responds, then generates backend-architecture-spec.md, AI agent rules, and prompt templates. - Use Case: A vibe-coding user who finished API planning asks the AI to set up the backend; the Skill locks the stack, produces the architecture document, scaffolds the runnable skeleton, and checks it against a 25-item checklist. ## Quick Start Ask the AI to use backend-skeleton-builder to define backend rules and build the minimal runnable skeleton based on your existing backend-api-spec.md before writing any business features.

Frequently Asked Questions about backend-skeleton-builder

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

FAQPage Schema
How do I build a minimal runnable backend skeleton with AI?▼

First write an architecture design document covering language conventions, framework best practices, directory rules, and API response formats. Then build the skeleton from that document across four lines: startup, API, business layering, and operations, without writing business features.

What should a backend architecture design document include?▼

It should record language and framework choices with reasons, engineering conventions, framework best practices, directory constraints, API response and error handling rules, logging rules, database connection method, permission entry point, and rules for organizing new modules.

Should I write business features before the backend skeleton?▼

No. Define rules first, write them into the architecture design document, then build the minimal runnable skeleton. Writing features first causes AI to improvise structure inconsistently and makes later maintenance difficult.

How do I verify a backend skeleton actually works?▼

Install dependencies, start the server, call the health check endpoint, confirm configuration loads from environment files, verify a sample endpoint returns the unified response format, and check that logs appear on requests.

When should I switch backend language or framework mid-project?▼

Almost never during skeleton building. Lock the route early and only justify heavier stacks with real project needs, not security feel or performance feel. Any change requires documented reasons and an architecture document update.