Building ShouldWeAutomate: A Decision Intelligence Platform for Workflow Automation A developer built ShouldWeAutomate, an open-source decision intelligence platform that evaluates whether business processes are ready for AI automation. The single-page Flask application uses a deterministic scoring engine across seven dimensions—data quality, process stability, regulatory exposure, exception rates, integration readiness, decision complexity, and ROI potential—to produce a weighted score and recommendation tier ranging from "Do Not Automate" to "Agent Automation Ready." The platform includes optional LLM inference for workflow analysis, a gamified UX with radar visualizations and SVG gauges, and features such as what-if simulation, ROI calculation, and regulatory framework mapping. How we built an open-source platform that tells you whether your business process is ready for AI automation — with deterministic scoring, gamified UX, and optional LLM inference. Every week, someone asks: "Can we automate this workflow?" The answer is never simple. It depends on data quality, process stability, regulatory exposure, exception rates, integration readiness, decision complexity, and ROI potential — seven dimensions that interact in non-obvious ways. Most automation decisions are made on gut feel. Teams spend months building automation only to discover the process changes too frequently, the data is too messy, or the compliance team blocks it. We wanted to build a tool that makes this evaluation systematic, data-driven, and interactive — something a team can open in a browser, describe their workflow, and get a defensible answer in seconds. Single-page Flask application rendered server-side with Jinja2 templates. The frontend is vanilla JavaScript with Chart.js for the radar visualization and a custom SVG gauge for the overall score. Key design decisions: // Core rendering — dimension cards with aggregate + fine-tune function createDimSection key, dim, prefix { const aggDefault = Math.round dim.questions.reduce s, q = s + q.default, 0 / dim.questions.length ; const tier = getTier aggDefault ; // ... builds the HTML with aggregate slider + expandable sub-sliders } // Live preview — recompute overall on every slider change function updateLivePreview { const weights = 0.20, 0.20, 0.15, 0.15, 0.10, 0.10, 0.10 ; dimKeys.forEach key, i = total += getAggregateValue key weights i ; // Update gauge SVG dashoffset, tier badge, recommendation text } Flask acts as both the web server and the decision engine. The architecture follows a modular design: engine/ ├── scorer.py Dimension scoring logic, defaults, recommendations ├── analyzer.py Orchestrator — ties all modules together ├── explainer.py Score breakdown with pull-up/pull-down analysis ├── what if.py What-if simulation and sensitivity analysis ├── roi calculator.py Quantitative ROI with NPV, payback, FTE impact ├── remediation.py Remediation playbooks per dimension ├── regulations.py Regulatory framework mapping HIPAA, GDPR, SOX, etc. ├── similarity.py Benchmark similarity search ├── sub process.py Multi-process decomposition and aggregation └── llm.py OpenAI-compatible LLM gateway The core scoring logic in scorer.py defines 7 dimensions, each with 5 weighted sub-questions: SCORING DEFAULTS = { "data quality": { "label": "Data Quality", "weight": 0.20, "questions": {"id": "data completeness", "text": "How complete is your data?", ...}, {"id": "data consistency", "text": "How consistent is data format?", ...}, ... 5 questions per dimension , }, ... 6 more dimensions } The overall score is a weighted average. The recommendation tier is determined by thresholds inspired by Capability Maturity Model CMM levels: python def get recommendation overall score : if overall score < 30: return {"level": "DO NOT AUTOMATE", ...} elif overall score < 50: return {"level": "IMPROVE PROCESS FIRST", ...} elif overall score < 70: return {"level": "HUMAN-IN-THE-LOOP AI", ...} elif overall score < 85: return {"level": "AI ASSISTED AUTOMATION", ...} else: return {"level": "AGENT AUTOMATION READY", ...} The LLM integration in engine/llm.py is optional and modular. It follows the OpenAI chat completions format, making it compatible with LM Studio, Ollama, OpenAI, Anthropic, or any other provider. When enabled, the AI performs three tasks: python def infer workflow description, industry : user prompt = f"Industry: {industry}\n\nWorkflow Description:\n{description}" result = call llm SYSTEM WORKFLOW ANALYSIS, user prompt if result and "dimension scores" in result: Clamp scores to 0-100 and return scores = {k: max 0, min 100, int v for k, v in result "dimension scores" .items } return result return None The system prompt instructs the LLM to be skeptical and default to moderate scores unless the description strongly suggests otherwise — preventing over-optimistic AI outputs. The data/benchmark generator.py creates 600+ synthetic workflows across 10 industries with deliberately injected failure modes: FAILURE PROFILES = { "contradictory rules": "Business rules are contradictory across departments", "broken apis": "Legacy systems have no stable API endpoints", "regulatory churn": "Regulations change quarterly, invalidating logic", "data rot": "Historical data uses outdated schemas", "seasonal spikes": "Volume varies 10x between peak and off-peak", "fraud scenarios": "Fraud patterns evolve faster than detection rules", ... more failure modes } Each workflow gets randomized dimension scores, a metadata profile, and injected failure modes. The result is a realistic benchmark for similarity matching — when a user analyzes their workflow, we find the 5 most similar synthetic workflows. The original UI had 35 range sliders visible at once. Users found it overwhelming. We redesigned it with three principles: function getTier score { if score = 85 return { text: "Mythic", icon: "🏆", cls: "tier-excellent" }; if score = 70 return { text: "Gold", icon: "🥇", cls: "tier-good" }; if score = 50 return { text: "Silver", icon: "🥈", cls: "tier-moderate" }; if score = 30 return { text: "Bronze", icon: "🥉", cls: "tier-poor" }; return { text: "Critical", icon: "⛔", cls: "tier-critical" }; } AI auto-fill is now the default path. Users describe their workflow in a textarea, click "Auto-fill Scores," and the AI pre-fills all 35 sub-scores. Users can then fine-tune before analyzing. After analysis, users get a comprehensive dashboard with seven tabs: | Tab | Content | |---|---| Overview | Gauge, radar chart, risks, red flags, failure mode analysis, ROI, benchmark comparison, next steps | Explanation | Per-dimension breakdown with pull-up/pull-down factors and improvement tips | What-If | Sensitivity analysis + preset scenarios + custom sliders | Remediation | Phased action plans per dimension with effort estimates | Regulatory | Applicable regulations with governance penalties and audit requirements | AI Summary | Executive summary generated by LLM when enabled | Deterministic engines are underrated. The LLM is a nice-to-have, but the deterministic scoring engine handles 90% of use cases. It's fast ~1 second , predictable, and doesn't require users to set up external services. Gamification reduces friction. Users engaged more with tier badges and live preview than with a static form. The instant feedback loop makes the evaluation feel like a game rather than a survey. AI prefill is a trust cliff. When AI prefills scores, users trust it more if they can see and tweak every value. The fine-tune section is critical for building confidence. Synthetic benchmarks are surprisingly useful. Even though they're generated, they provide a reference frame. Users want to know how their scores compare to "similar" workflows. git clone https://github.com/harishkotra/ShouldWeAutomate.git cd ShouldWeAutomate pip install -r requirements.txt python app.py Code & more: https://www.dailybuild.xyz/project/148-should-we-automate https://www.dailybuild.xyz/project/148-should-we-automate