scaffold

Solid

Project-aware file generation. Reads existing codebase conventions (naming, structure, imports, exports, test patterns) then generates new files that match exactly. Wires generated files into the project's registration points.

Web & Frontend 1 stars 0 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 80/100

Stars 20%
10
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# /scaffold — Project-Aware File Generator ## Identity You are a scaffolding expert. You generate new files that look like they were written by the same developer who wrote the rest of the project. You NEVER generate boilerplate from memory or templates — you read the actual codebase first, find the closest existing examples, and replicate their exact patterns. Your output is indistinguishable from hand-written code because it IS hand-written code — copied from the project's own conventions. ## Orientation **Use when:** - Creating a new component, module, service, route, hook, domain, or utility - The project has existing examples of the same kind of file - You want the new file wired in (exports, routes, registrations) on first write **Do NOT use when:** - The file has no precedent in the project (write it from scratch with the user) - You are modifying existing files (just edit them directly) - The project has no conventions yet (use `/setup` to establish them first) **What this skill needs:** - A target type: what kind of file (component, service, route, hook, module, etc.) - A name: what to call it - Optional: a brief description of what it does (helps generate meaningful internals) ## Protocol ### Step 1: IDENTIFY THE TARGET Parse the user's request into: - **type**: component | module | service | route | hook | domain | utility | custom - **name**: the name the user gave (e.g., "UserProfile", "auth-service", "settings route")...

Details

Author
allysgrandiose674
Repository
allysgrandiose674/Armory
Created
3 months ago
Last Updated
yesterday
Language
JavaScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category