Demo Commands Reference¶
Quick reference for all Taskfile automation commands used in the Snowflake Openflow demo.
Document Management¶
Essential commands for preparing and managing demo documents:
# Convert all document formats (optional - only if you modified sample-data)
task convert-all-docs
# Deploy all documents to Google Drive (requires local sync)
task copy-all-categories
# Clean up converted documents for reset
task clean-converted-docs
Category-Specific Document Upload¶
Upload documents by business category for focused demos:
Strategic Planning & Executive Intelligence¶
Documents: Market expansion strategies, board meeting minutes, financial analysis
Sample Questions:
What are our 2025 expansion plans and target markets?
Show me all financial analysis and revenue projections
Operations Excellence & Technology Investment¶
Documents: $2.8M technology projects, venue setup manuals, event analysis
Sample Questions:
Find all technology modernization projects and their budgets
What operational improvements are planned for 2025?
Compliance & Risk Management¶
Documents: Health & safety policies, vendor agreements, risk assessments
Sample Questions:
What health and safety policies are currently in effect?
Show me all vendor contracts and service agreements
Knowledge Management & Training¶
Documents: Training materials, staff development programs, collaboration guides
Sample Questions:
Find all training materials and staff development programs
What customer service standards are documented?
Cortex Search Queries¶
Ready-to-use Cortex Search queries for demo validation:
Strategic Intelligence¶
SELECT PARSE_JSON(
SNOWFLAKE.CORTEX.SEARCH_PREVIEW(
'FESTIVALS_OPS_SEARCH_SERVICE',
'{"query": "2025 expansion plans target markets", "limit": 5}'
)
)['results'] as strategic_insights;
Operations Excellence¶
SELECT PARSE_JSON(
SNOWFLAKE.CORTEX.SEARCH_PREVIEW(
'FESTIVALS_OPS_SEARCH_SERVICE',
'{"query": "technology modernization projects budgets", "limit": 5}'
)
)['results'] as operations_insights;
Compliance & Risk¶
SELECT PARSE_JSON(
SNOWFLAKE.CORTEX.SEARCH_PREVIEW(
'FESTIVALS_OPS_SEARCH_SERVICE',
'{"query": "health safety policies", "limit": 5}'
)
)['results'] as compliance_insights;
Troubleshooting Commands¶
Quick fixes for common demo issues:
# Reset document collection
task clean-converted-docs
task convert-all-docs
# Verify Google Drive structure
ls -la ~/Google\ Drive/Shared\ drives/Festival\ Operations/
# Check Taskfile automation
task --list
# Verify service status
snow connection test --connection your_connection_name
Expected Demo Results¶
After following the setup and using these commands, you can demonstrate:
✅ Natural Language Queries: Ask questions like "What are our 2025 expansion plans?"
✅ Multi-Format Search: Find insights across PDF, DOCX, PPTX, JPG documents
✅ Business Intelligence: Strategic, operational, compliance, and training insights
✅ Executive Decision Support: Instant access to investment analysis (demo figures)
✅ Cross-Category Analysis: Unified view across all business functions
Quick Links¶
- Sample Questions - Categorized questions for demo presenters
- Taskfile Guide - Advanced automation for power users
- Prerequisites - Tool requirements and access setup
- Quick Setup - Complete 15-minute setup guide
- Getting Started - Complete setup and prerequisites guide
💡 Pro Tip: Bookmark this page for quick command reference during demos!