diff --git a/src/04-gbui/apps/tasks.md b/src/04-gbui/apps/tasks.md
index 4d6c85fc..801bf142 100644
--- a/src/04-gbui/apps/tasks.md
+++ b/src/04-gbui/apps/tasks.md
@@ -1,229 +1,361 @@
-# Tasks
+# Tasks - Autonomous App Builder
-> **Describe What You Want, Get a Working App**
+> **Describe what you want, get a working application**
+
+
---
-## What is Tasks?
+## Overview
-Tasks is where you describe what you want and the system builds it. No coding - just tell it what you need.
+Tasks is the command center for autonomous application creation in General Bots Suite. Instead of coding, you describe what you need in plain language, and the system builds complete, working applications with databases, UI, and automation.
-| 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 |
+This is not a simple to-do list—it's an AI-powered development environment that understands intent and executes multi-step plans to create real applications.
---
-## How It Works
+## Features
-```
-DESCRIBE → PLAN → EXECUTE → DONE
-```
+### Natural Language App Creation
-### 1. Describe
+Describe your application in plain English:
-Write what you want in plain language:
+
+
+
+
Create a CRM for my cellphone repair shop
+
10:30
+
+
+
+
+
Plan created:
+
1. Create customers table
+
2. Create repairs table with status workflow
+
3. Create inventory table
+
4. Generate HTMX application
+
+
Confidence: 94% | ETA: 2 minutes
+
+
[▶️ Execute] [✏️ Modify] [❌ Cancel]
+
10:30
+
+
+
-```
-"Create a CRM for my cellphone store with:
-- Customer list (name, phone, email)
-- Product inventory with stock levels
-- Sales tracking
-- Repair status board"
-```
+### Intent Classification
-### 2. Plan
+The system automatically classifies your request and routes it appropriately:
-System shows the execution plan:
+| Intent Type | Example Request | What Gets Created |
+|-------------|-----------------|-------------------|
+| `APP_CREATE` | "Create app for clinic" | Full HTMX application with tables |
+| `TODO` | "Call John tomorrow at 3pm" | Task entry with reminder |
+| `MONITOR` | "Alert me when stock is low" | ON CHANGE event handler |
+| `ACTION` | "Email all customers now" | Immediate execution |
+| `SCHEDULE` | "Daily sales report at 9am" | SET SCHEDULE automation |
+| `GOAL` | "Increase response time by 20%" | Autonomous optimization loop |
+| `TOOL` | "When I say 'check stock', show inventory" | Voice/chat command |
-```
-Step 1: Create tables (customers, products, sales, repairs)
-Step 2: Generate application UI
-Step 3: Add search and filters
-Step 4: Configure repair workflow
+### Real-Time Progress Tracking
-Confidence: 92% | ETA: 3 minutes
-```
+Watch your application being built step by step:
-### 3. Execute
+| Status | Icon | Meaning |
+|--------|------|---------|
+| Completed | ✓ | Step finished successfully |
+| Running | ◐ | Currently executing |
+| Pending | ○ | Waiting to start |
+| Attention | ⚠ | Needs user input |
+| Failed | ✕ | Error occurred |
-Watch progress in real-time:
+### Execution Modes
-```
-[████████████████░░░░] 75%
-Step 3 of 4: Adding search...
-```
+Choose how much control you want:
-### 4. Done
-
-Your app is ready:
-
-```
-✅ Application: /apps/cellphone-crm
-✅ Tables: customers, products, sales, repairs
-```
+| Mode | Description | Best For |
+|------|-------------|----------|
+| **Automatic** | Executes all steps without confirmation | Trusted, simple tasks |
+| **Supervised** | Asks approval before each step | Learning, reviewing changes |
+| **Dry Run** | Shows what would happen without executing | Testing, validation |
---
-## Creating a Task
+## Task Types
-### Write Your Intent
+### To-Do Tasks
-Be specific about what you want:
+Simple reminders and action items:
-| ✅ 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" |
+
+
+
+
Remind me to follow up with the client tomorrow
+
14:20
+
+
+
+
+
✅ Task created:
+
📋 Follow up with client
+
📅 Tomorrow at 9:00 AM
+
🔔 Notification set
+
14:20
+
+
+
-### Choose Mode
+### Application Tasks
-| Mode | Best For |
-|------|----------|
-| **Automatic** | Trusted, simple tasks |
-| **Supervised** | Learning, want to review each step |
-| **Dry Run** | Testing - see what would happen |
+Full application generation:
-### Click Execute
+
+
+
+
I need an inventory system with products, suppliers, and purchase orders
+
09:15
+
+
+
+
+
Building inventory system...
+
+
[████████████████░░░░] 80%
+
+
✓ products table created
+
✓ suppliers table created
+
✓ purchase_orders table created
+
◐ Generating UI components...
+
09:16
+
+
+
-The system runs each step and shows progress.
+### Scheduled Tasks
+
+Recurring automations:
+
+
+
+
+
Every Monday at 8am, send me a summary of pending repairs
+
11:00
+
+
+
+
+
✅ Scheduler created:
+
📄 weekly-repairs-summary.bas
+
⏰ Every Monday at 8:00 AM
+
📧 Will email summary to you
+
11:00
+
+
+
+
+### Monitor Tasks
+
+Event-driven triggers:
+
+
+
+
+
Alert me when any product stock falls below 10 units
+
15:30
+
+
+
+
+
✅ Monitor created:
+
📄 low-stock-alert.bas
+
👁️ Watching: products.stock
+
⚡ Triggers when: stock < 10
+
15:30
+
+
+
+
+### Goal Tasks
+
+Autonomous optimization with metrics:
+
+
+
+
+
Reduce average repair time by 15%
+
16:00
+
+
+
+
+
✅ Goal registered:
+
🎯 Target: -15% repair time
+
📊 Current avg: 3.2 days
+
📈 Will analyze patterns and suggest improvements
+
📅 Weekly progress reports enabled
+
16:00
+
+
+
---
-## Task Progress
+## Generated Applications
-### Status Icons
-
-| Icon | Meaning |
-|------|---------|
-| ✓ | Completed |
-| ◐ | Running |
-| ○ | Pending |
-| ⚠ | Needs attention |
-| ✕ | Failed |
-
-### Steps Are Saved
-
-Every step is stored so you can:
-
-- **Resume** if interrupted
-- **Track** exactly where you are
-- **Debug** if something fails
-
----
-
-## Your Generated App
-
-Apps are created at `.gbdrive/apps/{name}/`:
+When you create an app, it generates a complete structure:
```
.gbdrive/apps/cellphone-crm/
-├── index.html # Your application
+├── index.html # Main HTMX application
├── _assets/
-│ ├── htmx.min.js
-│ └── styles.css
-└── schema.json # Table definitions
+│ ├── htmx.min.js # HTMX library
+│ └── styles.css # Application styles
+└── schema.json # Table definitions
```
### Direct API Access
-Your app talks directly to botserver:
+Generated apps use HTMX to communicate directly with botserver:
-```html
-
-
-
-
-