Building real AI capability in regional businesses β not workshops, not theory, not hype.
A working repository β methodology, tools, and source β by Filip Szalewicz at solidcage.com. The thesis: rate of improvement is everything.
| You are a... | Start here |
|---|---|
| Fellow (technical implementor) | Fellows Curriculum β |
| Business (pilot participant) | Business Track β |
| Velocity / Partner | Cohort Zero Overview β |
| Contributor / Community | Contributing Guide β |
| Curious about the methodology | Rate of Improvement β |
| Operator with a metric to bend | Live Tracker β (no login, browser-only) |
Most AI initiatives in regional markets stop at workshops and training. They produce slides, not outcomes. Local businesses hear about AI everywhere but have no clear path to embed it into their operations in a way that moves the needle.
Macomb County and SE Michigan don't have a Silicon Valley pipeline. What they have is a dense fabric of industrial, service, and growth-stage businesses that would benefit enormously from operational AI β if someone actually built it with them.
Rate of Improvement is everything.
Whatever use case we build with AI for any business β in any function β we measure the metric the business already cares about. The rate of improvement on that metric should accelerate rapidly at first, then taper and stabilize. As long as that curve holds, what we built is making a massive, compounding impact.
This repo exists to prove that thesis and give others the tools to replicate it.
Operational Intelligence Lab is an open playbook for deploying AI inside real businesses to improve real metrics. It contains:
- π Dual-track curriculum β one for implementation Fellows, one for participating businesses
- π§ͺ Core methodology β the Rate of Improvement framework, ROI modeling, and the OI operating model
- π€ Prompts & skills library β reusable, agent-ready prompts for business analysis, workflow design, and measurement
- π Templates β intake questionnaires, progress reports, case studies, ROI reports
- ποΈ Program operations β Cohort Zero structure, financials, timeline, ecosystem design
- π Live tooling β the public Rate-of-Improvement Tracker (source in
tracker/)
The thesis in 60 seconds:
The only honest measure of AI value is whether the operator's chosen business metric is improving, and at what rate.
Not the model's metric. The operator's. And not "did it improve once" β at what rate is it improving, week over week, and is that rate accelerating, stable, tapering, or stalled?
Everything in this repo serves that thesis:
- The rate-of-improvement skill describes the math (slope, half-window comparison, classification thresholds).
- The ROI modeling skill describes how to translate a rate-of-improvement curve into a defensible dollar number for a budget meeting.
- The AI-employee model skill describes how to think about AI as a capacity-add β an "employee" with a job description, an onboarding plan, and a performance review β rather than a tool to be installed.
- The tracker makes it operational. Pick a metric. Log it weekly. Read the curve.
graph TD
A["π§ Filip Szalewicz<br/>Architect & Methodology Owner"]
B["π Velocity<br/>Ecosystem Partner & Host"]
C["π· AI Implementation Fellows"]
D1["π’ Pilot Business 1"]
D2["π’ Pilot Business 2"]
D3["π’ Pilot Business 3"]
D4["π’ Pilot Business 4"]
E["π Case Studies & ROI Data"]
F["π Future Cohorts & Regional Growth"]
A -->|"Trains & Oversees"| C
B -->|"Hosts & Amplifies"| C
C -->|"Implements AI Workflows"| D1
C -->|"Implements AI Workflows"| D2
C -->|"Implements AI Workflows"| D3
C -->|"Implements AI Workflows"| D4
D1 -->|"Produces"| E
D2 -->|"Produces"| E
D3 -->|"Produces"| E
D4 -->|"Produces"| E
E -->|"Fuels"| F
F -->|"Feeds Next"| A
style A fill:#1a1a2e,stroke:#e94560,color:#fff
style B fill:#16213e,stroke:#0f3460,color:#fff
style C fill:#0f3460,stroke:#e94560,color:#fff
style D1 fill:#533483,stroke:#e94560,color:#fff
style D2 fill:#533483,stroke:#e94560,color:#fff
style D3 fill:#533483,stroke:#e94560,color:#fff
style D4 fill:#533483,stroke:#e94560,color:#fff
style E fill:#e94560,stroke:#1a1a2e,color:#fff
style F fill:#0f3460,stroke:#e94560,color:#fff
| Path | Purpose |
|---|---|
curriculum/fellows/ |
12-week Fellow training track (6 modules: AI systems architecture, opportunity modeling, deployment sprint 1, measurement & optimization, deployment sprint 2, executive reporting). |
curriculum/businesses/ |
Business participant track (4 phases: discovery audit, use-case selection, implementation, measurement & scaling). |
program/ |
Cohort Zero operations β overview, timeline, financial structure, ecosystem diagram, pitch. |
docs/methodology/ |
Core frameworks β rate of improvement, OI framework, ROI modeling. |
prompts/ |
Reusable AI prompts (business analysis, implementation, measurement). |
skills/ |
Agent skill definitions (business data analysis, outcome probability, use-case scoring). |
templates/ |
Reusable document templates (intake questionnaire, weekly progress report, case study, ROI report). |
presentations/ |
Slide decks and pitch materials. |
tracker/ |
React + Vite source for the live Rate-of-Improvement Tracker (mirror of artifacts/oi-tracker/). |
AGENTS.md |
Top-level operating instructions for any AI agent (Claude, Codex, Devin, internal) working in this repo. |
CLAUDE.md |
Claude-specific shortcuts, redirecting to AGENTS.md. |
CONTEXT.md |
The "why" β the thesis, the audience, the brand promise. |
.agents/skills/ |
Reusable skills (markdown SOPs) for the three core ideas: rate-of-improvement, ROI modeling, the AI-employee model. |
.agents/workflows/ |
Step-by-step playbooks: evaluating AI impact on a metric, onboarding a new operator cohort. |
CONTRIBUTING.md |
How to contribute. |
A free, no-login, browser-only tool. The data lives in localStorage. The
share link lives in the URL.
Live demo: <DEPLOY_URL>/oi-tracker/ (Replit Deployment β replace <DEPLOY_URL> with the live *.replit.app host from the project's Publishing tool, or a configured custom domain such as apps.solidcage.com). The OI Tracker ships alongside the Digital Twin Factory Demo Portal at <DEPLOY_URL>/twin-portal/ and the Agent ROI Generator at <DEPLOY_URL>/agent-roi-generator/.
- Define a metric: name, baseline, target, direction (higher- or lower-is-better), cadence.
- Log a value on the cadence β past dates accepted, late check-ins won't corrupt the curve.
- Read the dashboard:
- Cumulative value plotted with target + baseline reference lines.
- Period-over-period rate of change as a secondary axis.
- % to target, trailing slope (linear regression over last 4 check-ins, in units/day), projected completion date, and a trajectory label: Accelerating / Stable / Tapering / Stalled / Need more data.
- Copy a shareable URL β the entire state is encoded into the URL via base64-url + pako gzip. No backend involved.
- React + Vite, TypeScript strict.
- shadcn/ui components, Tailwind v4, brand-matched (
#F4F1EC/#0E1320/#EB6928/#387CBD, Inter + JetBrains Mono). - Recharts for the dual-series curve.
- All math in
tracker/src/lib/calc.ts. All state I/O intracker/src/lib/storage.ts. All sharing intracker/src/lib/share-link.ts. - 34 vitest unit tests covering slope, classification, projection, and encode/decode round-trips.
cd tracker
pnpm install
pnpm run devOpen the URL printed by Vite. To run the tests:
pnpm run testTo typecheck:
pnpm run typecheckCONTEXT.mdβ why this project exists, what voice it speaks in.AGENTS.mdβ the operating contract for anyone making changes..agents/skills/rate-of-improvement/SKILL.mdβ the math..agents/skills/roi-modeling/SKILL.mdβ how to translate that math into a budget conversation..agents/skills/ai-employee-model/SKILL.mdβ how to think about capacity, not features..agents/workflows/evaluate-ai-impact.mdβ the SOP for an evaluation engagement..agents/workflows/cohort-onboarding.mdβ the SOP for onboarding a new operator into the OI Lab cohort.tracker/src/lib/calc.tsβ the source of truth for the math.
This initiative exists to raise the floor for an entire region. Open-sourcing the playbook means:
- Transparency β Businesses and Fellows see exactly what they're signing up for.
- Replicability β Other regions can fork and adapt.
- Community β The best ideas will come from practitioners in the field.
- Accountability β Public case studies and ROI data keep us honest.
Cohort Zero is the pilot: 2 Fellows, 4 businesses, 12 weeks. Tight, focused, measurable.
If it works, we scale. If not, we refine. Either way, we learn in public.
Read the full Cohort Zero spec β
If your team needs help bending the curve β defining the right metric, running the evaluation, picking the first AI capacity to add β that's what the Operational Intelligence Lab does.
Filip Szalewicz β Architect & Methodology Owner
- π§ filip.szalewicz@solidcage.com
- π solidcage.com
- π Book a call
β solidcage.com β start your AI improvement journey.
The tracker source is published as-is for inspection and learning. The methodology is an operating practice, not a product β copy what's useful, attribute what's borrowed.
Built in Macomb County, MI. For the region. For any region.