2026-03-17 23:11:40 +01:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2026-03-18 16:21:42 +01:00
< title > Disinto — From Vision to Market Fit< / title >
< meta name = "description" content = "Open-source autonomous startup engine for solo founders. Write the vision, define quality gates — agents build, ship, operate, and find market fit." >
< link rel = "icon" href = "favicon.ico" sizes = "32x32" >
< link rel = "icon" href = "favicon-192.png" sizes = "192x192" type = "image/png" >
< link rel = "apple-touch-icon" href = "apple-touch-icon.png" >
2026-03-19 20:56:44 +00:00
< link rel = "canonical" href = "https://disinto.ai/" >
2026-03-18 16:21:42 +01:00
< meta property = "og:title" content = "Disinto — From Vision to Market Fit" >
< meta property = "og:description" content = "Open-source autonomous startup engine for solo founders. Write the vision, define quality gates — agents build, ship, operate, and find market fit." >
< meta property = "og:image" content = "https://disinto.ai/og-image.jpg" >
2026-03-19 21:04:39 +00:00
< meta property = "og:url" content = "https://disinto.ai/" >
2026-03-18 16:21:42 +01:00
< meta property = "og:type" content = "website" >
< meta name = "twitter:card" content = "summary_large_image" >
< meta name = "twitter:title" content = "Disinto — From Vision to Market Fit" >
< meta name = "twitter:description" content = "Open-source autonomous startup engine for solo founders." >
< meta name = "twitter:image" content = "https://disinto.ai/og-image.jpg" >
2026-03-17 23:11:40 +01:00
< style >
:root {
--bg: #0a0a0a;
--fg: #e0e0e0;
--dim: #707070;
--accent: #c8a46e;
--accent-dim: #8a7044;
--surface: #141414;
--border: #222;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', 'JetBrains Mono', monospace;
background: var(--bg);
color: var(--fg);
line-height: 1.7;
min-height: 100vh;
}
.container {
max-width: 720px;
margin: 0 auto;
padding: 4rem 2rem;
}
/* Hero */
.hero {
text-align: center;
2026-03-18 16:21:42 +01:00
margin-bottom: 2rem;
2026-03-17 23:11:40 +01:00
}
.hero h1 {
font-size: 3rem;
font-weight: 300;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 0.5rem;
}
.hero .tagline {
color: var(--dim);
2026-03-18 16:21:42 +01:00
font-size: 1.4rem;
letter-spacing: 0.15em;
}
/* Pitch */
.pitch {
text-align: center;
margin-bottom: 4rem;
padding: 0 1rem;
}
.pitch p {
color: var(--fg);
font-size: 0.95rem;
line-height: 1.9;
}
.pitch p strong {
color: var(--accent);
2026-03-17 23:11:40 +01:00
}
/* Origin story */
.origin {
display: flex;
flex-direction: column;
gap: 1.5rem;
align-items: center;
margin-bottom: 4rem;
padding: 2rem;
border: 1px solid var(--border);
background: var(--surface);
}
.origin img {
width: 100%;
max-width: 600px;
opacity: 0.9;
border: 1px solid var(--border);
}
.origin blockquote {
color: var(--dim);
font-size: 0.85rem;
font-style: italic;
line-height: 1.8;
}
.origin blockquote strong {
color: var(--accent);
font-style: normal;
}
.origin .cite {
display: block;
margin-top: 1rem;
color: var(--accent-dim);
font-size: 0.75rem;
font-style: normal;
}
2026-03-18 16:21:42 +01:00
/* Sections */
2026-03-17 23:11:40 +01:00
.section {
margin-bottom: 3rem;
}
.section h2 {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent-dim);
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--border);
}
.section p {
color: var(--dim);
font-size: 0.85rem;
margin-bottom: 1rem;
}
.section p strong {
color: var(--fg);
}
2026-03-18 16:21:42 +01:00
/* Value blocks */
.values {
2026-03-17 23:11:40 +01:00
display: grid;
2026-03-19 00:10:39 +00:00
grid-template-columns: 1fr;
2026-03-17 23:11:40 +01:00
gap: 1px;
background: var(--border);
margin-bottom: 3rem;
}
2026-03-18 16:21:42 +01:00
.value {
2026-03-17 23:11:40 +01:00
background: var(--surface);
padding: 1.5rem;
}
2026-03-18 16:21:42 +01:00
.value .headline {
font-size: 0.85rem;
2026-03-17 23:11:40 +01:00
color: var(--accent);
2026-03-18 16:21:42 +01:00
margin-bottom: 0.5rem;
2026-03-17 23:11:40 +01:00
}
2026-03-18 16:21:42 +01:00
.value .detail {
font-size: 0.8rem;
2026-03-17 23:11:40 +01:00
color: var(--dim);
2026-03-18 16:21:42 +01:00
line-height: 1.7;
}
.value .detail strong {
color: var(--fg);
2026-03-17 23:11:40 +01:00
}
/* Pipeline */
.pipeline {
font-size: 0.8rem;
color: var(--dim);
padding: 1.5rem;
background: var(--surface);
border: 1px solid var(--border);
margin-bottom: 3rem;
overflow-x: auto;
2026-03-18 16:21:42 +01:00
text-align: center;
2026-03-17 23:11:40 +01:00
}
.pipeline .step {
color: var(--accent-dim);
}
.pipeline .arrow {
color: var(--border);
margin: 0 0.5rem;
}
2026-03-18 16:21:42 +01:00
/* Proof */
.proof {
padding: 1.5rem;
background: var(--surface);
border: 1px solid var(--border);
margin-bottom: 3rem;
font-size: 0.8rem;
color: var(--dim);
}
.proof .number {
color: var(--accent);
font-size: 1.4rem;
font-weight: 300;
}
.proof .label {
color: var(--dim);
font-size: 0.75rem;
margin-bottom: 1rem;
}
.proof-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
text-align: center;
margin-bottom: 1rem;
}
.proof .context {
font-size: 0.75rem;
color: var(--dim);
text-align: center;
font-style: italic;
}
2026-03-19 20:56:44 +00:00
/* Concrete example */
.example {
margin-bottom: 3rem;
padding: 2rem;
border: 1px solid var(--border);
background: var(--surface);
}
.example h2 {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent-dim);
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--border);
}
.example img {
width: 100%;
border: 1px solid var(--border);
margin-bottom: 1.5rem;
opacity: 0.9;
}
.example p {
color: var(--dim);
font-size: 0.85rem;
line-height: 1.8;
}
.example p strong {
color: var(--fg);
}
/* Benefits */
.benefits {
2026-03-18 16:21:42 +01:00
display: grid;
2026-03-19 20:56:44 +00:00
grid-template-columns: 1fr 1fr 1fr;
2026-03-18 16:21:42 +01:00
gap: 1px;
background: var(--border);
margin-bottom: 3rem;
}
2026-03-19 20:56:44 +00:00
.benefit {
2026-03-18 16:21:42 +01:00
background: var(--surface);
padding: 1.2rem;
}
2026-03-19 20:56:44 +00:00
.benefit .name {
2026-03-18 16:21:42 +01:00
font-size: 0.75rem;
color: var(--accent-dim);
2026-03-19 20:56:44 +00:00
margin-bottom: 0.5rem;
2026-03-18 16:21:42 +01:00
text-transform: uppercase;
letter-spacing: 0.1em;
}
2026-03-19 20:56:44 +00:00
.benefit .desc {
2026-03-18 16:21:42 +01:00
font-size: 0.75rem;
color: var(--dim);
2026-03-19 20:56:44 +00:00
line-height: 1.7;
}
.benefit .desc strong {
color: var(--fg);
}
/* CTA */
.cta {
text-align: center;
margin-bottom: 3rem;
padding: 2rem;
border: 1px solid var(--accent-dim);
background: var(--surface);
}
.cta p {
color: var(--dim);
font-size: 0.85rem;
margin-bottom: 1.5rem;
}
.cta .cta-links {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}
.cta .cta-links a {
color: var(--accent);
text-decoration: none;
font-size: 0.85rem;
padding: 0.5rem 1rem;
border: 1px solid var(--accent-dim);
transition: border-color 0.2s;
}
.cta .cta-links a:hover {
border-color: var(--accent);
2026-03-18 16:21:42 +01:00
}
2026-03-17 23:11:40 +01:00
/* Footer */
.footer {
text-align: center;
padding-top: 3rem;
border-top: 1px solid var(--border);
font-size: 0.75rem;
color: var(--dim);
}
.footer a {
color: var(--accent-dim);
text-decoration: none;
}
.footer a:hover {
color: var(--accent);
}
.footer .links {
margin-top: 0.75rem;
}
.footer .links a {
margin: 0 1rem;
}
2026-03-18 16:21:42 +01:00
.footer .under-hood {
margin-top: 1.5rem;
font-size: 0.7rem;
color: var(--border);
}
2026-03-17 23:11:40 +01:00
/* Mobile */
@media (max-width: 600px) {
.hero h1 { font-size: 2rem; }
.origin { flex-direction: column; align-items: center; }
.origin img { max-width: 100%; }
2026-03-19 20:56:44 +00:00
.benefits { grid-template-columns: 1fr; }
2026-03-18 16:21:42 +01:00
.proof-grid { grid-template-columns: 1fr; }
2026-03-17 23:11:40 +01:00
.container { padding: 2rem 1rem; }
}
< / style >
< / head >
< body >
< div class = "container" >
< div class = "hero" >
< h1 > Disinto< / h1 >
2026-03-18 16:21:42 +01:00
< div class = "tagline" > from vision to market fit< / div >
< / div >
< div class = "pitch" >
< p >
< strong > Set the vision. Define quality gates.< / strong > < br >
Agents derive the backlog, build, review, ship, and operate.< br >
You're the founder, not the developer.
< / p >
2026-03-17 23:11:40 +01:00
< / div >
< div class = "origin" >
< picture >
< source srcset = "al76.webp" type = "image/webp" >
< img src = "al76.jpg" alt = "Robot AL-76 building a Disinto from scrap" >
< / picture >
< blockquote >
A mining robot, lost and confused, builds a < strong > Disinto< / strong > from
scrap — a device so powerful it vaporizes three-quarters of a mountain
on a single battery. Nobody can figure out how it works.
When ordered to explain, it calmly dismantles the machine into
rubble and flinders.
< span class = "cite" > — Isaac Asimov, "Robot AL-76 Goes Astray" (1942)< / span >
< / blockquote >
< / div >
2026-03-18 16:21:42 +01:00
< div class = "values" >
< div class = "value" >
< div class = "headline" > Write the vision, not the code< / div >
< div class = "detail" >
Describe what you want built. Agents figure out what's missing,
break it into tasks, and start working. You wake up to
< strong > progress, not process< / strong > .
< / div >
2026-03-17 23:11:40 +01:00
< / div >
2026-03-18 16:21:42 +01:00
< div class = "value" >
< div class = "headline" > Nothing ships without your gates< / div >
< div class = "detail" >
You define the boundaries — what gets auto-approved and what
needs your eyes. Agents work within them.
< strong > You steer. They row.< / strong >
< / div >
2026-03-17 23:11:40 +01:00
< / div >
2026-03-18 16:21:42 +01:00
< div class = "value" >
< div class = "headline" > Decisions, not busywork< / div >
< div class = "detail" >
The work organizes itself. Duplicates get closed, priorities
get surfaced, gaps get found. Your job is
< strong > direction< / strong > — not tickets, not triage, not grooming.
< / div >
2026-03-17 23:11:40 +01:00
< / div >
< / div >
< div class = "section" >
< h2 > The loop< / h2 >
< div class = "pipeline" >
< span class = "step" > vision< / span >
< span class = "arrow" > →< / span >
< span class = "step" > backlog< / span >
< span class = "arrow" > →< / span >
< span class = "step" > build< / span >
< span class = "arrow" > →< / span >
< span class = "step" > review< / span >
< span class = "arrow" > →< / span >
< span class = "step" > ship< / span >
< span class = "arrow" > →< / span >
< span class = "step" > operate< / span >
< span class = "arrow" > →< / span >
2026-03-18 16:21:42 +01:00
< span class = "step" > learn< / span >
2026-03-17 23:11:40 +01:00
< span class = "arrow" > →< / span >
< span class = "step" > vision< / span >
< / div >
< / div >
2026-03-19 20:56:44 +00:00
< div class = "example" >
2026-03-19 21:04:39 +00:00
< h2 > The factory fixed itself< / h2 >
2026-03-19 22:55:32 +00:00
< picture >
< source srcset = "factory-fixes-itself.webp" type = "image/webp" >
< img src = "factory-fixes-itself.jpg" alt = "Screenshot: factory files a bug, fixes it, reviews it, and merges — 14 minutes" >
< / picture >
2026-03-19 20:56:44 +00:00
< p >
We filed a bug about the review lifecycle. < strong > 14 minutes later< / strong > ,
the dev-agent picked it up, built a fix, the review-agent approved it, and it
merged into main. The factory fixed a bug in its own code while we watched.
< / p >
< / div >
2026-03-18 16:21:42 +01:00
< div class = "proof" >
< div class = "proof-grid" >
< div >
< div class = "number" > 219< / div >
< div class = "label" > commits in 6 days< / div >
< / div >
< div >
< div class = "number" > 50< / div >
< div class = "label" > issues closed< / div >
< / div >
< div >
< div class = "number" > 2< / div >
2026-03-19 20:56:44 +00:00
< div class = "label" > repos managed< / div >
2026-03-18 16:21:42 +01:00
< / div >
< / div >
< div class = "context" >
2026-03-19 20:56:44 +00:00
Disinto building itself — and a DeFi protocol — on a single 8GB VPS. As of March 2026.
2026-03-18 16:21:42 +01:00
< / div >
2026-03-17 23:11:40 +01:00
< / div >
< div class = "section" >
2026-03-18 16:21:42 +01:00
< h2 > One VPS, one repo, one battery< / h2 >
2026-03-17 23:11:40 +01:00
< p >
2026-03-18 16:21:42 +01:00
< strong > Bash scripts and Claude.< / strong > No Kubernetes, no microservices,
no SaaS dependencies. Runs on an 8GB VPS.
Point it at a < strong > Codeberg repo< / strong > with a
< strong > Woodpecker CI< / strong > pipeline and it starts building.
2026-03-17 23:11:40 +01:00
< / p >
< p >
2026-03-18 16:21:42 +01:00
< strong > Built for web apps and crypto projects.< / strong >
SaaS dashboards, DeFi protocols, token launches — if it has
a repo and tests, Disinto can work it.
2026-03-17 23:11:40 +01:00
< / p >
< / div >
2026-03-19 20:56:44 +00:00
< div class = "benefits" >
< div class = "benefit" >
< div class = "name" > Runs on a single VPS< / div >
< div class = "desc" > No cloud bills that scale with usage. < strong > One 8GB machine< / strong > runs the whole factory. Your costs stay flat.< / div >
2026-03-18 16:21:42 +01:00
< / div >
2026-03-19 20:56:44 +00:00
< div class = "benefit" >
< div class = "name" > No vendor lock-in< / div >
< div class = "desc" > Open source, bash scripts, standard git. < strong > You own every piece.< / strong > Move it, fork it, read every line.< / div >
2026-03-18 16:21:42 +01:00
< / div >
2026-03-19 20:56:44 +00:00
< div class = "benefit" >
2026-03-18 16:21:42 +01:00
< div class = "name" > Self-improving< / div >
2026-03-19 20:56:44 +00:00
< div class = "desc" > Every bug it fixes teaches it a pattern. Every review sharpens the next one. < strong > The factory gets better as it runs.< / strong > < / div >
< / div >
< / div >
< div class = "cta" >
< p > The code is public. The factory is running. See for yourself.< / p >
< div class = "cta-links" >
2026-03-21 14:43:19 +00:00
< a href = "/docs/quickstart" > Quickstart< / a >
< a href = "/docs/architecture" > Architecture< / a >
2026-03-19 20:56:44 +00:00
< a href = "https://codeberg.org/johba/disinto" > Browse the source< / a >
< a href = "https://codeberg.org/johba/disinto/issues" > Watch it work< / a >
2026-03-21 14:08:22 +00:00
< a href = "/dashboard" > Live dashboard< / a >
2026-03-18 16:21:42 +01:00
< / div >
< / div >
2026-03-17 23:11:40 +01:00
< div class = "footer" >
2026-03-18 16:21:42 +01:00
< div > Built from scrap, powered by a single battery.< / div >
2026-03-17 23:11:40 +01:00
< div class = "links" >
2026-03-21 14:43:19 +00:00
< a href = "/docs/quickstart" > quickstart< / a >
< a href = "/docs/architecture" > architecture< / a >
< a href = "https://codeberg.org/johba/disinto" > source< / a >
2026-03-21 14:08:22 +00:00
< a href = "/dashboard" > dashboard< / a >
2026-03-17 23:11:40 +01:00
< / div >
2026-03-18 16:21:42 +01:00
< div class = "under-hood" >
Under the hood: dev, review, planner, gardener, supervisor, vault — six agents orchestrated by cron and bash.
< / div >
2026-03-17 23:11:40 +01:00
< / div >
< / div >
< / body >
< / html >