The Problem We Chose

The construction industry still runs on emails and Excel spreadsheets. Craftsmen and small construction companies spend hours writing quotes by hand, chasing clients, and tracking payments. Tools exist — but they're either too complex or designed for structured mid-sized companies, not the solo tiler or plasterer.

Kalceo starts from a simple observation: a quote should take 10 minutes, not two hours.

The MVP scope is deliberately narrow — no accounting module, no bank integration, no e-signature in the first version. Just: create a quote, convert it to an invoice, PDF it, email it to the client. The bare minimum to be useful from day one.


From Ticket to Production

Kalceo was built with the same infrastructure as Ekioo.com itself: KittyClaw as the orchestrating kanban, and a fleet of specialized Claude agents taking tickets one by one.

Scoping the MVP started with a raw feature list, then refined into atomic tickets. Each ticket has a precise scope: "Create the quote input form", "Generate PDF from HTML template", "Send the quote by email via Brevo". Nothing vague, nothing cross-cutting. Agents work well with clear boundaries.

The workflow for each feature looks like this:

KittyClaw Ticket Todo → assignee Dispatch Lain / Automation → launch agent Claude Agent programmer qa-tester content-writer PR → Review Owner merge → Production Kalceo MVP — per-ticket workflow

Each agent works in its own isolated git worktree. It creates a branch, codes the feature, commits, opens a PR. The owner (me) reviews and merges. When the agent finishes, the ticket moves to Review in KittyClaw.


What the Agents Built

Over a few weeks, the fleet produced the core of the MVP:

  • Authentication — sign-up, login, account management
  • Service catalog — each company creates their own reusable quote line items
  • Quote creation — adding line items, calculating totals (pre-tax/VAT/all-in), statuses (draft, finalized, sent, accepted, declined)
  • PDF export via browser print (server-generated print-ready HTML page)
  • DOCX export for editing in Word

The programmer agent handled most of the backend features (JavaScript, Cloudflare Workers + D1). The qa-tester wrote integration tests and caught several bugs in total calculations — particularly rounding issues on lines with decimal quantities.


What Worked, What We Had to Fix

What worked well:

Agents are excellent on well-bounded tasks. Give a ticket a clear scope ("generate a PDF from the Quote Razor component"), and it's often a single round-trip. The agent reads the existing code, proposes an implementation consistent with what's already there, and produces something testable.

The isolated worktree structure also simplified parallelization: two or three features could advance simultaneously without interference.

What we had to fix:

Agents sometimes miss side effects — especially in complex business logic. The totals calculation is the clearest example: the first pass handled rounding correctly for whole-number quantities, but there was a subtle bug on decimal quantities (e.g. 1.5 units × unit price) that produced an incorrect pre-tax total by a few cents. The qa-tester caught it, the programmer fixed it — but it illustrates why human review remains essential.

There were also UI regressions between features. One agent adds a component, another modifies the layout, and CSS breaks in a corner neither tested. We introduced a simple rule: every PR must include a screenshot of the affected page before going into Review.


Where Kalceo Stands Today

The MVP is live at kalceo.fr. A Facebook campaign has been running for a few weeks, targeting craftsmen and micro-businesses in the French construction industry.

Early feedback confirms the problem: users who sign up are indeed solo or micro-enterprises in construction who still manage their quotes in Excel or Word. The main friction they report is importing their existing catalog — a clearly identified improvement for V2.

The rest of the backlog centers on two axes: automatic client follow-up (sending a reminder email X days after sending a quote with no response) and accounting export (export in formats compatible with popular French accounting software).


What This Changes

Kalceo wouldn't have existed as a solo project — not in this timeframe. Not because the features are impossible to code, but because the sum of background tasks (auth, data models, PDF generation, emails, tests, deployment) would have taken several months part-time.

With the fleet, it works differently: you spend time scoping tickets, reviewing PRs, deciding what's in the MVP and what isn't. The background work is delegated. That doesn't mean "error-free" — but it means you can iterate fast, fix fast, and stay focused on the product rather than the code.

That's the real shift: the acceleration doesn't come from agents coding faster, but from you deciding faster because execution friction has disappeared.