posts

23 posts · since 2023 · rss · llms.txt

Filter by tag

2026

8 posts
2026-05-07 Thinking The Agent-Ready Manifesto 9 min There are two kinds of company being built under the 'AI-first' banner. One bolts model calls onto the existing product. The other treats AI as a forcing function to redesign the company so a software agent can do real work, under the same constraints, permissions, and accountability as a human teammate. This is the manifesto for the second kind. aithesis 2026-05-07 Thinking Every Open Shift 10 min Healthcare staffing has spent a decade arguing whether it's a relationship business or a quantifiable one. Every services-heavy industry has had this argument, and they've all resolved it the same way: the relationship layer moves out of the broker and into the infrastructure. This is the operating system we've spent nearly a decade building, and how AI is accelerating the head start. 2026-04-22 Building Speed matters: from job posting to submitted candidate in 10 minutes 12 min Submission speed in travel nursing usually gets framed as one number. It isn't. Three clocks run at once, each gated by a different bottleneck. The pipeline itself now runs under ten minutes for a pre-qualified clinician on Auto Apply, and the population median still reads in days. Here's why both are true. marketplace 2026-04-08 Building Auto-curation: agents that fill out forms 11 min Job curation used to be a queue of humans normalizing raw VMS snapshots into postable shifts. Now it's four specialized agents filling out the same form a human would, hitting the same validations, with a feedback loop that keeps them honest in production. Cost is around thirteen cents per curated job. marketplaceai 2026-03-31 Building Scrubs: built for the frontier 13 min We gave a small team thirty days to rebuild Trusted's core clinician journey from an empty repo, with one architectural rule: assume the models keep getting better, and build for that. Here are the five choices that came out of it: what we'd do again, what shifts when most of the code is written by AI, and what stays the same. marketplaceAI 2026-03-18 Sharing IronTrail: catching every write 13 min There's a class of Rails bug where a record changed and paper_trail saw nothing: an `update_columns` bypass, a console fix at 2am, an agent issuing raw SQL. IronTrail does change capture at the Postgres trigger layer instead of the ActiveRecord callback layer, so the audit catches every write. MIT licensed, on RubyGems, running in production at Trusted for over a year. open sourceruby on rails 2026-02-25 Building Auto-Apply: What worked, and what didn't 11 min Auto-Apply inverts clinical job search: the clinician opts in once, and the system applies to matching shifts on a preference profile. It took a manual spreadsheet pilot and four product iterations before it was safe to leave on. Every guardrail traces back to a specific failure in production. The deeper lesson: an opt-in preference is a weaker intent signal than a per-job tap. marketplaceretro 2026-02-18 Building Mission Control: the command center for VMS program managers 8 min VMS program managers have been running their work out of spreadsheets, Slack threads, and email chains. None of those screens were designed for the job. Mission Control is the surface we built around their actual unit of work (the program), backed by an integration-status dashboard and in-product messages that keep the live state of every connection visible. vmsworks

2025

7 posts
2025-12-02 Building Integrating with UKG: caches, credentials, and worker sync at hospital scale 8 min UKG is the HR and timekeeping backbone for many large hospital systems, which means integrating with it is less of a vendor connection and more of a sustained engineering project. This is the multi-read cache that took ~67,000 redundant API calls a day off our floor, the mTLS credential management per environment, and the worker-sync pipeline that handles the messy parts. worksopen shift 2025-10-29 Building From form to conversation: rebuilding clinician validations as chat 8 min Onboarding used to be a twelve-page form that asked humans to fit their lives into our schema. We rebuilt the validation flow as a chat that drives the same structured form underneath, then extended the pattern to an agent that greets stalled signups already knowing who they are. marketplaceai 2025-10-22 Building Megazord: rebuilding shift ingestion for Works 8 min Shift ingestion is the hot path under every decision Works makes: pricing, balancing, fill-rate analytics, dashboards. Megazord is the rewrite that decoupled ingestion from query, normalized demand into 15-minute blocks, and made a year of fill-rate data queryable in sub-250ms. This post is the design and what it unlocked. worksopen shift 2025-09-30 Building Automatic Qualifications: Keeping Humans in the Loop 10 min Qualifying a clinician against a job used to be an advocate reading prose requirements in one tab and clicking through credential tabs in another. We rebuilt the layer. Every requirement is a typed JobRule, every credential is structured data, and an AI layer at temperature 0.0 handles the ambiguous cases, with a human feedback record captured on every execution. marketplaceAI 2025-09-23 Building Nursys in production: real-time RN license verification at scale 9 min Our first Nursys integration shipped in 2018 as a one-time upfront call. For seven years a back-office team still read the results, pasted screenshots, and re-checked on a slow clock. In August 2025 we made verification a real-time rule inside the submission pipeline: compact-license logic across 40 NLC states as a graph, structured disciplinary handling, and a Trusted-branded Quick Confirm report. marketplace 2025-09-09 Building Hard constraints, soft preferences: the load balancer for clinical schedules 8 min A nurse manager runs eight hundred constraint checks in her head between 6 and 7 AM every Tuesday. That's the work we're replacing: not her judgment, the mechanical part. This is how we wrapped a constraint solver in a pipeline she can trust: the constraint model, the run loop, the worker-sync prerequisite, and what gets handed back as output. worksaiopen shift 2025-07-23 Building Premium pay tied to commitment: the FTE attainment model 8 min Flat shift bonuses pay everyone the same premium for the same hard shift, whether they're a core nurse covering for the unit or a per-diem chasing the highest-paying slot. That sends the wrong signal and leaks dollars. This walks through how we gated premium pay on FTE attainment, the snapshot model underneath it, and the payroll plumbing that keeps it auditable. worksopen shift

2024

5 posts
2024-11-12 Building Reverse-invoicing automation: 50 vendors, one ledger 10 min Every week, fifty-plus VMSs send us invoice data in their own dialect. The vendor knows a worker by name string; we know her by UUID. One system calls a unit 'ICU-MED-3W'; we have a clinical unit ID. This walks through the four-step pipeline, the identity bridge, and the two design moves we keep reaching for: derived state, and query-enforced idempotency. marketplace 2024-10-23 Building Interactions: every conversation in one record 7 min For years, every channel between Trusted and a clinician lived in a different vendor's console. We pulled all of it onto the clinician record as a single interaction event. The interesting problem wasn't ingestion. It was identity resolution: phone numbers and emails aren't people, and a person is a record with a history. marketplaceai 2024-09-18 Building GLaDOS: the LLM layer 9 min Most Rails apps grow five different patterns for the same five LLM problems: retries, logging, validating shape, surfacing failures, chaining calls. GLaDOS is the single internal pack we built to handle all of it: prompts as first-class objects, structured-output validation, async execution, audit logs, and a multi-turn agentic loop with tool calling. marketplaceAI 2024-08-14 Building Submission packet generation 8 min Every VMS wants the packet built differently: which documents, in what order, in what format, by which channel. We modeled that variation as three rule tables resolved hierarchically against job, program, and global defaults. Adding a new client is now a config change instead of a code change. marketplace 2024-02-20 Building Automated reference capture 7 min A travel nurse needs two professional references to submit to most jobs. Until recently, getting them was almost entirely manual: a person sitting between the clinician, the contact, and the submission deadline. This walks through what we automated, what we left alone, and why the design decisions that mattered most were operational rather than architectural. marketplace

2023

3 posts