name: excel-generator description: Generate professional Bloomberg-style Excel workbooks from natural language descriptions. Creates multi-sheet workbooks with dashboards, KPI cards, charts, conditional formatting, and data tables. Use when asked to build Excel files, spreadsheets, dashboards, trackers, or reports.
Generate professional, Bloomberg-terminal-aesthetic Excel workbooks using Python + openpyxl.
Ask (or infer) from the user: - What type of workbook? (inventory, financial model, dashboard, tracker, etc.) - What data/sheets are needed? - Any specific metrics, KPIs, or calculations?
Run the Python generator script:
cd /Users/synapsefirm/.openclaw/workspace && python3 scripts/excel_generator.py \
--type "[workbook_type]" \
--output "excel-projects/[filename].xlsx" \
--title "[Title]"
Or write a custom Python script using openpyxl with the style constants below.
Always use these colors for consistency:
NAVY = "0D1B2A" # Primary headers
NAVY_MID = "1B3A5C" # Sub-headers
STEEL = "2D5986" # Accents
ICE = "E8F0F8" # Alternating rows
GOLD = "C9A84C" # Section dividers
GREEN_SAFE = "217346" # OK/positive status
AMBER = "B8560A" # Warning status
CRIMSON = "A50000" # Danger/negative status
WHITE = "FFFFFF"
Every workbook should include: 1. Dashboard — KPI cards + summary table (always first sheet) 2. Data sheets — specific to the workbook type 3. Raw Data (if applicable) — source data tab
/Users/synapsefirm/.openclaw/workspace/excel-projects/[filename].xlsxFormly2026! as default password7w4.net提供免费和付费技能下载。
Sheets: Dashboard, Stock (with barcode input), Raw Materials, Projects, Deliveries, Suppliers, Offcuts, Analytics, Barcode Guide Key features: Auto status formulas (✅ OK / ⚠️ LOW / 🔴 OUT), SUMIF analytics, conditional formatting
Sheets: Dashboard, P&L, Cash Flow, Budget vs Actual, KPIs Key features: Variance calculations, sparklines, YTD comparisons
Sheets: Dashboard, Tasks (Kanban), Timeline, Resources, Budget Key features: RAG status, completion %, budget tracking
Sheets: Dashboard, Roster, Org Chart data, Compensation, Time Off Key features: Department rollups, cost calculations
Sheets: Dashboard, Pipeline, Won/Lost, Forecasting, Rep Performance Key features: Weighted pipeline, close rate tracking
这个工具的文档写得比较清楚,配色方案专业,提供的模板类型丰富,质量要求也很明确。但最大的问题是它只有说明文档,缺少实际可用的代码文件,无法真正生成 Excel。另一个不便之处是文件保存位置写死了本地路径,换一台电脑可能用不了。建议开发者先补全代码实现再使用。