Awesome-omni-skill app-builder

Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.

install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/app-builder-paulojalowyj" ~/.claude/skills/diegosouzapw-awesome-omni-skill-app-builder-8c2099 && rm -rf "$T"
manifest: skills/development/app-builder-paulojalowyj/SKILL.md
source content

App Builder - Application Building Orchestrator

Analyzes user's requests, determines tech stack, plans structure, and coordinates agents.

Selective Reading Rule

Read ONLY files relevant to the request! Check the content map, find what you need.

FileDescriptionWhen to Read
project-detection.md
Keyword matrix, project type detectionStarting new project
tech-stack.md
2025 default stack, alternativesChoosing technologies
agent-coordination.md
Agent pipeline, execution orderCoordinating multi-agent work
scaffolding.md
Directory structure, core filesCreating project structure
feature-building.md
Feature analysis, error handlingAdding features to existing project
templates/SKILL.md
Project templatesScaffolding new project

Question Tool Usage (MANDATORY)

When this skill requires user input or choices:

  • Use
    question
    tool for all multi-option scenarios
  • Present trade-offs clearly in option descriptions
  • Structure template selection questions properly

Example usage:

question({
  questions: [{
      question: "Which application template?",
      header: "Template",
      options: [
        { label: "Next.js Full-Stack", description: "Modern React stack" },
        { label: "FastAPI", description: "Python API" },
        { label: "React Native", description: "Mobile app" }
      ]
    }]
})

See

.opencode/rules/MASTER.md
for complete Question Tool Protocol.


Templates (13)

Quick-start scaffolding for new projects. Read the matching template only!

TemplateTech StackWhen to Use
nextjs-fullstackNext.js + PrismaFull-stack web app
nextjs-saasNext.js + StripeSaaS product
nextjs-staticNext.js + FramerLanding page
nuxt-appNuxt 3 + PiniaVue full-stack app
express-apiExpress + JWTREST API
python-fastapiFastAPIPython API
react-native-appExpo + ZustandMobile app
flutter-appFlutter + RiverpodCross-platform mobile
electron-desktopElectron + ReactDesktop app
chrome-extensionChrome MV3Browser extension
cli-toolNode.js + CommanderCLI app
monorepo-turborepoTurborepo + pnpmMonorepo

Related Agents

AgentRole
project-planner
Task breakdown, dependency graph
frontend-specialist
UI components, pages
backend-specialist
API, business logic
database-architect
Schema, migrations
devops-engineer
Deployment, preview

Usage Example

User: "Make an Instagram clone with photo sharing and likes"

App Builder Process:
1. Project type: Social Media App
2. Tech stack: Next.js + Prisma + Cloudinary + Clerk
3. Create plan:
   ├─ Database schema (users, posts, likes, follows)
   ├─ API routes (12 endpoints)
   ├─ Pages (feed, profile, upload)
   └─ Components (PostCard, Feed, LikeButton)
4. Coordinate agents
5. Report progress
6. Start preview