diff --git a/src/04-gbui/apps/tasks.md b/src/04-gbui/apps/tasks.md
index fbfd543a..5c25562b 100644
--- a/src/04-gbui/apps/tasks.md
+++ b/src/04-gbui/apps/tasks.md
@@ -1,33 +1,69 @@
# Tasks
-> **The machine does the work**
+> **Describe What You Want, Get a Working App**
---
-
-
## What is Tasks?
-Tasks is where the machine does the work for you. Instead of manually tracking to-do items, you describe what you want to accomplish in natural language, and the system compiles your intent into an executable plan with automatic step-by-step execution.
+Tasks is where you describe what you want and the system builds it. No coding - just tell it what you need.
-| Old Way | Tasks Way |
-|---------|-----------|
-| Create a task | Describe your goal |
-| Do it yourself | Machine plans it |
-| Mark complete | Machine executes it |
-| Repeat | You approve critical steps |
+| You Say | You Get |
+|---------|---------|
+| "CRM for my cellphone store" | Working app with customers, sales, inventory |
+| "Track repair status" | Kanban board with status workflow |
+| "Sales dashboard" | Charts and metrics auto-updating |
---
## How It Works
-| Step | What Happens |
-|------|--------------|
-| **1. Describe** | Write what you want in plain English |
-| **2. Compile** | LLM analyzes intent, generates execution plan |
-| **3. Review** | See steps, estimates, risks before execution |
-| **4. Execute** | System runs the plan, pausing for approvals |
-| **5. Monitor** | Watch progress, make decisions when needed |
+```
+DESCRIBE → PLAN → EXECUTE → DONE
+```
+
+### 1. Describe
+
+Write what you want in plain language:
+
+```
+"Create a CRM for my cellphone store with:
+- Customer list (name, phone, email)
+- Product inventory with stock levels
+- Sales tracking
+- Repair status board"
+```
+
+### 2. Plan
+
+System shows the execution plan:
+
+```
+Step 1: Create tables (customers, products, sales, repairs)
+Step 2: Generate application UI
+Step 3: Add search and filters
+Step 4: Configure repair workflow
+
+Confidence: 92% | ETA: 3 minutes
+```
+
+### 3. Execute
+
+Watch progress in real-time:
+
+```
+[████████████████░░░░] 75%
+Step 3 of 4: Adding search...
+```
+
+### 4. Done
+
+Your app is ready:
+
+```
+✅ Application: /apps/cellphone-crm
+✅ Tables: customers, products, sales, repairs
+```
---
@@ -35,296 +71,159 @@ Tasks is where the machine does the work for you. Instead of manually tracking t
### Write Your Intent
-In the intent box, describe what you want to accomplish:
+Be specific about what you want:
-| Good Examples |
-|---------------|
-| "Make a financial CRM for Deloitte with client management and reporting" |
-| "Create a website that collects leads and sends them to Salesforce" |
-| "Build an automated email campaign for our product launch" |
-| "Analyze Q4 sales data and generate a PDF report with charts" |
+| ✅ Good | ❌ Too Vague |
+|---------|--------------|
+| "CRM for cellphone store with customer tracking and repair status" | "Make an app" |
+| "Inventory with low stock alerts when below 10 units" | "Track stuff" |
+| "Sales dashboard with daily revenue chart" | "Dashboard" |
-**Tips for better results:**
+### Choose Mode
-- Be specific about the outcome you want
-- Mention the client or project name
-- Include key features or requirements
-- Specify integrations if needed
+| Mode | Best For |
+|------|----------|
+| **Automatic** | Trusted, simple tasks |
+| **Supervised** | Learning, want to review each step |
+| **Dry Run** | Testing - see what would happen |
-### Choose Execution Mode
+### Click Execute
-| Mode | Best For | How It Works |
-|------|----------|--------------|
-| **Semi-Automatic** | Most tasks | Runs automatically, pauses for high-risk steps |
-| **Supervised** | Learning/sensitive | Pauses before each step for your approval |
-| **Fully Automatic** | Trusted workflows | Runs everything without stopping |
-| **Dry Run** | Testing | Simulates execution without making changes |
-
-### Set Priority
-
-| Priority | Meaning |
-|----------|---------|
-| **Critical** | Urgent, run immediately |
-| **High** | Important, prioritize |
-| **Medium** | Normal priority (default) |
-| **Low** | Run when resources available |
-| **Background** | Run during idle time |
-
-### Click Compile & Plan
-
-The LLM will:
-
-1. Extract entities (action, target, domain, client)
-2. Generate an execution plan with ordered steps
-3. Assess risks and estimate resources
-4. Generate the underlying BASIC program
+The system runs each step and shows progress.
---
-## Understanding the Execution Plan
+## Task Progress
-After compilation, you see a detailed plan:
+### Status Icons
-### Plan Header
+| Icon | Meaning |
+|------|---------|
+| ✓ | Completed |
+| ◐ | Running |
+| ○ | Pending |
+| ⚠ | Needs attention |
+| ✕ | Failed |
-| Field | Description |
-|-------|-------------|
-| **Plan Name** | Auto-generated title for your task |
-| **Description** | Summary of what will be accomplished |
-| **Confidence** | How confident the LLM is in the plan (aim for 80%+) |
-| **Risk Level** | Overall risk assessment (None/Low/Medium/High/Critical) |
-| **Estimated Duration** | How long execution should take |
-| **Estimated Cost** | API and compute costs |
+### Steps Are Saved
-### Execution Steps
+Every step is stored so you can:
-Each step shows:
-
-| Field | Description |
-|-------|-------------|
-| **Step Number** | Order of execution |
-| **Priority** | CRITICAL, HIGH, MEDIUM, LOW |
-| **Step Name** | What this step does |
-| **Keywords** | BASIC keywords that will be used |
-| **Risk Level** | Risk for this specific step |
-
-### Plan Actions
-
-| Button | Action |
-|--------|--------|
-| **Discard** | Delete the plan, start over |
-| **Edit Plan** | Modify steps before execution |
-| **Simulate** | Preview impact without executing |
-| **Execute** | Start running the plan |
+- **Resume** if interrupted
+- **Track** exactly where you are
+- **Debug** if something fails
---
-## Monitoring Tasks
+## Your Generated App
-### Task States
+Apps are created at `.gbdrive/apps/{name}/`:
-| Status | Meaning |
-|--------|---------|
-| **Draft** | Created, not yet compiled |
-| **Compiling** | LLM is generating the plan |
-| **Ready** | Plan generated, waiting to start |
-| **Running** | Currently executing |
-| **Paused** | Execution paused by user |
-| **Pending Approval** | Waiting for you to approve a step |
-| **Waiting Decision** | Needs your input to continue |
-| **Completed** | Successfully finished |
-| **Failed** | Encountered an error |
-| **Cancelled** | Stopped by user |
+```
+.gbdrive/apps/cellphone-crm/
+├── index.html # Your application
+├── _assets/
+│ ├── htmx.min.js
+│ └── styles.css
+└── schema.json # Table definitions
+```
-### Filter Tabs
+### Direct API Access
-| Tab | Shows |
-|-----|-------|
-| **All** | Every task regardless of status |
-| **Running** | Currently executing tasks |
-| **Need Approval** | Tasks waiting for your approval |
-| **Decisions** | Tasks needing your input |
+Your app talks directly to botserver:
-### Progress Tracking
+```html
+
+