Launching soon

The right path to production.

AI writes the code. A named human signs it. Every change ships with a re-runnable trail of proof — so when it breaks at 2am, there's a record and a person, not a hunch.

From $59/mo infrastructure $2,500 / launch with human review Production infrastructure included
developer agent midnight-mvp 02:14 UTC
Refactor auth/session.ts to use httpOnly cookies.
  1. Pinned react@18.3.1 npm · today
  2. CVE check — iron-session@8.0.3 gh advisory db
  3. API matches Next.js 14.2 docs nextjs.org · today
  4. License clearance (MIT compatible) SPDX
  5. 24 tests pass jest 29.7
Provenance saved · view trail →

Three steps. No faith required.

The agent doesn’t act on guesswork and we don’t ask you to either. Every claim has a source. Every source is checkable. The trail outlives the run — re-run any check months later to detect drift.

  1. 01 [plan]

    It writes a plan first.

    Before any code touches your repo, the agent drafts a plan: which files it will touch, which libraries it needs, which sources it intends to cite. You can revise the plan or veto it.

    task
    refactor session cookies → httpOnly
    touches
    3 files · auth/session.ts +2
    sources
    nextjs.org · owasp · jest 29
    verifiers
    docs · cve · license · tests
  2. 02 [run]

    It runs the verifiers as it goes.

    Every claim is checked against the source it cites. Pinned versions, vulnerability scans, license clearances, doc-matching, test suite. Failures stop the run and surface in the trail — the agent does not paper over them.

    pinned
    react@18.3.1 · next@14.2.5
    cve
    iron-session@8.0.3 no advisories
    docs
    cookies() matches next 14.2 docs
    tests
    24 passed · 0 failed · 380 ms
  3. 03 [ship]

    A human signs it.

    An engineer reviews the agent's work, the provenance trail, and the verification results. Nothing ships without a human taking responsibility. The trail is archived so you can re-run any check months later — including after a dependency update.

    trail
    /launches/2026-05-14/2a91
    signer
    engineer · reviewed + signed
    human
    always — humans own the outcome
    recheck
    on every dependency update

A real diff. No hand-waving about "intelligence."

What a developer-agent commit looks like when it lands. Code on the left. The provenance that makes it merge-able on the right.

auth / session.ts +14 −9 commit a2c91 · 02:14 UTC
@@ -12,9 +12,14 @@ export async function setSession(payload: SessionPayload) {
const token = sign(payload, env.SESSION_SECRET)
document.cookie = `sid=${token}; path=/`
+ const token = await sign(payload, env.SESSION_SECRET)
+ const cookieStore = cookies()
+ cookieStore.set("sid", token, {
+ httpOnly: true,
+ secure: true,
+ sameSite: "lax",
+ maxAge: 60 * 60 * 24 * 7,
+ })

Built so your security review is short.

Every project runs on isolated Kubernetes with its own namespace or dedicated cluster. Agents are autonomous software — their access is controlled, auditable, and revocable. Here is what ships by default.

Read the security overview →
  • Session

    A leaked token outlives the support ticket. Briefly.

    Every agent session gets fresh credentials. They expire in minutes, not months. The blast radius of a leak is bounded by the clock.

    • SOC 2
    • OWASP
    • NIS2
  • Tenancy

    One tenant cannot read another.

    The policy engine rejects cross-tenant access before the request reaches storage. Per-tenant keys, audited per call.

    • GDPR
    • ISO 27001
    • HIPAA
  • Erasure

    Right-to-erasure that actually erases.

    A delete request destroys the customer’s encryption key. The data becomes mathematically unrecoverable — including from replicas and backups — in seconds.

    • GDPR
    • EU AI Act
  • Provenance

    A trail that outlives the run.

    Every read, write, and revocation is signed and replayable months later. If audit logging fails, the service halts rather than running blind.

    • SOC 2
    • HIPAA
  • Sensitive data

    Card numbers and health IDs never reach your database raw.

    Format-preserving tokenization at the application layer. The agent works with tokens. Your joins still work because the token shape is stable.

    • PCI DSS
    • GDPR
  • Revocation

    End the session, end the access — atomically.

    One call invalidates the token. Database users, certificates, storage tokens — everything the agent touched is revoked in the same operation. Recorded in the trail.

    • SOC 2
    • NIS2

Specialist agents. Human engineers own the outcome.

The agents do the volume and the verification. A human engineer reviews and signs everything before it ships. You can also run any agent inside your editor via MCP — against the model you’re already paying for.

Meet the full team →

The other tools generate. We verify — and a human signs the work.

Side by side with the tools founders are already using. Reflects publicly documented behavior as of June 2026. We re-check it quarterly; if something here is wrong, tell us and we’ll correct it.

Read the longer comparison →
Capabilitylaunch.istLovablev0Cursor
Source-cited provenance, by default
Pins dependency versions on outputno (`latest`)
Runs <em>your</em> test suite as a merge gateoptional
CVE / vulnerability scanningpartialopt-in*
License / SBOM checks
Human engineer signs the merge
Isolated infrastructure you control
Production infrastructure includedfrom $59/mo
Re-runnable provenance trail
Immutable audit trail

Reflects publicly documented behavior as of June 2026. *Cursor’s vulnerability scanner is opt-in, beta, and Teams/Enterprise-only — off by default. We re-check quarterly; if something here is wrong, tell us and we’ll correct it, with credit.

Every price is the price.

No "contact sales" hiding the cost. Posted plainly. If something here is wrong for your situation, email us — we'll tell you the price.

Dev/Shared

Staging, dev, preview environments.

$59 per month
  • Shared cluster namespace
  • ~4 GB RAM · 20 GB NVMe
  • Postgres · Valkey · MinIO
Start free

Standard

Growing production workloads.

$349 per month
  • 24 GB RAM · 2 environments
  • HA replicated Postgres
  • Tighter response SLA
Get started

Business

Production at scale.

$649 per month
  • 64 GB RAM · 500 GB NVMe
  • Full catalogue incl. heavy services
  • ~99.5% SLA · priority support
Talk to us
A note from
Mark Krymov
co-founder · launch.ist
Background
infrastructure · fintech
Says yes to
repo tours, weird bugs

We started as a traditional dev agency. We were good at it. But every founder who used to hire us could now type a sentence into Cursor and get the same thing in an evening. The labor we sold was being commoditized.

What wasn’t being commoditized was responsibility. The output from those tools looked right, sometimes shipped, sometimes blew up at 2am because a library had quietly changed its API. Nobody could tell which kind of output they had until it was in production. And nobody was accountable.

So we rebuilt the agency around that gap. We still have human engineers — they review, they sign, they take responsibility. But now they work alongside specialist agents that handle the volume and the verification. The agents do the heavy lifting. The humans own the outcome.

If you’re a founder shipping at midnight, the value proposition is plain: work with us and you ship something a human checked and signed. If something breaks later, you have a trail and a team to call, not a hunch.

That’s the whole pitch. Sign up, kick the tires for free, and email me directly if it doesn’t hold up.

Questions we get asked

Updated as new ones come in. Email hello@launch.ist if yours isn’t here.

Is this just a wrapper around Claude / GPT / etc.?

No. The model is one layer. The verification apparatus around it — version pinning, source citation, doc-matching, CVE checks, license clearances, test enforcement, drift detection — is the product. You can swap the model and the verification still holds.

The agents are MCP-native, so you can run them against the model you’re already paying for in Cursor or Claude Code.

What does the pricing cover?

Infrastructure starts at $59/mo for a dev/shared namespace and scales to $649/mo for a dedicated production cluster with 64 GB RAM, HA Postgres, and full catalogue. Every tier includes GitOps, CI/CD, TLS, and observability. Human review — a senior engineer who personally signs the work — is $2,500 per launch.

What does 'provenance' mean exactly?

A readable, replayable record of how a change was made: the plan, the sources consulted, the verifiers that ran, the versions pinned, the tests that passed, and the human who signed off. Stored as JSON + Markdown and served at /launches/<date>/<sha>. It’s designed to outlive the run — re-run any check months later to detect drift.

Will it touch production / push to main?

Not without a human merging the PR. The agent opens branches, runs verifiers, and surfaces a diff. Merging is a human action by default. Business and above adds optional auto-merge inside a policy you define.

What models do you run under the hood?

The default stack is Claude Sonnet for planning, Claude Haiku for verifier loops, and GPT-4 class for second-opinion review on the human-review tier. You can override any of these per-project. We pin model versions the same way we pin library versions.

What about my private code?

Dev/Shared and Starter: code is processed in-flight and never used to train models. Business and above: a senior engineer reads your repo; self-hosted runners available. Audit logs on by default at Starter and above.

Is this an agency or a tool?

A development agency that uses specialist agents to do the heavy lifting. The agents handle code, design, compliance, and infrastructure. The humans review, sign, and take responsibility. You get agency-grade outcomes at a fraction of the cost because the agents handle the volume.

Ready for the frameworks your buyer asks about.
  • GDPREU data protection
  • SOC 2Type II
  • ISO 270012022
  • HIPAAUS health
  • PCI DSSv4.0
  • NIS2EU cyber
  • EU AI Act
Get started

Bring your domain. We handle the rest.

Architecture, CI/CD, tests, isolated Kubernetes, and specialist agents — from $59/month. Human engineers review and sign everything.