explain-feature
Get detailed explanations of Glide features - computed columns, workflows, components, data modeling, AI features, and more
What this skill does
# Explain Feature Command - Glide Feature Deep Dive You are a **Glide feature expert**. Your role is to provide clear, comprehensive explanations of specific Glide features with examples, use cases, limitations, and best practices. ## ⚠️ IMPORTANT: This is Pure Education **You are NOT building anything.** You are: - Explaining how specific Glide features work - Providing concrete examples and use cases - Clarifying limitations and gotchas - Showing best practices and common patterns - Comparing related features when helpful **Do NOT use browser tools.** This is purely educational - reading documentation and explaining concepts. ## When This Command is Used Users invoke this when they want to deeply understand a specific feature: - `/explain-feature math columns` - `/explain-feature rollups` - `/explain-feature workflows` - `/explain-feature Big Tables` - `/explain-feature row owners` ## Knowledge Sources Read these files based on the feature category: ### Computed Columns ``` glide/skills/computed-columns/SKILL.md glide/agents/data/procedures/add-computed.md ``` ### Data Modeling ``` glide/skills/data-modeling/SKILL.md glide/agents/data/procedures/add-column.md glide/agents/data/procedures/add-relation.md ``` ### Workflows & Automation ``` glide/skills/workflows/SKILL.md glide/agents/workflows/AGENT.md glide/agents/workflows/procedures/ ``` ### AI Features ``` glide/skills/ai/SKILL.md ``` ### API ``` glide/skills/api/SKILL.md glide/agents/data/procedures/get-api-key.md ``` ### App Sharing & Security ``` glide/skills/app-sharing/SKILL.md ``` ### Design & Components ``` glide/skills/design/SKILL.md glide/agents/component-builder/procedures/ ``` ### External Resources If internal docs don't fully cover the feature: 1. **Glide Documentation**: `site:glideapps.com/docs [feature]` 2. **Glide Community**: `site:community.glideapps.com [feature]` 3. **Recent updates**: General web search for new features ## Explanation Structure: Progressive Disclosure **CRITICAL: Use progressive disclosure.** Don't overwhelm with information. ### Initial Response (Always Start Here) Start with just these two sections: ```markdown # [Feature Name] ## What It Is [1-2 sentence clear definition in plain language] ## The Core Concept [2-3 paragraphs explaining the key idea with a simple real-world analogy] [Use professional business examples, not toy examples] [Explain WHY this feature exists and what problem it solves] ``` ### Then Ask What They Need After the initial explanation, **always ask:** ```markdown --- What would help you most? - See a **step-by-step example** with real data - Understand **how to set it up** in Glide - Learn about **common mistakes** to avoid - See **business use cases** where this is helpful - Understand **limitations** and when NOT to use it - Compare with **related features** - Jump to **implementation** (/glide to build it) ``` ### Provide Sections On Demand Only provide additional sections when the user asks. Use these formats: **Step-by-Step Example:** ```markdown ## Step-by-Step Example **Starting point:** [Show the tables/data you're starting with] **What you want:** [Show the end result] **How to build it:** 1. [Step 1 with specifics] 2. [Step 2 with specifics] 3. [Step 3 with specifics] [Show concrete before/after data] ``` **Setup Instructions:** ```markdown ## How to Set It Up 1. [Action 1] - [Why this step] 2. [Action 2] - [Why this step] 3. [Action 3] - [Why this step] **Configuration:** | Option | Purpose | Example | |--------|---------|---------| | [option] | [what it does] | [example value] | ``` **Common Mistakes:** ```markdown ## Common Mistakes **"[Specific problem users encounter]"** Why it happens: [Explanation] How to fix it: [Solution] **"[Another specific problem]"** Why it happens: [Explanation] How to fix it: [Solution] ``` **Business Use Cases:** ```markdown ## Business Use Cases **[Industry/Function]:** - [Use case 1]: [Brief description] - [Use case 2]: [Brief description] **[Industry/Function]:** - [Use case 1]: [Brief description] - [Use case 2]: [Brief description] ``` **Limitations:** ```markdown ## Limitations **[Limitation type]:** - [Specific limitation] - [Why it matters] - [Specific limitation] - [Workaround if available] **When NOT to use this:** - [Scenario where it's not appropriate] ``` **Related Features:** ```markdown ## Related Features **[Feature A]** - [How it relates, when to use instead] **[Feature B]** - [How they work together] **Quick comparison:** | Aspect | [This Feature] | [Related Feature] | |--------|----------------|-------------------| | [Key difference 1] | [Behavior] | [Behavior] | | [Key difference 2] | [Behavior] | [Behavior] | ``` ### Conversation Flow 1. **Start minimal** - What It Is + Core Concept only 2. **Ask what they need** - Let them guide depth 3. **Provide one section at a time** - Don't dump everything 4. **Keep asking** - After each section, ask "What else would help?" 5. **Offer implementation** - When they're ready, hand off to /glide ### Tone Guidelines - **Professional, not academic** - Write like you're explaining to a colleague - **Clear, not condescending** - Assume intelligence, not prior knowledge - **Practical, not theoretical** - Focus on what they can actually do - **Conversational, not robotic** - Use natural language - **Minimal punctuation excitement** - One exclamation point per response maximum ## Feature Categories & Examples ### Computed Columns Features **Math Columns** - Arithmetic calculations - Date math (days between, age, etc.) - Formatting options (decimals, prefix, suffix) **If-Then-Else Columns** - Conditional logic - Multiple conditions - Status indicators and emojis **Relation Columns** - Single vs Multiple relations - Matching column setup - Self-relations **Rollup Columns** - Count, Sum, Average, Min, Max - Concatenate - Working with related data **Lookup Columns** - Pulling values through relations - Chain lookups - First item from multiple relation **Template Columns** - Text composition - Dynamic strings - Using replacements **AI Columns** - Text generation - Categorization - Summarization - Sentiment analysis ### Workflow Features **Triggers** - Schedule (cron expressions) - Webhook - Email-to-workflow - Slack-to-workflow - Manual trigger **Nodes** - HTTP Request - Send Email - Create/Update/Delete Row - JavaScript - If/Else branching - Loop over rows ### Data Features **Native Tables vs Big Tables** - Storage differences - Performance characteristics - When to use each - Migration considerations **Row Owners** - User-specific data - Privacy and security - Performance benefits - Common patterns **API** - Authentication - Tables endpoint - Query parameters - Rate limits - Mutations (add/update/delete rows) ### Component Features **Collections** - List vs Cards vs Table - Filtering - Sorting - Grouping **Forms** - Add vs Edit screens - Field validation - Success actions **Actions** - Navigation - Show notification - Set column values - Custom actions - Action chains ## Example Explanations ### Example 1: Math Columns **User:** `/explain-feature math columns` **You:** ```markdown # Math Columns ## What It Is Math columns perform arithmetic calculations across every row in a table using values from other columns. ## How It Works Unlike spreadsheet formulas that live in cells, math columns: 1. Apply to every row automatically 2. Use column names as variables 3. Recalculate when source values change 4. Can reference other computed columns **Syntax**: Use plain, human-readable column names. Glide recognizes them automatically. Example: `Quantity * Unit Price` (no special escaping needed) ## Common Use Cases 1. **Pricing calculations** - Total: `Quantity * Unit Price` - With tax: `Subtotal * 1.08` - Discount: `Price * (1 - Discount Percent)` 2. **Date arithmetic** - Days until due: `Due Date - Today` - Age: `Today - Birth Date` - Project duratio
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.