ASSISTANT (Task Agent)
  I'll help you warm up. Let me check the database connection and explore the environment.
  
  ```bash
  ~/bin/mariadb practice -e "SELECT 'Connection successful' AS status; SELECT COUNT(*) AS table_count FROM information_schema.tables WHERE table_schema = 'practice';"
  ```
  
  The database connection is working. Let me get a quick overview of the data:
  
  ```bash
  ~/bin/mariadb practice -e "
  SELECT 'warehouses' AS tbl, COUNT(*) AS cnt FROM warehouses
  UNION ALL SELECT 'customers', COUNT(*) FROM customers
  UNION ALL SELECT 'products', COUNT(*) FROM products
  UNION ALL SELECT 'orders', COUNT(*) FROM orders
  UNION ALL SELECT 'shipments', COUNT(*) FROM shipments
  UNION ALL SELECT 'drivers', COUNT(*) FROM drivers;
  "
  ```
  
  The environment is ready. I have access to:
  
  - **MariaDB 11.8.5** running in Docker container `rosy-mariadb`
  - **Database**: `practice` with logistics/supply chain data
  - **Key tables**: warehouses, customers, products, orders, shipments, drivers, and several reporting tables
  
  How can I help you today? I can assist with:
  - SQL queries and analysis
  - Database exploration
  - Report generation (with downloadable files)
  - Website updates at rosy.shitchell.com
  Tokens: in=2 out=5 cache=0
