# Agent Skills Source: https://docs.modularmind.app/capabilities/agent-skills Extend Maia with specialized knowledge, workflows, and domain expertise using the Agent Skills standard ## Give Maia New Capabilities Agent Skills allow you to package specialized knowledge, workflows, and domain expertise into reusable capabilities that Maia can discover and use automatically. Whether you need brand guidelines enforcement, custom analysis pipelines, or company-specific procedures, skills give Maia the context it needs to work reliably. ## What are Agent Skills? Agent Skills are a simple, open format for extending AI agents with specialized capabilities. A skill is a folder containing instructions, scripts, and resources that agents can load on demand when relevant to a task. The format is built on three principles: Skills are human-readable folders with markdown instructions Use the same skill across different AI agents and platforms Load only what's needed, keeping context efficient ### The Agent Skills Standard Each skill contains a `SKILL.md` file with: * **Metadata**: Name and description (so Maia knows when to use it) * **Instructions**: Step-by-step guidance in markdown format * **Optional Resources**: Scripts, templates, reference documents, and assets This open format means skills you create for Maia can work with other skills-compatible agents like Claude AI, Claude Code, Gemini CLI, and OpenAI Codex. ## How Maia Uses Agent Skills Maia integrates Agent Skills using a progressive disclosure approach: 1. **Discovery**: At startup, Maia loads the name and description of all your skills 2. **Activation**: When a task matches a skill's description, Maia loads the full instructions 3. **Execution**: Maia follows the instructions, accessing scripts and resources as needed This keeps Maia fast while giving it access to extensive specialized knowledge on demand. ### Automatic Integration Unlike other AI agents that require manual skill installation, **all skills in Maia are immediately available across**: * ✓ All conversation sessions * ✓ All workflows (including existing ones) * ✓ All deployed workflows * ✓ All workflow triggers (routine, webhook, and action) No configuration, no restarts, no installation steps. Create a skill and Maia can use it instantly. ## Managing Skills in Maia Access skill management through **Skills** settings where you can create, upload, and manage all your agent skills. ### Creating New Skills Maia can generate complete Agent Skills for you from any source material: Navigate to Skills settings in your Maia workspace from the menu at the bottom left. Click the **Create Skill** button and select **Let Maia Create**. Tell Maia what capability you want to create: ``` Create a brand guidelines skill that enforces: - Logo usage rules (primary logo for white backgrounds) - Color palette: Primary #39DA5D, Secondary #1A1A1A - Typography: Inter for headings, SF Pro for body text - Never use gradients or shadows in official materials ``` Optionally attach PDFs, text files, or documents containing: * Existing guidelines or procedures * Example workflows * Technical specifications * Company policies Maia generates a complete skill with proper structure. Review the files in the built-in editor and make any adjustments. The skill is immediately available to Maia in all contexts ### Uploading Existing Skills If you already have Agent Skills created for other platforms or shared by teammates: 1. **Navigate to Skills settings** from the menu at the bottom left 2. **Click Create Skill** and select **Upload Skill (ZIP)** 3. **Select your ZIP file** (ensure the skill is properly packaged) 4. **Enable the skill** to make it available to Maia ### Managing Your Skills In the Skills settings panel, you can: Control which skills are active without deleting them Refine skill instructions and update procedures Remove skills you no longer need ## Use Cases Agent Skills excel at capturing specialized knowledge and repeatable workflows: **Ensure consistency** across all generated content * Logo usage rules and asset selection * Color palettes and design systems * Typography and formatting standards * Tone of voice and messaging guidelines *Example: "Generate a press release following our brand guidelines" — Maia automatically applies your style rules* **Standardize analysis workflows** * Custom data cleaning procedures * Industry-specific calculations * Compliance-required transformations * Multi-step analysis pipelines *Example: "Analyze this sales data" — Maia follows your company's specific analysis methodology* **Generate consistent documents** * Contract templates and legal formats * Report structures and sections * Proposal frameworks * Meeting note templates *Example: "Create a project proposal" — Maia uses your organizational template and requirements* **Follow coding standards** * Code review checklists * Testing procedures * Deployment workflows * Architecture patterns *Example: "Review this code" — Maia applies your team's specific standards and practices* **Maintain regulatory compliance** * Approval workflows * Document retention policies * Privacy requirements * Industry regulations (HIPAA, GDPR, SOC2) *Example: "Draft a privacy notice" — Maia ensures compliance with your specific requirements* **Package specialized knowledge** * Industry terminology and context * Technical specifications * Best practices and procedures * Historical context and decisions *Example: "Explain this medical term" — Maia uses your healthcare organization's internal knowledge base* ## Example: Creating a Brand Guidelines Skill Here's how Maia structures a complete Agent Skills package: ``` brand-guidelines/ ├── SKILL.md # Main instructions with metadata ├── references/ │ ├── colors.md # Detailed color specifications │ ├── typography.md # Font usage rules │ └── examples.md # Good and bad examples └── assets/ ├── logo-primary.svg # Logo files └── logo-white.svg ``` The `SKILL.md` file contains: ```markdown theme={null} --- name: brand-guidelines description: Enforces company brand guidelines including logo usage, color palette, typography, and visual style rules. Use when generating any marketing materials, presentations, or public-facing content. --- # Brand Guidelines ## When to use this skill Use this skill whenever creating or reviewing: - Marketing materials - Social media content - Presentations - Website copy - Email campaigns ## Logo Usage Always use the primary logo (#39DA5D) on white backgrounds. Use the white logo on dark backgrounds (#1A1A1A or darker). Never: - Stretch or distort the logo - Add effects (shadows, gradients, outlines) - Place on busy backgrounds ## Color Palette Primary: #39DA5D (Maia Green) Secondary: #1A1A1A (Charcoal) ... ``` When you ask Maia to "create a social media post," it automatically: 1. Recognizes the task matches the brand guidelines skill 2. Loads the full instructions 3. Applies your specific brand rules 4. Generates compliant content **Quick Start**: Try creating a skill for your brand's tone of voice. Include 3-5 key principles and some example phrases to use and avoid. Within seconds, Maia will apply this guidance to all content generation.


Learn how Maia connects to Google Workspace and other tools # Data Analysis Source: https://docs.modularmind.app/capabilities/data-analysis Real-time code generation and execution for calculations, data analysis, and visualizations ## Execute Code On Demand Maia can write and execute code in real-time to solve complex problems, perform calculations, and transform data — all within your workflow. ## Why Data Analysis Matters ### Trustworthy Mathematical Operations When precision is critical, Maia generates and executes code to guarantee accurate results: Financial modeling, statistical analysis, scientific computations Clean, filter, aggregate, and restructure datasets Run formulas against real data to verify accuracy Process conditional logic and multi-step algorithms **Example:** ``` Calculate the compound annual growth rate (CAGR) for a portfolio that started at $100,000 and grew to $175,000 over 5 years. ``` Instead of estimating, Maia generates and executes Python code to return the precise result: **11.84%**. ## Data Visualization Maia creates professional visualizations from any data source — whether you provide it directly or Maia retrieves it from the web or connected platforms. ### Visualization Types * **Line Charts** - Trends over time * **Bar Charts** - Comparisons across categories * **Pie Charts** - Distribution percentages * **Scatter Plots** - Correlations and patterns * **Heat Maps** - Density and intensity mapping * **Histograms** - Distribution analysis * **Box Plots** - Statistical summaries * Formatted data tables * Summary statistics * Pivot tables * Network diagrams * Gantt charts * Geographic maps * Contour plots ### From Data to Insight Upload files, paste datasets, or have Maia gather information from APIs, databases, or web sources ``` Analyze this sales data and create: 1. A line chart showing monthly revenue trends 2. A bar chart comparing performance by region 3. A table of top 10 products by revenue ``` Maia generates code to process your data and produces publication-ready visualizations ## Your Data Analysis Teammate Data analysis transforms Maia into a powerful analytical partner: ✅ **Process large datasets** - Handle thousands of rows efficiently\ ✅ **Perform statistical analysis** - Correlations, regressions, hypothesis testing\ ✅ **Generate insights** - Identify trends, outliers, and patterns\ ✅ **Create reports** - Combine analysis with visualizations in documents\ ✅ **Automate calculations** - Build workflows that run complex math operations **Request:** ``` I have Q4 sales data in this CSV. Analyze it and show me: - Total revenue by month - Top 5 products by units sold - Average deal size by sales rep - Month-over-month growth rate Create visualizations for each metric. ``` **What Maia Does:** 1. Reads and validates the CSV data 2. Executes Python code to calculate each metric 3. Generates four separate chart visualizations (line chart for revenue, bar chart for products, etc.) 4. Creates a summary table with key statistics 5. Provides numerical summaries alongside charts **Request:** ``` Calculate the break-even point for a SaaS product with: - Monthly fixed costs: $50,000 - Variable cost per customer: $5/month - Subscription price: $99/month Show me break-even in customers and create a graph showing profitability from 0 to 1,000 customers. ``` **What Maia Does:** 1. Generates a financial model in code 2. Calculates break-even: **532 customers** 3. Creates a line graph showing the profitability curve 4. Highlights the break-even point on the visualization **Request:** ``` Get the last 30 days of Bitcoin prices, calculate the daily percentage change, and create a chart showing the price movement with volume bars below. ``` **What Maia Does:** 1. Retrieves historical Bitcoin data from a financial API 2. Calculates daily price changes programmatically 3. Generates a professional price chart with OHLC data 4. Adds volume bars as a subplot 5. Returns insights about volatility and trends ## How It Works Maia's data analysis environment: * **Secure sandbox** - Code runs in isolated environments * **Library access** - Popular data science libraries (pandas, matplotlib, numpy) * **Output variety** - Return values and visualizations ## Use Cases ### Business Analytics * Sales forecasting and trend analysis * Customer segmentation * KPI calculation and monitoring * ROI and financial modeling ### Research & Science * Statistical analysis * Data cleaning and preparation * Experiment result processing * Publication-ready visualizations ### Operations * Inventory optimization * Resource allocation calculations * Scheduling algorithms * Performance benchmarking ### Reporting * Automated dashboard generation * Executive summaries with charts * Comparative analysis reports * Real-time data monitoring


Create high-fidelity visuals programmatically within your workflows # Document Generation Source: https://docs.modularmind.app/capabilities/document-generation Generate and edit professional documents, spreadsheets, and presentations natively ## Production-Ready Office Files Maia can generate and edit Word, Excel, and PowerPoint files natively — full, rich, production-ready documents without any copy-paste or manual assembly. Whether you need a 2-page summary or a 50-page report, Maia handles document creation with consistent quality and formatting. Maia generates dozens of pages of structured content and can also **edit existing documents** you already have — not just create new ones from scratch. ## Supported Document Types `.docx` (Microsoft Word) **Use for:** Reports, proposals, contracts, letters, business documents `.xlsx` (Microsoft Excel), `.csv` **Use for:** Financial models, dashboards, data workbooks, structured datasets `.pptx` (Microsoft PowerPoint) **Use for:** Pitch decks, investor presentations, training materials, slide content Standard PDFs and styled presentations **Use for:** Final deliverables, professional reports, formatted output `.txt`, `.md`, `.csv` **Use for:** Data exports, simple lists, markdown content ## Editing Existing Documents Maia doesn't just create documents from scratch — it can open, update, and refine Office files you already have. Upload a DOCX, XLSX, or PPTX file and ask Maia to: * Update figures or data in a spreadsheet * Revise sections of a report * Add new slides to an existing presentation * Reformat or restructure content ## Bring Your Own Templates You can feed Maia your existing DOCX, XLSX, or PPTX templates and have it fill them in. Your branding, your structure, your formatting — Maia produces documents that look like they came from your team. This is especially useful for anything that needs to stay consistent: * Client-facing deliverables * Weekly or monthly reports * Pitch decks for different verticals * HR documents and onboarding materials * Financial statements and invoices Upload your template as an [Executive File](/capabilities/executive-files) or attach it directly in a conversation, and Maia will use it as the foundation for generated output. Learn how Maia builds interactive web applications # Knowledge Base Source: https://docs.modularmind.app/capabilities/executive-files Give your executives a personal knowledge base with uploaded documents ## A Personal Knowledge Base Every great executive knows their business inside out. With Executive Files, you can upload documents directly to your AI executives as a personal knowledge base. Give it once, and your executive always has access to the information it needs. ## Supported File Types Research reports, business plans, SOPs, policies Word documents, Excel spreadsheets, PowerPoint presentations Plain text, markdown, CSV data, configuration files Logos, design references, visual assets for use in generated content ## What You Can Upload SOPs, policies, and process documentation that your executives should follow when operating Research reports, business plans, competitive analysis, and reference materials for informed decision-making Product specs, pricing sheets, onboarding materials, and client-facing templates Logos, design references, and visual guidelines for use in generated images and documents ## Intelligent Context Management Maia doesn't dump all uploaded files into every interaction. It uses intelligent context management — knowing **when** a file is relevant and pulling from it efficiently. Your documents are always available without cluttering conversations or workflows where they aren't needed. Your executives apply this knowledge, cross-reference it, and use it to power every plan, workflow, and action they run — exactly like well-briefed human operators would. Learn how Maia researches the live web in real time # Human in the Loop Source: https://docs.modularmind.app/capabilities/human-in-the-loop Stay in control with intelligent checkpoints during complex operations ## Control When It Matters Maia and your custom executives can pause mid-operation to ask for clarifications or request your review before proceeding with critical steps. This works for both quick one-off tasks and complex multi-step automations. You're in the loop at every decision that matters — without being interrupted on every step. Human in the Loop is designed to be frictionless: checkpoints only where they matter, not on every action. ## How It Works Your executives intelligently identify moments that require human judgment and pause to check in. This happens naturally within the conversation or workflow — no special configuration required. During execution, the executive recognizes a step that requires human input — an ambiguity, a critical action, or a point where preferences matter. The executive pauses, presents what it's about to do (or what it needs clarification on), and waits for your input. Approve, adjust, or redirect. Your executive incorporates your decision and continues. ## Real-World Examples Before sending a bulk outreach sequence, Maia surfaces the final draft and waits for your approval before triggering delivery. Mid-workflow, an executive flags an unclear decision — like which client account to update — and asks you directly instead of guessing. For long-running automations, Maia checkpoints at key stages, giving you the chance to adjust course before the next phase kicks off. Data deletions, overwrites, or irreversible actions pause for confirmation rather than proceeding automatically. ## Works Everywhere Human in the Loop works in both interactive sessions and deployed workflows. Even during automated runs triggered by schedules or webhooks, your executives can reach out for clarification when they encounter something that needs your judgment. Extend Maia with specialized knowledge and domain expertise # Image Generation Source: https://docs.modularmind.app/capabilities/image-generation Create high-fidelity visuals programmatically within your workflows ## Native Visual Creation Maia can natively generate high-fidelity images, allowing you to move from concept to final visual asset without ever leaving the app. Whether you need a hero image for a blog post or a specific graphic for a presentation, Maia handles the creation programmatically. Image generation integrates directly into your workflows, enabling automated visual content creation at scale. ## Key Features Create crisp, high-resolution visuals ready for any professional use Choose from 16:9, 4:3, 1:1, and more to perfectly fit your destination platform Include image generation as a step in your multi-stage automations Generate visuals based on dynamic inputs and data from your workflows ## Use Cases ### Content Creation * **Blog Hero Images** - Generate featured images that match your article's theme * **Social Media Graphics** - Create platform-optimized visuals for posts and ads * **Newsletter Headers** - Design consistent visual branding for email campaigns ### Business & Marketing * **Presentation Graphics** - Build custom visuals for slides and reports * **Product Mockups** - Generate concept images for product ideas * **Marketing Collateral** - Create banners, thumbnails, and promotional imagery ### Automated Pipelines * **Report Generation** - Add relevant visuals to automated reports * **Content Workflows** - Generate images as part of end-to-end content creation * **Dynamic Outputs** - Create visuals that adapt based on data inputs ## Aspect Ratio Options * **16:9** - Ideal for presentations, YouTube thumbnails, website headers * **4:3** - Classic format for documents and traditional displays * **3:2** - Photography standard, great for print materials * **9:16** - Perfect for Instagram Stories, TikTok, mobile content * **3:4** - Vertical documents and mobile-first designs * **2:3** - Portrait photography and vertical banners * **1:1** - Instagram posts, profile images, icons ## Example Workflow Describe what you need: "Create a hero image for a blog post about AI in healthcare" Set quality, aspect ratio, and style preferences for your output Maia creates your image based on the description and parameters Use the generated image in documents, websites, or pass it to other workflow steps


Package specialized capabilities and domain expertise into reusable skills # Memory Source: https://docs.modularmind.app/capabilities/memory Persistent, evolving memory that lets your executives know your business deeply ## Persistent Business Context One of the biggest gaps between a great AI assistant and a true AI executive has always been this: it forgets you the moment the conversation ends. That changes with Memory. Maia now has persistent memory — and more importantly, memory that **updates**. Maia doesn't just store a snapshot of who you are and move on. It actively keeps that understanding fresh, refining what it knows about your business, your preferences, and the way you work as things evolve. ## What Maia Remembers Your goals, key details, and operational context across every conversation Tone guidelines, working style, and communication preferences — so you never repeat yourself A progressively deeper picture of your processes, priorities, and the standards you care about What's been decided, what constraints apply, and what context carries forward ## Memory That Updates Unlike static profile storage, Maia's memory is **living context**. As your business evolves — new priorities, new team members, new processes — Maia's understanding stays current, not stale. This means your executives aren't starting from scratch each time. They build on what they already know, compounding their effectiveness with every interaction. ## How Memory Powers Executives Memory acts as a context fabric across decoupled workflows. When an executive runs a weekly report, it knows what happened in last week's report. When it handles a client request, it remembers their preferences from previous interactions. This is the foundation for executives that genuinely know your business — not just for one session, but as persistent, evolving operational partners. Give your executives a personal knowledge base with uploaded documents # The Secure Browser Source: https://docs.modularmind.app/capabilities/secure-browser How Maia interacts with websites like a human, securely and at scale ## Computer Use: Beyond Text Scraping Maia doesn't just read websites, it can **use** them. The Secure Browser gives Maia the ability to click, scroll, type, and navigate websites exactly like you would. This is **computer use** technology: Maia sees the screen, understands visual elements, and takes actions just like you do with your browser. ## What the Secure Browser Can Do Buttons, links, menus, tabs, dropdowns Text inputs, checkboxes, radio buttons, file uploads Follow links, use breadcrumbs, handle pagination Reveal hidden content, trigger lazy loading Retrieve text, take screenshots, extract links Close modals, accept cookies, dismiss notifications ## How It Works ### Visual Understanding The browser doesn't use hidden APIs or HTML parsing. It sees the page as you do: 1. **Takes a screenshot** of the current view 2. **Analyzes the visual layout** (buttons, text, images) 3. **Identifies interactive elements** (clickable areas) 4. **Plans the next action** (what to click or type) 5. **Executes the action** and observes the result This means Maia can interact with any website, even complex single-page applications that make traditional scraping difficult. ### Example: Applying to Y Combinator **Your request:** 💬 *Apply to Y Combinator's next batch for my startup, using information from our pitch deck and business plan.* **What Maia does:** Opens YC's application portal and starts a new application Identifies all form fields, text areas, and dropdown menus From your documents, fills in: * Company name and description * Founder details and equity split * Product/market fit explanation For essay questions like "What's new about your solution?", synthesizes answers from your pitch deck Reviews all entries, clicks submit, and confirms submission ## Using the Secure Browser Session When Maia needs to access a platform that requires authentication, it will prompt you to establish a secure browser session. ### Starting a Secure Session When your workflow needs access to a platform (like LinkedIn, your CRM, or accounting software), Maia will notify you that authentication is needed. Maia presents an interactive button that opens the website directly in Maia's secure browser. Simply click to navigate to the login page. Secure Browser Login Prompt Enter your credentials in the secure browser window, just as you would normally. Your login details are air-gapped from the AI system. Secure Browser Logged In Once logged in, the session is saved. You can close the browser window, and Maia can begin using this authenticated session to execute your workflow. When the workflow runs, Maia's browser picks up the session and continues from where you left off, already logged in and ready to work. You only need to log in once per platform. The session remains active until you manually log out from that platform yourself. ## Security & Privacy: Your Credentials Stay Safe Granting an AI access to your accounts requires trust. We built Maia's browser environment with a primary goal: absolute security for your login details. ### The Zero-Trust Approach In simple terms, "Zero Trust" means Maia is designed to treat everything, and everyone, as potentially insecure. This is the opposite of the old way, where once you were logged in, everything was trusted. **With Maia:** * Maia is trusted to do the work. * Maia is never trusted with your secrets (passwords). This core principle means your sensitive information is isolated from the AI processes. ### How Your Login Details Are Isolated (The Air-Gap) Think of your password and the AI as being separated by a solid wall, an "air gap." They can never touch. 1. **You Log In (Your Action)**: When a task requires authentication (like accessing your LinkedIn or your accounting portal), Maia will ask you to log in via a secure, private browser window. You type the credentials into the web page, just like you normally would. 2. **Your Credentials Never Reach Our Servers**: Your username and password are entered directly into the website you're logging into. They never pass through Maia's systems and are never stored anywhere on our servers. 3. **The Session Token (The Access Pass)**: Once you successfully log in, the website issues a session token and cookies, think of these as digitally "signed documents" that grant temporary access rights. These are the only things we store. 4. **Maia Works with the Access Pass**: When Maia runs a workflow, it uses these session tokens and cookies to access the website on your behalf. The AI agents enter the website already authenticated, ready to work, just like when you return to a website and find yourself still logged in. 5. **You Control the Access**: The session remains active until you manually log out from that platform yourself. When you log out, those "access passes" are revoked, and Maia can no longer access that account. **Crucial Guarantee**: The AI models that execute the workflow only see the screen content (the visual data, the dashboard, the reports). It is technically impossible for the AI to access or read your actual login credentials, as those credentials were never passed to the system in the first place. ### Ethical Use Maia's power comes with responsibility: * **Don't spam**: Automate outreach, but keep it reasonable * **Don't abuse**: Respect rate limits and fair use * **Don't violate privacy**: Only access data you're authorized to see * **Don't harm**: Avoid actions that could overload or harm websites Learn how Maia creates professional documents from research # Live Web Intelligence Source: https://docs.modularmind.app/capabilities/web-intelligence How Maia searches and gathers up-to-date information from the internet ## Live Web Intelligence (Search) Most AI models are limited by what they learned during their training, which might be months or even years old. Maia breaks these limits by connecting directly to the live internet. When you ask Maia a question that requires current knowledge, like "What is the latest news on AI regulations?" or "Find the current CEO of this company", it doesn't rely on memory. It performs a real-time investigation. ### Simultaneous Multi-Phrase Search A human researcher usually searches for one thing at a time: they type a query, scan the results, refine the query, and try again. This is slow and linear. Maia is a parallel thinker. It can generate and execute multiple search phrases simultaneously to gather a complete picture in seconds. **Example:** If you ask, "How does our product's pricing compare to our top 3 competitors?" * **Human approach:** Search Competitor A, write down price. Search Competitor B, write down price. Search Competitor C... * **Maia's approach:** Maia simultaneously launches searches for "Competitor A pricing", "Competitor B pricing", and "Competitor C pricing". It retrieves results from across the web instantly, filters for the most relevant snippets, and synthesizes the up-to-date information into a single clear answer. This ensures your automations are always powered by the freshest data available. ### Location & Maps Search Maia's intelligence also extends to the physical world. It can perform Maps searches to retrieve location-specific information. You don't need to do anything special to activate this, just ask a question in plain language. Whether you need to find nearby businesses, analyze region-based data, or understand the context of a specific place, Maia handles it automatically. **How it works:** If you ask Maia to "Find the top-rated Italian restaurants within walking distance of the convention center," it will research the area, analyze the relevant details (like ratings, distance, and hours), and return accurate, actionable insights just like it does with standard web search. Learn how Maia can actually use websites like a human # Website & App Generation Source: https://docs.modularmind.app/capabilities/website-app-generation Building single-page applications, dashboards, and landing pages instantly ## From Idea to Live Website Maia can build functional web applications and deploy them instantly — no server setup, no hosting headaches. Tell Maia what you need, and within minutes you'll have a **live, publicly accessible URL** to share. ## What Maia Can Build Product launches, marketing campaigns Data visualization, analytics, KPI monitoring Admin panels, forms, calculators, converters Interactive web applications with complex functionality Personal sites, project showcases, team pages Quick mockups for concept validation ## Technology Stack Maia builds modern, responsive web applications using: ### Frontend Technologies * **HTML5** - Semantic structure * **CSS3** - Modern styling and animations * **JavaScript** - Interactive functionality * **Responsive Design** - Mobile, tablet, desktop optimization ## Instant Hosting Every Maia-built website is: ✅ **Automatically hosted** - No server setup required\ ✅ **Publicly accessible** - Get a URL immediately\ ✅ **HTTPS secured** - SSL certificates included\ ✅ **Fast CDN delivery** - Global edge network\ ✅ **No maintenance** - Updates and scaling handled automatically ## Building Process ### Describe Your Vision ``` Create a landing page for my bakery with: - Hero section with our photo - Menu items with prices - Contact form - Google Maps embed of our location Use warm, inviting colors. ``` ``` Build a sales dashboard that: Layout: - Top row: 4 KPI cards (Revenue, Deals Closed, Pipeline, Conversion Rate) - Middle: Line chart showing monthly revenue trend - Bottom: Table of recent deals with columns for Client, Value, Stage, Owner Data Source: Pull from our CRM API (I'll provide endpoint) Styling: Corporate blue (#1E3A8A) with dark mode option Features: - Refresh button to reload data - Date range filter - Export to CSV button ``` ``` Build something like airbnb.com's homepage but for co-working spaces. Users should be able to: - See featured spaces with photos - Filter by city and amenities - Click to see details Don't need booking functionality yet, just the browsing experience. ``` ### Design Customization Maia offers three levels of design control: **How it works:** ``` "Create a modern dashboard with a professional look" ``` **Result:** Maia chooses colors, fonts, layout based on best practices **Best for:** Quick prototypes, internal tools, getting started fast **How it works:** ``` Colors: Blue (#1E3A8A) and white Font: Sans-serif, clean and modern Style: Minimalist with lots of whitespace ``` **Result:** Maia designs within your constraints **Best for:** Branded content, specific aesthetic preferences **How it works:** ``` "Use this exact CSS for the header: .header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 2rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } And implement this card component: [paste HTML code]" ``` **Result:** Maia incorporates your exact code **Best for:** Developers, precise visual requirements, reusing existing components ## Integration with Maia Workflows ### Apps That Trigger Workflows Build interfaces that launch your Maia automations: **Example:** ``` Create a dashboard with a button labeled "Generate Monthly Report" When clicked, trigger my "Monthly Report" workflow and display the PDF when it's ready. ``` **Result:** A simple UI that non-technical team members can use to run complex automations. ## Personalized Web Pages at Scale Maia excels at generating highly personalized, stylized web pages for your customers, leads, or stakeholders. Whether you need custom proposals, personalized reports, or tailored presentations, Maia can: * **Accept instructions and data** - Provide templates, brand guidelines, and recipient information * **Gather additional context** - Automatically research and incorporate relevant details * **Generate at scale** - Create hundreds of unique, personalized pages efficiently * **Deliver professional results** - Produce polished, shareable pages ready for distribution Each page can be customized with recipient-specific content, data visualizations, and styling that matches your brand identity — making every interaction feel personal and professional. See comprehensive examples of building websites, apps, and personalized pages with Maia: