skills/ariegoldkin/module-scaffolder/SKILL.md
Scaffolds new feature modules in DevPrep AI following the 6-folder architecture with proper TypeScript interfaces, path aliases, and quality standards. Use when creating new domains like 'analytics', 'notifications', or any new feature module.
npx skillsauth add aiskillstore/marketplace module-scaffolderInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automate creation of feature modules with proper structure, boilerplate files, and enforced quality standards.
Auto-triggered by keywords:
# Create new module
./.claude/skills/module-scaffolder/scripts/create-module.sh <module-name>
# Add component to module
./.claude/skills/module-scaffolder/scripts/add-component.sh <module-name> <ComponentName>
# Validate module
./.claude/skills/module-scaffolder/scripts/validate-module.sh <module-name>
modules/<module-name>/
├── components/
│ ├── ExampleCard.tsx # Starter component (rename/delete)
│ └── index.ts # Barrel exports
├── hooks/
│ └── index.ts
├── utils/
│ └── index.ts
└── types.ts # Module-specific types
All generated files automatically follow DevPrep AI quality standards.
Example: Create analytics module
# 1. Scaffold
./scripts/create-module.sh analytics
# 2. Add components as needed
./scripts/add-component.sh analytics AnalyticsChart
./scripts/add-component.sh analytics AnalyticsSummary
# 3. Validate
./scripts/validate-module.sh analytics
What happens:
./scripts/add-component.sh <module-name> <ComponentName>
Result:
index.ts) automatically updated./scripts/validate-module.sh <module-name>
Checks:
any typesBefore scaffolding: Use brainstorming skill to plan module design
After scaffolding:
trpc-scaffolder to create API endpointsquality-reviewer to review code qualityDetailed references available in references/:
6-folder-architecture.md - Where modules fit, structure rulesnaming-conventions.md - I prefix, PascalCase, camelCase rulespath-aliases.md - Import patterns, @shared, @lib usagequality-checklist.md - Complete quality standardsExamples: See examples/complete-module/ for fully structured reference module
Module name: Use lowercase-with-hyphens (analytics, user-profile)
Component name: Use PascalCase (AnalyticsChart, UserCard)
Path errors: Ensure running from project root or use absolute paths
All templates in templates/ directory are automatically used by scripts. Modify templates to customize generated code patterns.
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.