| name | full-stack-builder |
| description | Build complete full-stack applications end-to-end using orchestrated skills |
| type | meta-skill |
Full Stack Builder
Meta-Skill that orchestrates multiple skills to build complete full-stack applications from concept to deployment.
Overview
This meta-skill chains together 7+ individual skills to create a complete application workflow. It handles everything from requirements gathering to deployment, using the skill registry and composer to intelligently orchestrate the process.
Skills Orchestrated
- brainstorming - Explore requirements and design
- database-schema-generator - Design database schema
- api-endpoint-builder - Build backend API
- user-authentication-system - Add authentication
- testing-framework - Add comprehensive tests
- deployment-automation - Deploy to production
- error-monitoring-setup - Set up monitoring
Optional Skills (Based on Requirements)
- payment-integration - If payments needed
- file-upload-system - If file uploads needed
- email-system-builder - If email notifications needed
- analytics-dashboard - If analytics needed
Usage
Command Line
python3 /tmp/manus-skills-v2/meta-skills/full-stack-builder/scripts/build_app.py "SaaS app with auth and payments"
Programmatic
from lib.skill_registry import SkillRegistry
from lib.skill_composer import SkillComposer
registry = SkillRegistry()
composer = SkillComposer(registry)
workflow_skills = [
"brainstorming",
"database-schema-generator",
"api-endpoint-builder",
"user-authentication-system",
"testing-framework",
"deployment-automation"
]
workflow = composer.compose_workflow(workflow_skills)
results = composer.execute_workflow(workflow, {"description": "My SaaS App"})
Workflow
- Requirements Phase - Use brainstorming to understand needs
- Database Phase - Generate schema based on requirements
- Backend Phase - Build API endpoints
- Auth Phase - Add authentication system
- Testing Phase - Add comprehensive tests
- Deployment Phase - Deploy to production
- Monitoring Phase - Set up error monitoring
Time Saved
Total: 30-35 hours per application
- Without meta-skill: 30-35 hours of manual work
- With meta-skill: 4-5 hours of guided work
- Savings: 85-90% time reduction
Dependencies
- All orchestrated skills must be available
- Skill registry must be loaded
- Skill composer must be initialized
Notes
- This is a meta-skill - it doesn't contain implementation code itself
- It orchestrates other skills using the skill registry and composer
- Can be customized by adding/removing skills from the workflow
- Automatically resolves dependencies between skills