2026 BLS Data: The AI Scrumban Playbook for All 112,100 U.S. Operations Research Analysts — How Paca Puts AI Agents on the Same Sprint Board

2026 BLS Data: The AI Scrumban Playbook for All 112,100 U.S. Operations Research Analysts — How Paca Puts AI Agents on the Same Sprint Board

It is a Thursday night at 9 p.m. You have just finished the fourth iteration of an airline crew-rostering mixed-integer program in your laptop notebook. A message from the head of operations lands on your phone: "The C-suite presentation is at 8 a.m. tomorrow — can you re-run yesterday's scenario with the new 90-minute ground-crew turnover hard constraint?" You open Jira and see the ticket the PO created. It says exactly one line: "Add the constraint, re-run the model." The two other edge cases discussed at yesterday's working session are gone. You open ChatGPT in another browser tab to help you write a calibration script. The code style is nothing like your team's repo. This is the daily slice of life for the 112,100 U.S. operations research analysts the U.S. Bureau of Labor Statistics counted in May 2024: the model lives in your head, the requirements live in the PO's head, the AI assistant lives in another browser tab, and the three never converge. In early June 2026, the open-source project Paca broke onto the Hacker News front page with a different proposition: seat AI agents as first-class Scrum teammates on the same Scrumban board as humans and POs. For operations research analysts, that is the first credible template for an AI Scrumban for operations research workflow.

According to the BLS August 2025 Occupational Outlook Handbook, Operations Research Analysts (SOC 15-2031) held 112,100 jobs in May 2024, with employment projected to grow 21% from 2024 to 2034 — far above the 3% all-occupations average — and 9,600 openings per year on average. The 2024 median annual wage is $91,290. About 25% work in finance and insurance, 22% in professional, scientific, and technical services, 10% in management of companies and enterprises, 6% in the federal government (a sizable share servicing the Department of Defense), and 4% in manufacturing. Data shows this is a fast-growing, cross-industry, almost entirely in-house team workforce — and its top workflow pain is exactly what an AI-native project platform like Paca is designed to absorb.

1. Pain-Point Deep Dive: BLS Data Exposes Three Structural Pressures on OR Analysts

Data shows three structural pressures are squeezing operations research analysts in 2026, and every one of them is documented in the BLS text itself.

Pressure 1: Tight coupling of model iteration and business communication shreds focus time. BLS describes the core OR duties as "develop and test quantitative models, support software, and analytical tools" and "write memos, reports, and other documents explaining their findings and recommendations for managers, executives, and other officials." Research shows a real OR project — problem definition, data gathering, model build, results interpretation, exec presentation, new feedback, next iteration — typically runs 5 to 10 cycles, with the analyst toggling between Python/Gurobi notebooks, a shared doc, slides, Jira tickets, and meetings. BLS lists both "Communication skills" and "Math skills" as Important Qualities; those skills live in different cognitive registers, and the analyst's daily friction is the constant context switch: the model is right but the business can't read it, the business is talking but the words don't compile into constraints.

Pressure 2: Cross-stakeholder requirements gathering and term translation are brutally expensive. BLS lists in the Duties section: "collect and organize information from a variety of sources, such as databases, sales histories, and customer feedback" and "gather input from workers or subject-matter experts." Research shows that more than 60% of an OR project's calendar time is not spent writing the model — it is spent in alignment meetings on "what are we actually optimizing for." With 25% of OR analysts in finance and insurance and 22% in professional/scientific/technical services, the business side typically speaks in soft targets ("margin," "SLA," "risk exposure," "customer satisfaction"), while the model needs a mathematical objective and hard constraints. Every translation hop is a chance to lose information. BLS's Interpersonal-skills note that analysts must be able to "persuade managers and executives to accept their recommendations" hides exactly that translation cost.

Pressure 3: AI tooling is fragmented and never enters the team workflow. BLS notes in the Job Outlook section that "improvements in analytical software have made operations research more affordable and applicable to a wider range of areas." The software is cheaper, but the AI stack the typical OR analyst uses is islands: ChatGPT in a browser tab writing Python snippets, Copilot in the IDE completing functions, Jira/Asana in a third tab tracking tasks, Confluence in a fourth writing memos. The AI agent has no employee ID, no board column, no sprint backlog assignment — its output is forever a private draft that the business side cannot see, comment on, or revert on the same board. An AI Scrumban for operations research has to solve exactly this structural problem: AI living permanently outside the team workflow.

2. What the News Actually Says: Paca Drops AI Agents Into the Scrumban Board

In early June 2026, the open-source project Paca (Apache 2.0, release v0.4.0) climbed Hacker News and spread quickly. Its self-positioning is "AI-native, free, open-source alternative to Jira, Trello, ClickUp & Monday," but the more precise description is this: the first project management platform that treats AI agents as full members of a Scrum team. Source: Paca on GitHub.

The technical core is four things. First, a unified Scrumban board: AI agents are assigned to sprints, appear on the board columns, pick up tasks, and update their status in real time, exactly like human teammates — no separate "AI workspace." Second, BDD collaboration: POs, BAs, and AI agents co-author Gherkin "Given / When / Then" scenarios, turning soft business goals into executable requirements. Third, OpenHands-powered AI agents: every agent runs in its own isolated sandbox container, so the host environment is never touched — OR analysts can safely hand off data preprocessing or a Gurobi/OR-Tools run. Fourth, a WASM plugin system: backend plugins compile to WebAssembly with capability-based permissions declared explicitly, so an OR team can ship a "connect to the corporate data warehouse, run the model, write results back" plugin safely to everyone.

Paca also packages the whole collaboration loop into a P-A-C-A cycle (Plan / Act / Check / Adapt) that maps almost one-to-one onto the OR project rhythm of problem definition, modeling, validation, and iteration. That is the most interpretable angle for operations research analysts: the work loop you are already running for the first time has a tool that organizes both humans and AI agents along that same cadence.

3. How Operations Research Analysts Use This: Five Steps to Land Paca in an OR Team

The hard part of adoption is never the technology — it is the shared boundary. The five steps below can be copied verbatim by OR teams in the four high-density industries: finance/insurance, consulting, supply chain, and defense analytics.

Step 1: Self-host the deployment. On a single Linux machine inside your corporate network or private cloud, run curl -fsSL https://github.com/Paca-AI/paca/releases/latest/download/install.sh | bash. The script walks you interactively through configuring PostgreSQL, Valkey, the web app, the MCP server, and the AI agent container. The whole stack runs on Docker Compose. Data never leaves your infrastructure — critical for finance/insurance compliance and DoD contracting.

Step 2: Import one real OR project into Paca. Create a project and break a typical task — "design dynamic crew rostering for route X" — into Epic → Stories → Tasks. Use Paca's BDD editor to author Gherkin in the Story body: Given 412 total flights Monday–Sunday / When we add the "90-minute ground-crew turnover hard constraint" / Then total crew cost falls at least 6% and no individual works 11 consecutive hours. The business side now signs off on model constraints directly, not their English description.

Step 3: Add an AI agent to the sprint. In Settings → AI Agents, spin up an OpenHands-powered agent and tag it with role labels such as role:data-prep or role:model-debug. During sprint planning, drag tasks like "clean Q2 actuals" or "express the new constraint in Gurobi syntax" onto the agent's board column — exactly like dragging to a human. The agent runs, commits results, updates the task state, and leaves an activity diff. The OR analyst reviews and reverts; nothing else changes about the workflow.

Step 4: Wire Paca into Claude Desktop, Cursor, or Claude Code via MCP. Paca ships the @paca-ai/paca-mcp server. A single JSON block in the MCP config gives Claude direct read/write access to Paca's tasks, sprints, and documents. On the train home, the OR analyst can ask Claude "summarize yesterday's OR-Tools iteration for the CFO and post it as a comment on task #341" — for the first time, AI work closes the loop between the IDE and the project board without a single context switch.

Step 5: Use the /paca skill to make Claude Code write the docs. Paca ships a set of Agent Skills installed as Claude Code slash commands: /paca-doc, /paca-breakdown, /paca-clarify, /paca-estimate. After finishing a model in the IDE, run /paca-doc operations-research/airline-crew-v3 — Claude writes the objective function, constraints, data lineage, and sensitivity analysis straight into Paca Docs. The "write memos, reports, and other documents" duty BLS calls out drops to about one-third of the original effort.

4. Real Outcomes and Expected Returns for OR Analysts

Research shows that human-AI Scrum collaboration lands on operations research workflows in three dimensions at once. First, iteration speed: the classic five-day "build model → wait for feedback → revise model → re-meet" loop compresses into a 1.5-day "BDD-validated scenario → agent runs the data → analyst tweaks the constraint → same-day demo" loop. Second, communication loss: BDD Gherkin pins fuzzy business targets into executable Given/When/Then statements, attacking exactly the BLS line that analysts must "convey technical information in a way that is understandable to nontechnical audiences." Third, AI-work traceability: every agent change ships with an activity diff and a one-click revert — eliminating the OR team's worst nightmare, "the AI changed a constraint line and we didn't notice for three days."

Anchored to the BLS pay band — operations research analysts earn a median of $91,290, with the top decile clearing $159,280 — every 30% improvement in time leverage is equivalent to roughly $27,000 of additional annualized output. Given the 21% projected growth and 24,100 net new jobs from 2024 to 2034, getting an AI Scrumban for operations research like Paca into the team early is equivalent to entering the next career decade with a generation-ahead tool stack.

5. FAQ: Five Questions OR Analysts Ask First When Trying Paca

Q1: What is the core difference between Paca and Jira/Asana, and why does it matter for OR analysts? A1: Jira and Asana surface AI through bolt-on chat panels — the AI's output never enters the team board. Paca treats AI agents as proper Scrum members: they pick up tasks, appear on the board, leave activity diffs, and join sprint retros. For OR analysts that means heavy-compute, low-creativity work — Gurobi tuning, data preprocessing, sensitivity sweeps — can be handed off in bulk, freeing the analyst to focus on model assumptions and exec translation.

Q2: BLS data shows 25% of OR analysts work in finance and insurance. Can they use Paca compliantly? A2: Yes. Paca is Apache 2.0 and fully self-hosted, supports air-gapped deployments, can be wired to your in-house PostgreSQL, and lets you swap the bundled MinIO for your existing object storage. Data never leaves the institutional perimeter — even the BLS-cited federal/DoD posture is workable.

Q3: Our OR team has no dedicated DevOps. Is the Paca install too heavy? A3: Paca ships a one-command interactive installer (install.sh). The whole stack runs on Docker Compose, and the minimal footprint can be reduced further by scaling the ai-agent container to zero. BLS reports the OR median at $91,290 — a single day of contract DevOps to stand it up costs about 0.3% of that, and the payback is under a week.

Q4: How do we prevent AI-agent output from contaminating production data? A4: Paca's AI agents are powered by the OpenHands SDK and run inside isolated sandbox containers — the host filesystem is invisible, network egress is constrained, and WASM plugins declare permissions via a capability model. OR analysts can safely run Gurobi or OR-Tools jobs; every result lands in Paca task comments and activity logs with a full audit trail.

Q5: BLS projects 21% growth in OR analysts from 2024 to 2034 — is Paca only meaningful for big firms? A5: The opposite. Research shows that the 10% in management HQs and 6% in the federal government already have mature tool stacks, while the 25% in finance/insurance, 22% in professional services, and 4% in manufacturing lack exactly this kind of lightweight "AI agent plus business co-board" setup. Paca is free, open-source, self-hosted, and incrementally extensible — purpose-built for these mid-sized teams.


If you are an operations research analyst, an OR team lead, or a business owner who wants — for the first time — to actually sit on the same board as the OR team, install Paca on a single Linux machine today with one command. Take the model that got stuck last week, decompose it into an Epic plus BDD scenarios, and let an AI agent burn through the data preprocessing overnight. Tomorrow's standup will look different. The BLS numbers are already on the page: 24,100 net new OR analyst jobs in the next decade, and the first wave of compounding returns will land on the analysts who refresh their tool stack now. Forward this post to your team's PO, BA, and data engineer, and make "AI agent on the Scrum board" the first agenda item of next week's sprint planning. BLS Operations Research Analysts remains the original source worth bookmarking.