🚀
Scenario:
New Project
The "Zero to SaaS" Sprint
You have an idea for a dashboard. Usually, this means 2 hours of boilerplate setup. ORKA does it in 3 minutes.
> User: "New Next.js SaaS with Stripe & Supabase"
...Reading skills...
ORKA: "Plan ready:
1. Init Next.js 14 App Router
2. Install @supabase/ssr
3. Configure Stripe Webhooks
4. Generate 'Pricing' component"
> User: "Execute."
...Reading skills...
ORKA: "Plan ready:
1. Init Next.js 14 App Router
2. Install @supabase/ssr
3. Configure Stripe Webhooks
4. Generate 'Pricing' component"
> User: "Execute."
The Legacy Rescue
You inherit a messy Python codebase. You want to add type hints and clean up imports. ORKA reads the entire structure first.
> User: "Refactor /services to use Pydantic models"
ORKA: "I see 12 raw dicts in use. I will:
1. Create `models/user.py`
2. Define `UserModel` schema
3. Update `services/user.py` to return `UserModel`
4. Run `mypy` to verify."
ORKA: "I see 12 raw dicts in use. I will:
1. Create `models/user.py`
2. Define `UserModel` schema
3. Update `services/user.py` to return `UserModel`
4. Run `mypy` to verify."
🛠️
Scenario:
Refactor