Insights · Engineering desk

Insights That Shape
Better Systems.

We share what we learn while building scalable platforms, solving institutional problems, and designing systems that last.

Articles
3
Quick bits
12+
Resources
8 templates
Engineering work session
Design review
Featured · 8 min read
Why agentic workflows are quietly replacing RPA
Long-form articles on engineering, AI, and digital transformation
Articles

From the engineering desk.

Long-form pieces on engineering practice, AI strategy, and the institutions we build for.

AI Strategy Why agentic workflows are quietly replacing RPA
Apr 18, 2026 8 min read

Why agentic workflows are quietly replacing RPA

The hidden cost of legacy automation — and how LLM-mediated agents change the economics of back-office work.

Read more
Engineering Shipping EMR systems under DGDA compliance
Apr 02, 2026 12 min read

Shipping EMR systems under DGDA compliance

What we learned delivering a national-scale electronic medical record system across 40+ facilities.

Read more
Consulting The modernization trap: when not to replatform
Mar 19, 2026 6 min read

The modernization trap: when not to replatform

Sometimes the legacy system is fine. Three diagnostics we run before recommending a rebuild.

Read more
Quick bits

Fast notes from the lab.

Engineering snapshots, code experiments, deployment moments and architecture sketches. The unfiltered feed.

CCMS launch huddle, March 2026
Behind the scenes

CCMS launch huddle, March 2026

Engineering tip

We stopped using soft deletes

After a 3-month audit-trail rebuild, we moved every table to event-sourced state. Hard problem, but reconciliation got 4x faster.

Apr 22 · 2 min Read
Code · TypeScript
// idempotent retry with backoff
export async function retry<T>(fn: () => Promise<T>) {
  let attempt = 0;
  while (attempt < 5) {
    try { return await fn(); }
    catch (e) {
      await sleep(2 ** attempt * 100);
      attempt++;
    }
  }
}
Whiteboard: integration topology
Lab

Whiteboard: integration topology

Architecture

API-first is not microservices

We designed the consumer-rights platform as a modular monolith with hard internal boundaries. Same shipping cadence, half the ops cost.

Apr 14 · 3 min Read
Going live in 19 districts
Deploy day

Going live in 19 districts

Decision log

Why we picked Postgres over a graph DB

The relationships are deep but the query shapes are stable. Postgres + recursive CTEs has carried us through 4 platforms now.

Apr 08 · 2 min Read
Complaint triage workflow
UI fragment

Complaint triage workflow

Engineering review · Q1
Team

Engineering review · Q1

Field note

Government users do not trust toasts

Removed every transient notification on the CCMS dashboard. Replaced with persistent status rows. Support tickets dropped 38%.

Apr 03 · 2 min Read
Form pattern explorations
Design

Form pattern explorations

Quick bit

The 4-question RFP triage

Before we write a proposal, we answer four questions out loud. If we cannot, we politely decline. Saved us 60% of unscoped work.

Mar 28 · 1 min Read
Resources

Tools we use, shared.

Templates, frameworks, and reference documents pulled from real engagements, adapted for public release.

FrameworkInternal

Digital Transformation Roadmap Template

A structured framework used across institutional modernization projects: phasing, governance, KPIs, and rollback gates.

12 pages Updated Apr 2026
ToolkitInternal

Architecture Decision Record Pack

Battle-tested ADR templates we use on every engagement: context, options, consequences, and review cadence.

7 templates Markdown · Notion
PDFExternal

Government Workflow Sample Library

Anonymized workflow diagrams from public-sector engagements: complaint triage, license issuance, citizen onboarding.

28 workflows PDF · 4.2 MB
GuideInternal

System Planning Pre-Flight Checklist

The 47 questions we answer before writing a single line of code on a national-scale platform.

47 items 5 min read
WhitepaperExternal

Building Trust in Public Service Portals

Whitepaper on UX patterns that move citizen trust metrics, based on production data from three ministry platforms.

18 pages PDF · 2.1 MB
GuideInternal

Procurement Readiness Document

Compliance, security, and SLA reference document we provide to government and enterprise procurement teams.

Tender-ready Updated quarterly
FrameworkInternal

Legacy Integration Framework

Patterns for safely connecting to mainframes, SOAP services, and ministry-grade legacy systems without a rewrite.

6 patterns With code
ToolkitExternal

API Documentation Examples

Reference API docs from CCMS and selected platforms: schemas, auth flows, idempotency, and rate-limit headers.

3 platforms OpenAPI 3.1
Let's talk

Let's Build Something that Lasts.

Whether you're planning a platform, modernizing operations, or validating a product idea, we can help structure the right system.

What you get
  • 30-minute scoping call with a senior engineer
  • Honest read on feasibility, risk, and timeline
  • Reference architecture sketch, if helpful
  • Relevant case studies and precedents
  • No pitch deck, no obligation