<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <title>Soleur Blog</title>
  <subtitle>Insights on agentic engineering and company-as-a-service</subtitle>
  <link href="https://www.soleur.ai/blog/feed.xml" rel="self" />
  <link href="https://www.soleur.ai/" />
  <updated>2026-05-15T00:00:00Z</updated>
  <id>https://www.soleur.ai/</id>
  <author>
    <name>Soleur</name>
  </author>
  <entry>
    <title>Skill Libraries vs. Workflow Plugins: Two Shapes of Claude Code Extension</title>
    <link href="https://www.soleur.ai/blog/skill-libraries-vs-workflow-plugins/" />
    <updated>2026-05-15T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/skill-libraries-vs-workflow-plugins/</id>
    <content type="html">&lt;p&gt;Search &amp;quot;Claude Code skills&amp;quot; on GitHub and two very different shapes come back. One repository is a catalog: a long list of self-contained skills you can drop into any Claude Code install, picked individually, used independently. Another shape is the opposite — a single bundle of agents, skills, and a shared knowledge base, opinionated end-to-end, with cross-references between every component.&lt;/p&gt;
&lt;p&gt;The instinct is to rank them on shelf size. The catalog looks bigger, the bundle looks narrower, and the comparison ends before the actual question gets asked: which shape fits the work you&#39;re doing?&lt;/p&gt;
&lt;p&gt;These are two different categories. Each answers a different question. Choosing between them — or running both — depends on what you need Claude Code to do this week.&lt;/p&gt;
&lt;h2&gt;What a Skill Library Is&lt;/h2&gt;
&lt;p&gt;A skill library is a portable catalog of self-contained Claude Code skills. The defining traits: breadth-first coverage, intentional unopinionatedness about how the skills get used, pick-and-mix consumption, MIT-friendly portability across teams and projects.&lt;/p&gt;
&lt;p&gt;The canonical exemplar is the &lt;a href=&quot;https://github.com/alirezarezvani/claude-skills&quot;&gt;alirezarezvani/claude-skills&lt;/a&gt; repository — the reference implementation for the portable-library shape. It catalogs a broad collection of skills covering common developer needs (research workflows, data wrangling, documentation generation, project scaffolding) and ships them as independent units. Each skill is its own folder, its own README, its own contract. You can copy one skill into your project, ignore everything else in the catalog, and never touch the rest.&lt;/p&gt;
&lt;p&gt;A skill library answers one question: &amp;quot;what&#39;s the next useful capability I can add to Claude Code without changing how I work?&amp;quot; The library is a shelf. You walk down it, you take what you need, you go. There is no expectation that skill A is aware of skill B. There is no shared memory between them. Orchestration is your job; the library hands you the pieces.&lt;/p&gt;
&lt;p&gt;That shape has real strengths. The library is portable: a skill written for one team&#39;s Claude Code install runs on another team&#39;s install with no migration. The catalog scales horizontally — adding capabilities widens coverage without changing the core promise. And the unopinionated design respects the user&#39;s existing workflow, imposing no convention.&lt;/p&gt;
&lt;h2&gt;What a Workflow Plugin Is&lt;/h2&gt;
&lt;p&gt;A workflow plugin is opinionated orchestration across a lifecycle. Where a library hands you pieces, this shape runs an organization.&lt;/p&gt;
&lt;p&gt;Soleur is the canonical exemplar. Soleur ships 66+ agents, 73+ skills, and a compounding knowledge base, organized across 8 business departments — engineering, marketing, legal, finance, operations, product, sales, support, community. The agents are not interchangeable parts. The marketing agent reads what the legal agent decided. The competitive-intelligence agent feeds the brand-architect agent. The compound skill captures learnings from every session and replays them into the next one.&lt;/p&gt;
&lt;p&gt;The agents and skills are wired through a brainstorm → plan → work → review → compound lifecycle. Each stage is a gate. Brainstorm surfaces ambiguity before plans get written. Plans get deepened, then executed by work. Review catches what work missed. Compound writes the lesson into a knowledge base that every future session reads from. Decisions in session 1 shape what session 50 produces.&lt;/p&gt;
&lt;p&gt;The compounding knowledge base is the structural component that separates a workflow plugin from a pile of skills. It is a git-tracked directory of markdown files that every agent reads from and writes to. The brand guide informs the copywriter agent&#39;s tone. The competitive-intelligence audit informs the growth-strategist agent&#39;s positioning. The institutional learnings from a debugged migration inform the data-integrity-guardian agent the next time someone touches the schema. None of this requires the founder to wire it manually. The cross-domain coherence is the default.&lt;/p&gt;
&lt;p&gt;This shape answers a different question: &amp;quot;how do I execute every department of my company without hiring a team?&amp;quot; That is the &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; shape — a full AI organization, opinionated end-to-end, designed for the founder running every job alone.&lt;/p&gt;
&lt;h2&gt;Why Two Shapes (Not One Hierarchy)&lt;/h2&gt;
&lt;p&gt;The temptation is to put these on a leaderboard and pick a winner. Resist it. Skill libraries and workflow plugins optimize for different things. Comparing them on the same axis is like comparing a hardware store to a general contractor — same building materials, completely different unit of value.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Optimizes for&lt;/th&gt;
&lt;th&gt;Skill libraries&lt;/th&gt;
&lt;th&gt;Workflow plugins&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Distribution model&lt;/td&gt;
&lt;td&gt;Pick-and-mix, individual skills&lt;/td&gt;
&lt;td&gt;End-to-end lifecycle, all-or-nothing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Unit of value&lt;/td&gt;
&lt;td&gt;A single capability&lt;/td&gt;
&lt;td&gt;A coordinated organization&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Knowledge flow&lt;/td&gt;
&lt;td&gt;Per-skill, ephemeral&lt;/td&gt;
&lt;td&gt;Cross-session, compounding&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Adoption pattern&lt;/td&gt;
&lt;td&gt;Copy what you need&lt;/td&gt;
&lt;td&gt;Install once, use everything&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Best fit&lt;/td&gt;
&lt;td&gt;Augmenting an existing workflow&lt;/td&gt;
&lt;td&gt;Replacing the workflow itself&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Neither column is a deficiency. The library shape exists because some users have a workflow they like and want more capabilities to drop into it. The workflow-plugin shape exists because some users — solo founders especially — don&#39;t have a workflow yet and need one that already works.&lt;/p&gt;
&lt;p&gt;The wrong question is &amp;quot;which is better?&amp;quot; The right question is &amp;quot;which one does what I need this week?&amp;quot; Sometimes the answer is one. Sometimes both. Sometimes the answer changes as the work changes.&lt;/p&gt;
&lt;h2&gt;When a Skill Library Wins&lt;/h2&gt;
&lt;p&gt;Three founder moments make the portable-library shape unambiguously the right call.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;You need one capability, not a system.&lt;/strong&gt; You&#39;re working on something that&#39;s mostly working. You need a single skill — clean up an Excel export, normalize a JSON schema, generate boilerplate for a new package. You don&#39;t want a new lifecycle. You want a tool you can install in two minutes and forget you have until you need it again. The skill library is the shelf you walk to.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;You&#39;re evaluating Claude Code itself.&lt;/strong&gt; If you haven&#39;t decided whether Claude Code is the right substrate for your team, you don&#39;t want to commit to an opinionated bundle yet. Pulling individual skills from a portable library is a low-risk way to feel out the platform — the cost of removal is one folder. Library skills are evaluation-friendly by design.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;You already have an orchestration layer.&lt;/strong&gt; Some teams have invested years in their own internal workflow — their own brainstorming process, their own QA gates, their own knowledge management. Layering an opinionated lifecycle on top would conflict. A portable library slots in without claiming the orchestration territory.&lt;/p&gt;
&lt;p&gt;In each of those cases, the opinionated shape would be the wrong fit. The user already has what it would replace.&lt;/p&gt;
&lt;h2&gt;When a Workflow Plugin Wins&lt;/h2&gt;
&lt;p&gt;The other three moments belong to this shape.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;You&#39;re a solo founder running every department.&lt;/strong&gt; Marketing campaigns, legal contracts, financial planning, competitive analysis, customer support — every job that a venture-backed company spreads across eight hires. You don&#39;t have a workflow that absorbs context across departments because you don&#39;t have departments. An opinionated organization is the substitute for the team you didn&#39;t hire.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;You need decisions to compound.&lt;/strong&gt; A skill-library session 100 starts where session 1 started — fresh, no memory, no accumulated context. For prototyping that&#39;s fine. For running a business it&#39;s a structural problem: every session re-litigates what was already decided. A compounding knowledge base means the brand decisions from January shape the marketing copy in May without the founder pasting them back into the prompt.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;You want the lifecycle, not only the tools.&lt;/strong&gt; Brainstorm before plan, plan before work, review before commit, compound before move-on. The lifecycle is opinionated on purpose: it enforces the discipline a solo founder can&#39;t enforce on themselves at 11pm before a release. The skills inside are the executors; the lifecycle is the structure that makes the executors useful.&lt;/p&gt;
&lt;p&gt;These are the moments where the &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; shape — not a tool, an organization — wins.&lt;/p&gt;
&lt;h2&gt;They Stack&lt;/h2&gt;
&lt;p&gt;The two shapes are not mutually exclusive. A founder running Soleur for cross-domain orchestration can install individual skills from a portable library for one-off capabilities the workflow-plugin shape doesn&#39;t cover. Different layers of the stack: the organization runs the lifecycle, the library skills fill specific gaps.&lt;/p&gt;
&lt;p&gt;The category-creation point holds: choose the shape based on what you need it to do. Run both when both answer different questions.&lt;/p&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;How does alirezarezvani/claude-skills relate to Soleur?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;It is the canonical exemplar of the portable-library category — a different shape, answering a different question. Soleur is the workflow-plugin shape. They sit in different categories, not on the same leaderboard.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Can I use both?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Yes. The shapes stack at different layers. The organization runs the lifecycle; library skills fill capability gaps the lifecycle doesn&#39;t cover.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Why isn&#39;t there a head-count comparison?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Counting catalog entries against a coordinated organization&#39;s component list is comparing inventory against architecture. The number of library entries says nothing about whether a lifecycle exists, whether knowledge compounds across sessions, or whether agents share context. The right comparison is shape-against-shape, not count-against-count.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Which shape is right for a solo founder running a company alone?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The workflow-plugin shape. The defining trait of solo-founder work — running every department without a team to absorb context — requires the compounding knowledge base and cross-domain orchestration that a portable library, by design, does not provide. Use a library to augment specific capabilities; use an organization to replace the team you don&#39;t have.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What about installing both?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Common and reasonable. The organization should be the substrate; the library can extend specific capabilities the substrate doesn&#39;t cover. Order matters: install the workflow plugin first, then layer library skills on top where the gaps appear.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;If you&#39;re a solo founder building toward the company that takes every job off your plate, the workflow-plugin shape is what you want as the substrate. &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;See how Company-as-a-Service runs every department&lt;/a&gt; — and decide where the library skills slot in around it.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>How to Run Every Business Department with AI Agents: A Solo Founder&#39;s Playbook</title>
    <link href="https://www.soleur.ai/blog/how-to-run-every-department-with-ai-agents/" />
    <updated>2026-05-14T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/how-to-run-every-department-with-ai-agents/</id>
    <content type="html">&lt;p&gt;You are doing eight jobs. Engineering. Marketing. Legal. Finance. Operations. Product. Sales. Support.&lt;/p&gt;
&lt;p&gt;Most founders accept this as a permanent condition of solo-building. More tools help — but the problem is not tool speed. It is tool isolation. Every output from one AI session stops at its session boundary. The marketing tool does not know what the legal tool decided. The engineering agent does not know what the product roadmap changed to. You end up serving as the relay: reading, summarizing, copy-pasting context between systems.&lt;/p&gt;
&lt;p&gt;That is not delegation. It is manual coordination with extra steps.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; solves a different problem: not how fast each tool works, but whether the outputs connect. When agents share a compounding knowledge base, the legal decision flows into marketing copy before you open a browser tab. The brand guide the marketing agent updated gets read by every content-generation agent on every subsequent task. Every session starts smarter than the last.&lt;/p&gt;
&lt;p&gt;This is the playbook for running all eight departments — not faster with isolated tools, but systematically with a connected AI organization.&lt;/p&gt;
&lt;h2&gt;The Delegation Framework: What AI Agents Own vs. What You Must Own&lt;/h2&gt;
&lt;p&gt;Effective delegation is not abdication. The founders who get the most leverage from AI agents draw a sharp line between decision and execution. The agent handles the execution surface — research, drafting, analysis, routing, monitoring. The founder sets intent, reviews outputs, and makes the decisions that require judgment, context, or accountability that no system should hold.&lt;/p&gt;
&lt;p&gt;Three categories of work:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;AI executes fully (with review):&lt;/strong&gt; Research, first drafts, competitive monitoring, structured analysis, scheduled reports, routine correspondence, document generation from templates, code review, test writing, infrastructure provisioning from specs.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;AI executes, founder reviews before finalizing:&lt;/strong&gt; Legal documents, financial models, outbound messaging, pricing changes, anything that commits the company externally.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Founder owns, AI supports:&lt;/strong&gt; Strategic positioning, product vision, customer relationships, high-stakes negotiations, anything where your specific judgment is the differentiator.&lt;/p&gt;
&lt;p&gt;The goal is to push the first category as far as possible while maintaining genuine control over the second. AI agents produce starting points, not final answers. Your expertise is amplified, not replaced.&lt;/p&gt;
&lt;h2&gt;Engineering and Product&lt;/h2&gt;
&lt;p&gt;This is where most founders start — and where AI agents are already most capable.&lt;/p&gt;
&lt;p&gt;An AI engineering agent can write, review, and refactor code. It can run tests, open PRs, identify security issues, and monitor for regressions. A product agent can analyze competitors, produce feature specs from requirements, review against the existing roadmap, and document tradeoffs.&lt;/p&gt;
&lt;p&gt;The leverage here is throughput. A single founder with an AI engineering organization can run a full &lt;a href=&quot;https://www.soleur.ai/blog/vibe-coding-vs-agentic-engineering/&quot;&gt;brainstorm-plan-implement-review-compound lifecycle&lt;/a&gt; on multiple workstreams without losing context between them. The engineering agents remember the architecture decisions. The product agents reference the competitive landscape report from last month. No re-briefing required.&lt;/p&gt;
&lt;p&gt;Key delegation surface:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Automated code review on every PR — no manual review backlog&lt;/li&gt;
&lt;li&gt;Architecture research and design documents drafted before you open a file&lt;/li&gt;
&lt;li&gt;Test suites written in parallel with implementation, not after&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What you still own: technical direction, architecture decisions that define years of product surface, and any customer-facing technical commitment.&lt;/p&gt;
&lt;h2&gt;Marketing&lt;/h2&gt;
&lt;p&gt;Marketing is where solo founders feel the most time pressure and the most uncertainty. Writing copy, running campaigns, monitoring competitors, planning content, tracking results — each task is a context switch that pulls from engineering time.&lt;/p&gt;
&lt;p&gt;An AI marketing organization handles the full operational surface.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Content production:&lt;/strong&gt; Brand-consistent copy for landing pages, blog posts, email sequences, and social distribution. When the marketing agent reads your brand guide before generating, the output starts closer to final. When it reads prior content, it maintains voice consistency across months of output.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Competitive analysis:&lt;/strong&gt; Continuous monitoring of competitor announcements, pricing changes, and positioning shifts. The agent runs the search, produces the report, and routes findings to the relevant agents — product, sales, content — without a separate workflow.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;SEO and distribution:&lt;/strong&gt; Keyword research, content gap analysis, technical audits. The work that would require a specialist firm or a junior hire can be scheduled and executed on a cadence, not ad hoc when you have time.&lt;/p&gt;
&lt;p&gt;The memory advantage is material here: your marketing agent knows your brand guide. It knows the compliance requirements your legal agent finalized. It knows the pricing your finance agent modeled. Context flows between departments without your relay.&lt;/p&gt;
&lt;p&gt;What you still own: strategic positioning, the audience insight that comes from talking to customers, and any campaign commitment that involves material spend.&lt;/p&gt;
&lt;h2&gt;Legal&lt;/h2&gt;
&lt;p&gt;The legal function is where solo founders most often either underspend (relying on general-purpose chatbots for contracts) or overspend (retaining firms for work that does not require it).&lt;/p&gt;
&lt;p&gt;An AI legal agent covers the operational surface: drafting contracts from standard templates, reviewing agreements against a checklist of known risk vectors, flagging compliance requirements, generating privacy policies and terms of service from your actual data practices, and maintaining a legal document library that every other agent can reference.&lt;/p&gt;
&lt;p&gt;When a marketing agent is about to draft copy that makes a product claim, it can reference the legal agent&#39;s existing compliance notes before generating. When the product roadmap includes a data feature, the legal agent flags the consent requirements before engineering begins. This is cross-domain coherence — decisions flow between departments without manual routing.&lt;/p&gt;
&lt;p&gt;Trust scaffolding applies here most critically: AI legal output is a starting point for review, not a substitute for counsel on material matters. Contracts above a threshold, fundraising agreements, litigation — these require human lawyers. The AI legal agent handles the routine operational surface, not the exceptions.&lt;/p&gt;
&lt;h2&gt;Finance&lt;/h2&gt;
&lt;p&gt;Financial operations for a solo founder are both time-consuming and often deprioritized until they cannot be ignored.&lt;/p&gt;
&lt;p&gt;An AI finance agent covers: revenue tracking against plan, expense categorization, cash flow modeling, scenario analysis, financial reporting in formats investors or partners expect, and budget-to-actual monitoring. When connected to the rest of the organization, it can update the model when sales closes a deal and alert when burn rate changes materially.&lt;/p&gt;
&lt;p&gt;The compounding benefit: the financial model gets more accurate over time as the agent builds familiarity with your business&#39;s revenue patterns, seasonality, and cost drivers. The context from last quarter&#39;s analysis informs this quarter&#39;s forecast without re-briefing.&lt;/p&gt;
&lt;p&gt;What you still own: financial commitments, funding decisions, and any reporting that goes to external stakeholders with legal or regulatory consequences.&lt;/p&gt;
&lt;h2&gt;Operations&lt;/h2&gt;
&lt;p&gt;Operations is the catch-all department — everything that keeps the company running but does not belong to a named function. Vendor management, infrastructure provisioning, expense tracking, subscription monitoring, process documentation.&lt;/p&gt;
&lt;p&gt;An AI operations agent handles: infrastructure provisioning from specs, scheduled maintenance tasks, expense reconciliation, subscription audit, vendor comparison and research, and operational documentation. When infrastructure changes, the operations agent records what changed and why — the context future agents need when something breaks.&lt;/p&gt;
&lt;p&gt;The compounding advantage here is documentation. Every decision the operations agent records becomes institutional memory. The system that takes three hours to debug the first time takes fifteen minutes the second time.&lt;/p&gt;
&lt;h2&gt;Sales and Support&lt;/h2&gt;
&lt;p&gt;For most solo founders at the early stage, sales is relationship-driven and personal — and should remain so. The AI leverage in sales is in the support infrastructure: competitive battlecards, objection-handling playbooks, proposal templates, pipeline health analysis, and outbound sequence drafts.&lt;/p&gt;
&lt;p&gt;Support scales better with AI than almost any other function. FAQ documentation, first-response drafts to common questions, knowledge base management, and issue triage can all be handled by an AI support agent. The agent learns from every interaction — the next time someone asks the same question, the answer is better and the response is faster.&lt;/p&gt;
&lt;p&gt;What you still own: relationship-building, strategic partnerships, and any sales situation that requires genuine human judgment about fit.&lt;/p&gt;
&lt;h2&gt;The Memory Layer: Why Shared Context Across Departments Is the Unlock&lt;/h2&gt;
&lt;p&gt;Individual department agents are useful. An AI organization is transformative.&lt;/p&gt;
&lt;p&gt;The difference is the knowledge base. When agents share a compounding knowledge base — a structured store of decisions, documents, competitive intelligence, and institutional context — the output of every department informs every other department. The legal agent&#39;s compliance analysis is available to the marketing agent before it writes a lead generation sequence. The product agent&#39;s competitive landscape update reaches the marketing agent before it plans the next campaign. The finance agent&#39;s runway model is visible to the product agent when it is evaluating a six-month roadmap.&lt;/p&gt;
&lt;p&gt;This is what &lt;a href=&quot;https://www.soleur.ai/blog/knowledge-compounding-in-ai-development/&quot;&gt;knowledge compounding&lt;/a&gt; means in practice: each task starts from a more informed baseline than the last. Over time, the AI organization gets smarter about your business — not because the models improved, but because the context they have access to grew.&lt;/p&gt;
&lt;p&gt;Month one looks like fast tools. Month six looks like an organization.&lt;/p&gt;
&lt;h2&gt;Getting Started: Your First Two Weeks&lt;/h2&gt;
&lt;p&gt;The compounding benefit starts accumulating from day one, but only if the foundation is right.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Week 1: Establish the knowledge base.&lt;/strong&gt; Before delegating any task, invest in capturing what you know. The brand guide, the competitive landscape, the product positioning, the legal constraints you are already aware of, the financial model. This is the starting context that turns generic AI output into company-specific output.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Days 3–7: Start with the highest-pain department.&lt;/strong&gt; For most founders, that is marketing or legal. Pick one department, delegate a full task — not a subtask — and review the output. The goal is not a perfect first output. It is establishing the delegation muscle and identifying the gaps in the knowledge base.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Week 2: Add the knowledge routing.&lt;/strong&gt; The real leverage emerges when the output from week one&#39;s delegated tasks starts feeding the next ones. The competitive analysis the marketing agent produced goes into the knowledge base. The contract template the legal agent drafted becomes the template for future deals. Each output compounds.&lt;/p&gt;
&lt;p&gt;The tasks AI cannot yet handle — strategic positioning, genuine customer insight, high-stakes judgment calls — get clearer as delegation expands. The founder role shifts from executor to decision-maker. That is the &lt;a href=&quot;https://www.soleur.ai/blog/one-person-billion-dollar-company/&quot;&gt;organization you are trying to build&lt;/a&gt;.&lt;/p&gt;
&lt;hr&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How long does it take to set up AI agents for every business department?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The initial knowledge base setup takes 2–4 hours depending on how much existing documentation you have. Delegating the first full task per department typically takes one to two weeks. The compounding benefit — where agents get meaningfully smarter about your business — becomes noticeable by month two or three.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Do I need to be technical to run a business with AI agents?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;For marketing, legal, finance, operations, and support agents, no technical background is required. The setup is primarily about documenting what you know about your business so agents have the right context. Engineering agents benefit from technical depth in the founder, since review and direction work requires domain knowledge.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What happens when an AI agent makes a mistake?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;AI agent output should always be reviewed before external use — agents produce starting points, not final answers. When an agent makes an error, the correction goes back into the knowledge base so the same mistake does not repeat. Over time, the correction layer becomes part of the institutional memory the agent draws on.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How is running departments with AI agents different from using a general-purpose chatbot?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;General-purpose chatbots are stateless — each session starts from zero, with no memory of your business, prior decisions, or existing documentation. An AI organization built on a compounding knowledge base starts each session with the full context of everything prior agents have done. The legal agent knows the compliance decisions made six months ago. The marketing agent knows the brand positioning refined last quarter. That accumulated context is what separates a tool from an organization.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Which department should I delegate to AI agents first?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Start with the department where you feel the most time pressure and the least strategic value from doing the work yourself. For most solo founders, that is marketing content production or legal document generation. Both have clear delegation surfaces, reviewable outputs, and immediate time savings. Engineering delegation can run in parallel if you are already technical.&quot;
      }
    }
  ]
}
&lt;/script&gt;
&lt;h2&gt;Frequently Asked Questions&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;How long does it take to set up AI agents for every business department?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The initial knowledge base setup takes 2–4 hours depending on how much existing documentation you have. Delegating the first full task per department typically takes one to two weeks. The compounding benefit — where agents get meaningfully smarter about your business — becomes noticeable by month two or three.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Do I need to be technical to run a business with AI agents?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;For marketing, legal, finance, operations, and support agents, no technical background is required. The setup is primarily about documenting what you know about your business so agents have the right context. Engineering agents benefit from technical depth in the founder, since review and direction work requires domain knowledge.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What happens when an AI agent makes a mistake?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;AI agent output should always be reviewed before external use — agents produce starting points, not final answers. When an agent makes an error, the correction goes back into the knowledge base so the same mistake does not repeat. Over time, the correction layer becomes part of the institutional memory the agent draws on.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How is running departments with AI agents different from using a general-purpose chatbot?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;General-purpose chatbots are stateless — each session starts from zero, with no memory of your business, prior decisions, or existing documentation. An AI organization built on a compounding knowledge base starts each session with the full context of everything prior agents have done. The legal agent knows the compliance decisions made six months ago. The marketing agent knows the brand positioning refined last quarter. That accumulated context is what separates a tool from an organization.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Which department should I delegate to AI agents first?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Start with the department where you feel the most time pressure and the least strategic value from doing the work yourself. For most solo founders, that is marketing content production or legal document generation. Both have clear delegation surfaces, reviewable outputs, and immediate time savings. Engineering delegation can run in parallel if you are already technical.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>What Is Company-as-a-Service?</title>
    <link href="https://www.soleur.ai/blog/company-as-a-service-platform/" />
    <updated>2026-05-12T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/company-as-a-service-platform/</id>
    <content type="html">&lt;p&gt;The acronym CaaS has meant Container-as-a-Service for cloud infrastructure teams for years — Kubernetes, EKS, managed runtimes. That definition still holds. But a second, structurally larger meaning is emerging: &lt;strong&gt;Company-as-a-Service&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;This article is about the second kind.&lt;/p&gt;
&lt;h2&gt;The Problem That Predates the Solution&lt;/h2&gt;
&lt;p&gt;Running a company requires eight distinct functions: engineering, marketing, legal, finance, operations, product, sales, and support. Each demands domain expertise. Each generates decisions. And decisions in one domain constrain every other — the legal strategy limits marketing campaigns, the financial model drives the product roadmap, the engineering architecture defines operational complexity.&lt;/p&gt;
&lt;p&gt;For most of business history, the only way to hold that coordination surface was to hire people who talked to each other. The organization &lt;em&gt;was&lt;/em&gt; the coordination system. More functions meant more people. Headcount scaled with the company&#39;s surface area.&lt;/p&gt;
&lt;p&gt;The solo founder faced a structural ceiling — not a lack of intelligence or drive, but a coordination bottleneck. You cannot review your own code, run your own marketing campaigns, draft your own contracts, and build your own product simultaneously. Time is finite. Attention fragments. Things fall through the gaps.&lt;/p&gt;
&lt;p&gt;AI tools softened the ceiling. Coding assistants accelerated engineering. General-purpose models drafted copy. But the ceiling did not disappear. Each tool solved a fragment. None solved the coordination.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Company-as-a-Service is the architecture that addresses the deeper problem.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;What Company-as-a-Service Actually Is&lt;/h2&gt;
&lt;p&gt;Company-as-a-Service is a platform architecture in which AI agents run every business department — marketing, legal, finance, operations, product, engineering, sales, support — and share a single compounding knowledge base.&lt;/p&gt;
&lt;p&gt;The key word is &lt;em&gt;share&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Most AI tools are stateless. Session one and session one hundred start from the same blank context. The marketing agent does not know what the legal agent decided. The product agent has no visibility into what the engineering agent already built. Every function operates in isolation, and the founder pays the integration cost in time, context-switching, and dropped threads.&lt;/p&gt;
&lt;p&gt;A CaaS platform breaks this pattern. When the legal agent drafts a contract, that decision enters the shared knowledge base. When the marketing agent writes copy, it references the brand guide the brand-architect agent already established. When the engineering agent ships a feature, the product agent&#39;s spec is already in context.&lt;/p&gt;
&lt;p&gt;The company has memory. The founder makes decisions. The system executes — and compounds.&lt;/p&gt;
&lt;h2&gt;The Three Properties That Define the Category&lt;/h2&gt;
&lt;p&gt;Not every multi-agent platform qualifies as Company-as-a-Service. Three properties separate the category from adjacent tools:&lt;/p&gt;
&lt;h3&gt;1. Full-Spectrum Domain Coverage&lt;/h3&gt;
&lt;p&gt;A CaaS platform covers every function a company needs to operate — not just engineering, not just marketing. The test: can a solo founder delegate legal review, run a marketing campaign, model financial scenarios, manage competitive intelligence, and ship a feature &lt;em&gt;without&lt;/em&gt; switching platforms?&lt;/p&gt;
&lt;p&gt;Partial coverage is a copilot. Full coverage is an organization.&lt;/p&gt;
&lt;h3&gt;2. Cross-Domain Knowledge Coherence&lt;/h3&gt;
&lt;p&gt;Agents must share context. The legal agent should know the brand voice. The marketing agent should know the compliance constraints. The financial agent should know the product roadmap. Without cross-domain coherence, a multi-agent platform is just several isolated tools installed in the same interface.&lt;/p&gt;
&lt;p&gt;Knowledge coherence is what makes compounding possible. Every decision, document, and learned pattern routes back into the shared knowledge base. The system gets smarter with every task — not because the models improved, but because the institutional memory accumulated.&lt;/p&gt;
&lt;h3&gt;3. Founder-in-the-Loop Authority&lt;/h3&gt;
&lt;p&gt;A CaaS platform amplifies founder judgment — it does not replace it. The founder remains the decision-maker. Agents execute with domain expertise and full context, but they do not override the human at the top of the hierarchy.&lt;/p&gt;
&lt;p&gt;This is the distinction from fully autonomous AI companies. The founder&#39;s judgment is not a bug in the human-AI relationship. It is the product&#39;s core value proposition.&lt;/p&gt;
&lt;h2&gt;How Soleur Implements CaaS&lt;/h2&gt;
&lt;p&gt;Soleur is the open-source CaaS platform. The architecture has three layers:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Agents&lt;/strong&gt; are AI specialists, each with deep expertise in a specific domain or function. Soleur ships 60+ agents across all eight business departments. Domain leaders (CMO, CTO, CFO, CLO, COO, CPO, CRO, CCO) orchestrate specialist teams within each domain. These are not chatbots — they are stateful, tool-using, multi-step executors that produce real artifacts: code, contracts, campaigns, financial models.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Skills&lt;/strong&gt; are compound workflows — sequences of agent invocations, tool calls, and decision gates that accomplish structured tasks. The &lt;code&gt;brainstorm&lt;/code&gt; skill runs a multi-agent requirements workshop. The &lt;code&gt;plan&lt;/code&gt; skill produces an implementation plan with risk analysis. The &lt;code&gt;compound&lt;/code&gt; skill captures learnings after every session and routes them back into the knowledge base. There are 60+ skills covering the full brainstorm-plan-implement-review-compound lifecycle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The knowledge base&lt;/strong&gt; is the compounding layer — a git-tracked directory of markdown files that agents read and write as they work. It contains brand guides, competitive intelligence, financial models, architectural decisions, legal templates, and captured learnings from every prior session. No vector database. No embeddings. No black box. The knowledge base is a directory the founder can open, read, and edit directly.&lt;/p&gt;
&lt;p&gt;When these three layers operate together, the result is an organization that learns. A solo founder running Soleur in month six operates with qualitatively more leverage than in month one — not because the models improved, but because the knowledge base accumulated.&lt;/p&gt;
&lt;h2&gt;CaaS vs. Everything Else&lt;/h2&gt;
&lt;p&gt;The market has several categories that look adjacent. None of them are the same thing.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;AI assistants&lt;/strong&gt; (ChatGPT, Claude.ai, Gemini) are stateless, general-purpose, session-scoped. No business context. No domain specialization. No memory between sessions. Excellent for one-off tasks; structurally incapable of running a company.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;AI coding assistants&lt;/strong&gt; (Cursor, GitHub Copilot) solve the engineering slice — the fraction of a company&#39;s work that involves writing code. They are increasingly sophisticated within that domain. They do not run marketing campaigns, draft contracts, or model financial scenarios.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Agent frameworks&lt;/strong&gt; (CrewAI, AutoGen, LangGraph) provide primitives for building multi-agent systems. They are developer tools that require the user to architect agents, define workflows, build the knowledge layer, and maintain infrastructure. CaaS is the finished product built on those primitives.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Fully autonomous AI companies&lt;/strong&gt; attempt full autonomy — the system makes decisions without founder involvement. Soleur explicitly rejects this model. Founder judgment is the product&#39;s core value, not a limitation to engineer around.&lt;/p&gt;
&lt;h2&gt;What a Solo Founder Can Actually Delegate&lt;/h2&gt;
&lt;p&gt;With a CaaS platform operational, the surface area a solo founder can manage increases by an order of magnitude. Concretely:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Marketing:&lt;/strong&gt; Campaign planning, copy drafts, competitive analysis, SEO audits, social distribution — delegated to the CMO and its eleven specialist agents&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Legal:&lt;/strong&gt; Contract drafts, compliance audits, GDPR gate checks, legal document generation — delegated to the CLO&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Engineering:&lt;/strong&gt; Architecture review, code review, test design, security scanning, performance analysis — delegated to the CTO and its review team&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Finance:&lt;/strong&gt; Budget planning, revenue forecasting, burn rate modeling — delegated to the CFO&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Operations:&lt;/strong&gt; Vendor research, expense tracking, infrastructure planning — delegated to the COO&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Product:&lt;/strong&gt; Requirements analysis, UX audits, competitive intelligence, business validation — delegated to the CPO&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What remains with the founder: decisions, priorities, judgment calls, and relationships — the things that actually require being human.&lt;/p&gt;
&lt;h2&gt;The Compounding Effect&lt;/h2&gt;
&lt;p&gt;The most important property of Company-as-a-Service is not what it does on day one. It is what it does on day three hundred.&lt;/p&gt;
&lt;p&gt;Every session captures learnings. Every document produced enters the knowledge base. Every decision made becomes available context for the next decision. The system does not reset. It accumulates.&lt;/p&gt;
&lt;p&gt;This is the mechanism behind the prediction. Dario Amodei, CEO of Anthropic, &lt;a href=&quot;https://officechai.com/ai/the-first-one-person-billon-dollar-startup-will-be-a-reality-by-2026-anthropic-ceo-dario-amodei/&quot;&gt;forecast that a one-person billion-dollar company would emerge as soon as 2026&lt;/a&gt; — not as a curiosity but as a structural outcome of AI agents extending beyond engineering into every function a company needs. The solo founder building with a CaaS platform today is not waiting for that future. They are already inside it.&lt;/p&gt;
&lt;hr&gt;
&lt;details&gt;
&lt;summary&gt;What is Company-as-a-Service (CaaS)?&lt;/summary&gt;
&lt;p&gt;Company-as-a-Service is a platform architecture where AI agents run every business department — marketing, legal, finance, engineering, operations, product, sales, and support — and share a single compounding knowledge base. Unlike a copilot or assistant, a CaaS platform covers the full organizational surface and enables cross-domain coordination through persistent, shared context.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;How is Company-as-a-Service different from a multi-agent framework?&lt;/summary&gt;
&lt;p&gt;Agent frameworks like CrewAI or LangGraph provide primitives for building multi-agent systems. They are developer tools that require the user to architect agents, define workflows, build the knowledge layer, and maintain infrastructure. Company-as-a-Service is the finished product — pre-built agents, skills, and a compounding knowledge base ready to run every business department out of the box.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;Does a CaaS platform replace the founder?&lt;/summary&gt;
&lt;p&gt;No. Soleur&#39;s model is founder-in-the-loop: the founder makes decisions, agents execute with domain expertise and full business context, and outputs return for human review. Agents handle the execution volume. Judgment stays human.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;What is the knowledge base in a CaaS platform?&lt;/summary&gt;
&lt;p&gt;The knowledge base is a git-tracked directory of markdown files that agents read and write as they work. It stores brand guides, competitive intelligence, financial models, architectural decisions, legal templates, and learnings from every prior session. It is not a black box — the founder can open, read, and edit it directly. Over time it becomes the institutional memory of the company.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;What departments does Soleur cover?&lt;/summary&gt;
&lt;p&gt;Soleur covers all eight business departments: engineering, marketing, legal, finance, operations, product, sales, and support. Each domain has a leader agent (CTO, CMO, CFO, CLO, COO, CPO, CRO, CCO) that orchestrates a specialist team within the department.&lt;/p&gt;
&lt;/details&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is Company-as-a-Service (CaaS)?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Company-as-a-Service is a platform architecture where AI agents run every business department — marketing, legal, finance, engineering, operations, product, sales, and support — and share a single compounding knowledge base. Unlike a copilot or assistant, a CaaS platform covers the full organizational surface and enables cross-domain coordination through persistent, shared context.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How is Company-as-a-Service different from a multi-agent framework?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Agent frameworks like CrewAI or LangGraph provide primitives for building multi-agent systems. They are developer tools that require the user to architect agents, define workflows, build the knowledge layer, and maintain infrastructure. Company-as-a-Service is the finished product — pre-built agents, skills, and a compounding knowledge base ready to run every business department out of the box.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does a CaaS platform replace the founder?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;No. Soleur&#39;s model is founder-in-the-loop: the founder makes decisions, agents execute with domain expertise and full business context, and outputs return for human review. Agents handle the execution volume. Judgment stays human.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is the knowledge base in a CaaS platform?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The knowledge base is a git-tracked directory of markdown files that agents read and write as they work. It stores brand guides, competitive intelligence, financial models, architectural decisions, legal templates, and learnings from every prior session. It is not a black box — the founder can open, read, and edit it directly. Over time it becomes the institutional memory of the company.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What departments does Soleur cover?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Soleur covers all eight business departments: engineering, marketing, legal, finance, operations, product, sales, and support. Each domain has a leader agent (CTO, CMO, CFO, CLO, COO, CPO, CRO, CCO) that orchestrates a specialist team within the department.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Soleur vs. CrewAI: AI Agent Framework vs. AI Organization</title>
    <link href="https://www.soleur.ai/blog/soleur-vs-crewai/" />
    <updated>2026-05-07T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/soleur-vs-crewai/</id>
    <content type="html">&lt;p&gt;CrewAI is frequently searched alongside Soleur, which is notable because the two are not in the same category. CrewAI is a Python framework for building custom multi-agent AI systems. Soleur is the &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; platform — 66 agents, 73 skills, and a compounding knowledge base organized across 8 business departments.&lt;/p&gt;
&lt;p&gt;Comparing them is legitimate only as a decision-making exercise: a solo founder evaluating both is deciding whether to build multi-agent infrastructure with CrewAI or deploy the pre-built AI organization that Soleur provides. That is a real choice with real tradeoffs.&lt;/p&gt;
&lt;h2&gt;What CrewAI Actually Is&lt;/h2&gt;
&lt;p&gt;CrewAI is an open-source Python framework, founded by João Moura in 2023, that enables developers to build custom multi-agent AI systems. With over 45,000 GitHub stars, it has become one of the most widely adopted multi-agent frameworks in the Python ecosystem.&lt;/p&gt;
&lt;p&gt;The framework provides primitives for defining agents with specific roles, goals, and backstories; assigning tools to agents; and structuring the relationships between agents — whether sequential (one agent feeds the next) or hierarchical (a manager agent routes work to specialists).&lt;/p&gt;
&lt;p&gt;A CrewAI crew is something a developer builds. You define the agents, specify their tools, set the process, and deploy the resulting system. The framework is unopinionated about what the crew does — a developer could build a research pipeline, a content production system, an engineering review workflow, or a financial analysis system. The primitives are general-purpose; the application is defined entirely by the developer.&lt;/p&gt;
&lt;p&gt;CrewAI also offers CrewAI AMP, a managed cloud platform that hosts and scales custom crews without requiring self-managed infrastructure. CrewAI Flows provides event-driven and stateful orchestration for complex multi-agent sequences.&lt;/p&gt;
&lt;h2&gt;What Soleur Actually Is&lt;/h2&gt;
&lt;p&gt;Soleur is the &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; platform. 66 agents, 73 skills, and a compounding knowledge base organized across 8 business departments — engineering, marketing, legal, finance, operations, product, sales, support, and community.&lt;/p&gt;
&lt;p&gt;No assembly required. The agent organization exists the moment the plugin is installed. The legal agent drafts contracts. The competitive intelligence agent maps the market. The engineering agents run the brainstorm-plan-implement-review-compound lifecycle. The financial agents model revenue and track expenses. The brand-architect agent defines brand identity that every downstream marketing agent inherits.&lt;/p&gt;
&lt;p&gt;The compounding knowledge base is the structural component that does not exist in CrewAI&#39;s framework model: a git-tracked directory of Markdown files that agents write to and read from across sessions. Decisions made in session 1 shape what agents produce in session 50. Cross-domain intelligence is the default, not a custom integration.&lt;/p&gt;
&lt;h2&gt;The Build vs. Deploy Distinction&lt;/h2&gt;
&lt;p&gt;This is the decision axis. CrewAI asks: &amp;quot;What multi-agent system do you want to build?&amp;quot; Soleur asks: &amp;quot;What work does your company need to execute?&amp;quot;&lt;/p&gt;
&lt;p&gt;A developer using CrewAI starts with a blank framework and constructs exactly the agent system their use case requires. The ceiling is high — any multi-agent workflow expressible in Python is theoretically buildable. The floor requires engineering. Defining agents, wiring tools, testing process flows, deploying infrastructure, and iterating on failure modes is work before the work gets done.&lt;/p&gt;
&lt;p&gt;Soleur starts from the other direction. The agents exist. The skills are documented. The domain coverage is pre-built. A solo founder installs the platform and asks the legal agent to review a vendor contract, the marketing agent to run competitive analysis, and the engineering agents to plan a feature — on day one, without building anything.&lt;/p&gt;
&lt;p&gt;The tradeoff is real: CrewAI&#39;s flexibility means you can build exactly what you need. Soleur&#39;s pre-built coverage means you cannot extend it with the same degree of control a custom framework allows. But for most solo founders, the bottleneck is not having a custom multi-agent framework — it is having enough organizational capacity to get the work done.&lt;/p&gt;
&lt;h2&gt;Where They Differ&lt;/h2&gt;
&lt;h3&gt;What You&#39;re Getting&lt;/h3&gt;
&lt;p&gt;CrewAI: a Python framework. Primitives for building multi-agent systems — agent definitions, tool assignments, process structures, flow orchestration. The output of using CrewAI is a custom-built multi-agent system.&lt;/p&gt;
&lt;p&gt;Soleur: a pre-built AI organization. 66 agents across 8 departments, ready to run within the Claude Code environment. The output of using Soleur is organizational execution across business domains.&lt;/p&gt;
&lt;h3&gt;Required Investment&lt;/h3&gt;
&lt;p&gt;CrewAI: engineering investment upfront. Defining agents, integrating tools, testing and debugging agent interactions, deploying the resulting system. The framework reduces implementation complexity but does not eliminate it.&lt;/p&gt;
&lt;p&gt;Soleur: installation. The organization is available immediately. Ongoing investment is in decision quality — providing judgment at the gates the agents surface — not in building the infrastructure.&lt;/p&gt;
&lt;h3&gt;Knowledge Persistence&lt;/h3&gt;
&lt;p&gt;CrewAI: per-crew, per-session by default. Memory capabilities depend on what the developer builds — there is no built-in compounding knowledge base that persists across all sessions and domains out of the box. Integrating persistent cross-session memory requires custom implementation.&lt;/p&gt;
&lt;p&gt;Soleur: cross-domain, cross-session by design. The compounding knowledge base accumulates organizational intelligence across all departments. When the legal agent documents a compliance requirement, the engineering agents reference it. When the competitive intelligence agent maps the market, the product agents incorporate it into the roadmap. Memory is structural, not optional.&lt;/p&gt;
&lt;h3&gt;Target User&lt;/h3&gt;
&lt;p&gt;CrewAI: developers building custom multi-agent systems. The target is an engineer who needs to orchestrate AI agents for a specific workflow and wants a framework that handles agent coordination, tool use, and process definition.&lt;/p&gt;
&lt;p&gt;Soleur: solo founders replacing a full organizational structure. The target is a founder who needs marketing, legal, finance, engineering, operations, product, sales, support, and community work executed — and wants agents that already know how to do those jobs.&lt;/p&gt;
&lt;h3&gt;Open Source Model&lt;/h3&gt;
&lt;p&gt;CrewAI: open-source framework (MIT license), with CrewAI AMP as a managed cloud tier. The framework can be self-hosted and extended.&lt;/p&gt;
&lt;p&gt;Soleur: open-source platform (Claude Code plugin). Both the agent definitions and skill implementations are inspectable and extendable. Your costs are the Claude API credits your workflows consume.&lt;/p&gt;
&lt;h3&gt;Ecosystem&lt;/h3&gt;
&lt;p&gt;CrewAI: large developer ecosystem. The framework&#39;s GitHub repository has accumulated significant community contributions, tool integrations, and example crews across diverse use cases.&lt;/p&gt;
&lt;p&gt;Soleur: purpose-built for the Company-as-a-Service use case. The ecosystem depth is vertical — 66 agents covering every business domain — rather than horizontal across arbitrary use cases.&lt;/p&gt;
&lt;h2&gt;When CrewAI Is the Right Choice&lt;/h2&gt;
&lt;p&gt;CrewAI is the right choice when the problem is building a custom multi-agent system for a specific workflow that does not map to an existing product. A company that needs a specialized research pipeline, a domain-specific content generation system, or a bespoke data-processing agent workflow — where the exact behavior needs to be defined at the framework level — should build with CrewAI rather than adapt a pre-built product.&lt;/p&gt;
&lt;p&gt;CrewAI also makes sense when the primary requirement is integrating with existing Python infrastructure. The framework&#39;s Python-native design integrates naturally into existing codebases, CI/CD pipelines, and data workflows.&lt;/p&gt;
&lt;p&gt;And if the goal is understanding how multi-agent systems work at the framework level — agent coordination, tool use, and process design from first principles — CrewAI&#39;s primitives are the appropriate starting point.&lt;/p&gt;
&lt;h2&gt;When Soleur Is the Right Choice&lt;/h2&gt;
&lt;p&gt;Soleur is the right choice when the problem is organizational capacity, not infrastructure. A solo founder who needs the work done across multiple business domains — not the framework to build the system that does the work — gets organizational execution from day one.&lt;/p&gt;
&lt;p&gt;The compounding knowledge base is the differentiator that CrewAI cannot replicate without custom engineering. A founder whose legal agent documents compliance requirements that the engineering agents subsequently reference — without any custom integration work — gets cross-domain intelligence as a default behavior.&lt;/p&gt;
&lt;p&gt;And for founders who do not want to spend engineering time building agent infrastructure before using it, the pre-built organizational model eliminates the build-before-run problem entirely.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Dimension&lt;/th&gt;
&lt;th&gt;CrewAI&lt;/th&gt;
&lt;th&gt;Soleur&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;What it is&lt;/td&gt;
&lt;td&gt;Python framework&lt;/td&gt;
&lt;td&gt;Pre-built AI organization&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Setup required&lt;/td&gt;
&lt;td&gt;Significant (agent design, tool wiring, deployment)&lt;/td&gt;
&lt;td&gt;Minimal (plugin install)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Business domain coverage&lt;/td&gt;
&lt;td&gt;Build-your-own&lt;/td&gt;
&lt;td&gt;8 departments, pre-built&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cross-domain knowledge base&lt;/td&gt;
&lt;td&gt;Custom implementation required&lt;/td&gt;
&lt;td&gt;Built-in, compounding&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Target user&lt;/td&gt;
&lt;td&gt;Developers building custom agent systems&lt;/td&gt;
&lt;td&gt;Solo founders needing org capacity&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Language requirement&lt;/td&gt;
&lt;td&gt;Python&lt;/td&gt;
&lt;td&gt;None (Claude Code native)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Open source&lt;/td&gt;
&lt;td&gt;Yes (MIT)&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pricing&lt;/td&gt;
&lt;td&gt;Free (framework) / CrewAI AMP (cloud)&lt;/td&gt;
&lt;td&gt;Free (API costs)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Q: Can CrewAI and Soleur be used together?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Yes, at different layers. A developer could build custom CrewAI crews for specialized workflows that extend beyond Soleur&#39;s domain coverage, while using Soleur&#39;s pre-built agents for standard business operations. They operate in different environments — CrewAI in Python, Soleur in Claude Code — so integration would require bridging the two surfaces. For most solo founders, the organizational coverage Soleur provides makes building supplemental crews unnecessary.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Is CrewAI a competitor to Soleur?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Only in the sense that a founder might search both when evaluating multi-agent AI options. The categories are different: CrewAI is developer infrastructure for building multi-agent systems; Soleur is a pre-built AI organization for running a company. A founder choosing between them is choosing between building organizational capacity and deploying it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Does Soleur use a framework like CrewAI internally?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Soleur is built on Claude Code&#39;s agent SDK rather than a general-purpose Python framework. Agents are defined as structured Markdown files with frontmatter routing metadata; skills are sequential workflow documents that the Claude Code runtime interprets. The architecture is filesystem-native and human-readable — every agent definition and skill is a file the founder can read, edit, and extend.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: What if I need capabilities Soleur doesn&#39;t have?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Soleur is open-source. Agent and skill definitions are Markdown files in the plugin directory — inspectable, editable, and extensible. Adding a new agent or skill follows the same pattern as the existing ones. The plugin loader discovers new agents automatically. For truly custom workflow requirements that need Python integration and arbitrary tool access, CrewAI&#39;s framework model is the appropriate choice.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Can CrewAI and Soleur be used together?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Yes, at different layers. A developer could build custom CrewAI crews for specialized workflows that extend beyond Soleur&#39;s domain coverage, while using Soleur&#39;s pre-built agents for standard business operations. They operate in different environments — CrewAI in Python, Soleur in Claude Code — so integration would require bridging the two surfaces.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is CrewAI a competitor to Soleur?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Only in the sense that a founder might search both when evaluating multi-agent AI options. The categories are different: CrewAI is developer infrastructure for building multi-agent systems; Soleur is a pre-built AI organization for running a company.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does Soleur use a framework like CrewAI internally?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Soleur is built on Claude Code&#39;s agent SDK rather than a general-purpose Python framework. Agents are defined as structured Markdown files with frontmatter routing metadata; skills are sequential workflow documents that the Claude Code runtime interprets. The architecture is filesystem-native and human-readable.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What if I need capabilities Soleur doesn&#39;t have?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Soleur is open-source. Agent and skill definitions are Markdown files in the plugin directory — inspectable, editable, and extensible. Adding a new agent or skill follows the same pattern as the existing ones. For truly custom workflow requirements that need Python integration and arbitrary tool access, CrewAI&#39;s framework model is the appropriate choice.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Soleur vs. Tanka: Memory AI vs. Execution Intelligence</title>
    <link href="https://www.soleur.ai/blog/soleur-vs-tanka/" />
    <updated>2026-05-05T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/soleur-vs-tanka/</id>
    <content type="html">&lt;p&gt;Both Tanka and Soleur make the same surface claim: AI that never forgets. Tanka markets itself as your &amp;quot;AI co-founder with long-term memory&amp;quot; — a memory-native platform that captures everything your team has said, decided, and discussed across Slack, Gmail, Notion, and WhatsApp. Soleur is the &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; platform — 66 agents, 73 skills, and a compounding knowledge base organized across 8 business departments.&lt;/p&gt;
&lt;p&gt;The memory claim is where the similarity ends. What each system remembers, and what it does with that memory, reveals two categorically different tools.&lt;/p&gt;
&lt;h2&gt;What Tanka Actually Is&lt;/h2&gt;
&lt;p&gt;Tanka is a memory-native AI messenger for teams. Its core technology — EverMemOS, launched in September 2025 — connects to existing communication tools and turns past conversations into searchable, persistent organizational memory. When a founder needs to recall what was discussed in a meeting three weeks ago, or surface a decision buried in a Slack thread, Tanka retrieves it.&lt;/p&gt;
&lt;p&gt;The platform&#39;s Memory Transfer feature moves role-specific knowledge between teammates. Tanka&#39;s AI Smart Reply drafts context-aware messages based on what the system knows about past conversations. The Fundraising Agent, launched in September 2025, helps founders draft pitch materials, practice investor interviews, and request warm introductions through a venture capital network partnership.&lt;/p&gt;
&lt;p&gt;Tanka positions this as &amp;quot;AI co-founder&amp;quot; functionality: it is the company&#39;s memory layer — a searchable record of everything the team has ever communicated. EverMemOS claimed a Locomo score of 92.3% at launch, which Tanka described as the highest reported benchmark result for long-context memory systems at the time.&lt;/p&gt;
&lt;h2&gt;What Soleur Actually Is&lt;/h2&gt;
&lt;p&gt;Soleur is the &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; platform. 66 agents, 73 skills, and a compounding knowledge base organized across 8 business departments — engineering, marketing, legal, finance, operations, product, sales, support, and community.&lt;/p&gt;
&lt;p&gt;The compounding knowledge base is not a record of what was said. It is a git-tracked directory of Markdown files — architectural decisions, brand guidelines, competitive analyses, legal compliance requirements, financial models, and product roadmaps — that agents read and write to with every session. When the legal agent documents a compliance requirement, the engineering agents reference it before building. When the brand-architect agent defines the brand guide, every piece of marketing copy reflects it. When the competitive intelligence agent updates the market landscape, the product agent incorporates it into the roadmap.&lt;/p&gt;
&lt;p&gt;Every decision the founder makes becomes institutional memory that the entire organization inherits. The twenty-first session benefits from everything the previous twenty sessions produced.&lt;/p&gt;
&lt;h2&gt;Communication Memory vs. Execution Memory&lt;/h2&gt;
&lt;p&gt;This is the architectural distinction that determines which tool solves your actual problem. Tanka captures what was communicated. Soleur captures what was decided and executes on it.&lt;/p&gt;
&lt;p&gt;Tanka&#39;s memory is retrievable: search for a past conversation, recall a decision buried in an email thread, avoid re-explaining context to a new team member. It solves organizational amnesia — the cost of re-finding and re-explaining information that already exists somewhere in the company&#39;s communication history.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s memory is generative: the legal compliance requirement documented in session 4 changes what the engineering agents build in session 19. The competitive analysis from session 7 shapes the product roadmap in session 12. The brand guide written in session 1 governs every marketing asset produced from that point forward. The memory does not just retrieve — it influences every subsequent execution.&lt;/p&gt;
&lt;p&gt;A solo founder using Tanka has a searchable record of everything their team discussed. A solo founder using Soleur has an organization that gets smarter with every decision they make.&lt;/p&gt;
&lt;h2&gt;The Solo Founder Problem Each Solves&lt;/h2&gt;
&lt;p&gt;Tanka&#39;s primary value proposition is team memory. The platform is designed for teams: Memory Transfer explicitly moves knowledge between teammates; AI Smart Reply drafts messages in a team communication context; the pricing structure (free under 50 users, $299/month for teams of 50+) reflects a team-centric model.&lt;/p&gt;
&lt;p&gt;A solo founder without a team gets the memory retrieval capability, but the team-collaboration features have no team to collaborate with. Tanka&#39;s planned Agent Store will extend functional agents for GTM, hiring, and product management into the platform — narrowing the execution gap for those specific domains. But the agents are downstream of the memory layer. The communication infrastructure is the primary product.&lt;/p&gt;
&lt;p&gt;Soleur is built specifically for one person replacing an entire organization. The brainstorm-to-ship lifecycle runs a solo founder through the work that a CEO, CMO, CLO, CFO, COO, CPO, CRO, and CCO would collectively handle — not by retrieving what was said, but by executing what needs to be done. Legal contracts get drafted. Competitive analyses get run. Financial models get built. Engineering reviews get completed. The founder provides judgment at decision gates. Agents handle execution.&lt;/p&gt;
&lt;h2&gt;Where They Differ&lt;/h2&gt;
&lt;h3&gt;Memory Architecture&lt;/h3&gt;
&lt;p&gt;Tanka: communication-layer memory. EverMemOS connects to Slack, Gmail, Notion, and WhatsApp and makes conversation history searchable and retrievable. Memory lives in what the team communicated.&lt;/p&gt;
&lt;p&gt;Soleur: execution-layer memory. A git-tracked knowledge base that agents write to and read from across sessions. Memory lives in what was decided, built, and learned — not in conversation logs, but in structured artifacts that directly influence future agent behavior.&lt;/p&gt;
&lt;h3&gt;Primary Use Case&lt;/h3&gt;
&lt;p&gt;Tanka: recalling and surfacing past conversations and decisions for teams. Making organizational memory searchable.&lt;/p&gt;
&lt;p&gt;Soleur: executing work across 8 business domains with agents that compound organizational knowledge with every session.&lt;/p&gt;
&lt;h3&gt;Agent Scope&lt;/h3&gt;
&lt;p&gt;Tanka: Fundraising Agent (September 2025), with GTM, hiring, and product management agents in the roadmap Agent Store.&lt;/p&gt;
&lt;p&gt;Soleur: 66 agents across 8 departments — engineering, marketing, legal, finance, operations, product, sales, support, and community — running in the founder&#39;s development environment with access to the full compounding knowledge base.&lt;/p&gt;
&lt;h3&gt;Platform Model&lt;/h3&gt;
&lt;p&gt;Tanka: memory-native AI messenger. The foundation is communication infrastructure; agents are the extension layer.&lt;/p&gt;
&lt;p&gt;Soleur: execution-native AI organization. The foundation is agent-driven workflow; the knowledge base is the compounding memory layer.&lt;/p&gt;
&lt;h3&gt;Pricing&lt;/h3&gt;
&lt;p&gt;Tanka: free for teams under 50 users. $29/month (Plus), $199/month (Pro) for individuals with higher credit allocations. $299/month for teams of 50 or more.&lt;/p&gt;
&lt;p&gt;Soleur: open-source, free platform. Your costs are the Claude API credits the agents consume.&lt;/p&gt;
&lt;h3&gt;Who It Is Built For&lt;/h3&gt;
&lt;p&gt;Tanka: teams dealing with organizational amnesia — distributed teams and growing startups where knowledge management across communication tools is the bottleneck.&lt;/p&gt;
&lt;p&gt;Soleur: solo founders who need to replace a full organization with AI — not to remember what was said, but to execute what needs to be done across every department.&lt;/p&gt;
&lt;h2&gt;When Tanka Is the Right Choice&lt;/h2&gt;
&lt;p&gt;If the primary problem is organizational memory across a distributed team — critical decisions getting lost in Slack threads, new team members needing to reconstruct context that already exists, cross-tool conversation history being unsearchable — Tanka addresses that problem directly.&lt;/p&gt;
&lt;p&gt;Tanka also makes sense if the workflow is already centered on team messaging and communication tools and the value needed is memory layered on top of that existing infrastructure. EverMemOS&#39;s approach to making communication history retrievable and actionable is purpose-built for this.&lt;/p&gt;
&lt;h2&gt;When Soleur Is the Right Choice&lt;/h2&gt;
&lt;p&gt;If the bottleneck is not memory retrieval but execution across multiple business domains — legal work that does not get done, competitive analysis that never happens, financial models that are not built, engineering that ships without code review — Soleur covers the work, not just the memory of the work.&lt;/p&gt;
&lt;p&gt;Solo founders without a team get the full value of Soleur&#39;s agent organization from day one. There is no team-collaboration layer to route around — the agents execute directly from the founder&#39;s judgment.&lt;/p&gt;
&lt;p&gt;And when execution produces institutional memory — when the legal agent documents a compliance requirement that shapes what engineering builds next — that memory is generative, not retrievable. It does not surface the past. It improves the future.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;What you need&lt;/th&gt;
&lt;th&gt;Tanka&lt;/th&gt;
&lt;th&gt;Soleur&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Searchable conversation history&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Memory across Slack, Gmail, Notion&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI Smart Reply for team messaging&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Memory Transfer between teammates&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fundraising Agent&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pre-built agents for legal, marketing, finance&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cross-domain compounding knowledge base&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Full workflow lifecycle (brainstorm through ship)&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Solo-founder-first design&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Open-source&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pricing&lt;/td&gt;
&lt;td&gt;Free (&amp;lt;50 users) / $29–199/mo&lt;/td&gt;
&lt;td&gt;Free (API costs)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Q: Can Tanka and Soleur be used together?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Yes, with distinct roles. Tanka handles communication memory — making team conversations and decisions retrievable. Soleur handles organizational execution — running agents across legal, marketing, finance, engineering, and other domains. A founder with a small team could use Tanka to index communication history while using Soleur for the cross-domain execution work. The knowledge bases serve different functions: Tanka&#39;s is communication-derived; Soleur&#39;s is decision-derived.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Tanka claims to be an &amp;quot;AI co-founder.&amp;quot; What does that mean in practice?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Tanka&#39;s &amp;quot;AI co-founder&amp;quot; positioning refers to its persistent memory: unlike most AI tools that forget past conversations, Tanka retains organizational context across sessions. A co-founder who remembers everything discussed is the framing. In practice, Tanka retrieves and surfaces past information rather than executing new work. The co-founder metaphor describes the memory persistence, not the execution breadth.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: How does Soleur&#39;s knowledge base differ from Tanka&#39;s memory?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Tanka&#39;s memory captures what was communicated — conversations, messages, and documents that already exist in tools like Slack and Gmail. Soleur&#39;s knowledge base captures what was decided and why — brand guides, competitive analyses, architectural decisions, compliance requirements, financial models — as structured artifacts that agents write to and reference in future sessions. Tanka surfaces what already happened; Soleur&#39;s knowledge base changes what happens next.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Does Tanka&#39;s planned Agent Store change the comparison?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Tanka&#39;s planned Agent Store will extend functional agents for GTM, hiring, and product management into the platform. When shipped, this will narrow the execution gap for those specific domains. It will not address the cross-domain coherence that Soleur&#39;s compounding knowledge base provides — an agent built on top of a communication memory layer operates from what was said, not from the accumulated organizational intelligence that Soleur&#39;s cross-department knowledge base produces.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Can Tanka and Soleur be used together?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Yes, with distinct roles. Tanka handles communication memory — making team conversations and decisions retrievable. Soleur handles organizational execution — running agents across legal, marketing, finance, engineering, and other domains. The knowledge bases serve different functions: Tanka&#39;s is communication-derived; Soleur&#39;s is decision-derived.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Tanka claims to be an &#39;AI co-founder.&#39; What does that mean in practice?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Tanka&#39;s &#39;AI co-founder&#39; positioning refers to its persistent memory: unlike most AI tools that forget past conversations, Tanka retains organizational context across sessions. In practice, Tanka retrieves and surfaces past information rather than executing new work. The co-founder metaphor describes the memory persistence, not the execution breadth.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How does Soleur&#39;s knowledge base differ from Tanka&#39;s memory?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Tanka&#39;s memory captures what was communicated — conversations, messages, and documents that already exist in tools like Slack and Gmail. Soleur&#39;s knowledge base captures what was decided and why — brand guides, competitive analyses, architectural decisions, compliance requirements, financial models — as structured artifacts that agents write to and reference in future sessions. Tanka surfaces what already happened; Soleur&#39;s knowledge base changes what happens next.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does Tanka&#39;s planned Agent Store change the comparison?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Tanka&#39;s planned Agent Store will extend functional agents for GTM, hiring, and product management into the platform. When shipped, this will narrow the execution gap for those specific domains. It will not address the cross-domain coherence that Soleur&#39;s compounding knowledge base provides — an agent built on top of a communication memory layer operates from what was said, not from the accumulated organizational intelligence that Soleur&#39;s cross-department knowledge base produces.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Best Claude Code Plugins 2026: The Extensions Worth Installing</title>
    <link href="https://www.soleur.ai/blog/best-claude-code-plugins-2026/" />
    <updated>2026-04-30T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/best-claude-code-plugins-2026/</id>
    <content type="html">&lt;p&gt;The &lt;a href=&quot;https://github.com/anthropics/claude-plugins-official&quot;&gt;official Claude Code plugin marketplace&lt;/a&gt; crossed 100 reviewed plugins by early 2026. The community ecosystem is larger still — &lt;a href=&quot;https://claudemarketplaces.com/&quot;&gt;claudemarketplaces.com&lt;/a&gt; tracks 4,200+ skills and 770+ MCP servers as of April 2026. The problem is no longer finding plugins. It is knowing which ones earn the context window space they consume at every session start.&lt;/p&gt;
&lt;p&gt;This guide covers the extensions that earn their keep, the evaluation framework you should apply before installing anything, and the distinction between adding a specialized workflow versus replacing the full overhead of running a company.&lt;/p&gt;
&lt;h2&gt;How to Evaluate a Claude Code Plugin&lt;/h2&gt;
&lt;p&gt;Every installed plugin loads into your context window at session start. That cost is not theoretical — it accumulates, compresses prior context, and reduces what Claude can hold from your actual project. Before installing, three questions:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Do you use this workflow at least weekly?&lt;/strong&gt; If not, the context tax is not worth it.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Does the plugin bundle MCP servers?&lt;/strong&gt; Claude Code&#39;s MCP Tool Search (lazy loading) reduces tool definition context use by up to 95%, so MCP-heavy plugins cost less than they used to. Skill text still loads eagerly.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Is the capability bespoke, or would a one-line CLAUDE.md instruction achieve it?&lt;/strong&gt; Many &amp;quot;plugins&amp;quot; are three-line system prompt additions. The real ones restructure what the agent can do.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;With that framework, here are the plugins that survive the filter in 2026.&lt;/p&gt;
&lt;h2&gt;The Best Claude Code Plugins in 2026&lt;/h2&gt;
&lt;h3&gt;1. Context7 — Live Documentation Access&lt;/h3&gt;
&lt;p&gt;The single most broadly useful documentation plugin in the ecosystem. &lt;a href=&quot;https://github.com/anthropics/claude-plugins-official&quot;&gt;Context7&lt;/a&gt; provides real-time, version-accurate documentation for libraries and frameworks. Without it, Claude Code is constrained to its training cutoff — a meaningful problem for fast-moving ecosystems (React 19, Next.js 15, Tailwind v4, Rails 8) where the API surface has shifted since the model was trained.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Why it earns its keep:&lt;/strong&gt; Hallucinated API signatures are the most common cause of wasted iteration in agentic coding sessions. Context7 eliminates the category. Among the official marketplace plugins, it consistently ranks among the most widely adopted documentation-class extensions.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;claude plugin install context7@claude-plugins-official
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;2. frontend-design — Design Intelligence for UI Work&lt;/h3&gt;
&lt;p&gt;The &lt;a href=&quot;https://github.com/anthropics/claude-plugins-official&quot;&gt;frontend-design plugin&lt;/a&gt; adds aesthetic judgment that the base model lacks by default: typography hierarchy, color palette coherence, layout density decisions. The difference is visible immediately — before the plugin, AI-generated UIs look like textbook CRUD. After, they look like someone with design opinions built them.&lt;/p&gt;
&lt;p&gt;It is consistently one of the most-installed plugins in the official marketplace, ranking at the top of install charts tracked by independent directories.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Why it earns its keep:&lt;/strong&gt; Design feedback is expensive to source externally. For solo builders shipping UIs without a designer, this is the nearest approximation the ecosystem currently offers.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;claude plugin install frontend-design@claude-plugins-official
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;3. code-review — Parallel Review Agents&lt;/h3&gt;
&lt;p&gt;The &lt;a href=&quot;https://github.com/anthropics/claude-plugins-official&quot;&gt;code-review plugin&lt;/a&gt; runs multiple specialized review agents in parallel against a pull request — security, performance, style, correctness — and synthesizes findings with confidence scores. Standard Claude Code review happens serially in a single context. This plugin structures it as parallel expert opinions.&lt;/p&gt;
&lt;p&gt;For solo engineers who cannot afford a review from a senior colleague on every PR, the parallel agent model is a meaningful upgrade over the default.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;claude plugin install code-review@claude-plugins-official
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;4. Playwright — Browser Automation in the Coding Session&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/anthropics/claude-plugins-official&quot;&gt;Playwright&lt;/a&gt; connects Claude Code directly to a Chrome instance. The agent navigates, fills forms, runs assertions, and debugs on a live page without leaving the coding session. For frontend development and QA workflows, this eliminates the context switch between writing code and verifying it in the browser.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;claude plugin install playwright@claude-plugins-official
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;5. Figma MCP — Design-to-Code Without the Translation Layer&lt;/h3&gt;
&lt;p&gt;The &lt;a href=&quot;https://github.com/anthropics/claude-plugins-official&quot;&gt;Figma plugin&lt;/a&gt; gives Claude Code direct read access to your design files — components, tokens, layout specs — from the source instead of from screenshots or verbal descriptions. For teams where design and engineering are handled by one person, this closes the biggest handoff gap in the stack.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;claude plugin install figma@claude-plugins-official
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;6. security-guidance — Passive Vulnerability Scanning&lt;/h3&gt;
&lt;p&gt;The &lt;a href=&quot;https://github.com/anthropics/claude-plugins-official&quot;&gt;security-guidance plugin&lt;/a&gt; hooks into file edit events and scans for vulnerabilities as Claude writes code: command injection, XSS, input validation gaps. It does not require an explicit review step. For anyone shipping code to production without a dedicated security review process, it is a baseline install.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;claude plugin install security-guidance@claude-plugins-official
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;7. GitHub MCP — Issue and PR Management In-Session&lt;/h3&gt;
&lt;p&gt;The official &lt;a href=&quot;https://github.com/anthropics/claude-plugins-official&quot;&gt;GitHub plugin&lt;/a&gt; lets Claude Code read and write issues, pull requests, and repository metadata without leaving the terminal session. For solo builders managing a backlog alone, collapsing the context switch between the terminal and the browser removes a real friction point.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;claude plugin install github@claude-plugins-official
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;The Different Question: What About the Full Organization Layer?&lt;/h2&gt;
&lt;p&gt;Everything above extends Claude Code for a specific capability — better documentation access, better UI generation, better code review. Each plugin is a better tool for one job.&lt;/p&gt;
&lt;p&gt;There is a different class of extension that does not improve one job. It replaces the eight jobs a solo founder does in a week. Not just coding: marketing, legal, competitive intelligence, financial planning, operations, product strategy, customer support. All of it, with a shared knowledge layer across domains so that every agent knows what every other agent decided.&lt;/p&gt;
&lt;p&gt;That is what &lt;a href=&quot;https://www.soleur.ai&quot;&gt;Soleur&lt;/a&gt; is. Not a plugin in the same category as Playwright or Figma — a Company-as-a-Service platform that runs as a Claude Code extension. 60+ agents across eight business departments. 60+ skills that run the full engineering lifecycle from brainstorm to production. A compounding knowledge base that makes each task inform every task that follows.&lt;/p&gt;
&lt;p&gt;The distinction is not subtle: the plugins above make you better at the things you are already doing. Soleur changes the scope of what you can do alone.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;claude plugin install soleur
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The install is one command. What ships behind it is an AI organization that reviews your code, drafts your contracts, monitors your competitors, tracks your pipeline, and compounds its knowledge of your business with every task.&lt;/p&gt;
&lt;h2&gt;What to Skip&lt;/h2&gt;
&lt;p&gt;A few categories fail the weekly-use filter for most workflows:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Productivity scaffolding plugins&lt;/strong&gt; (daily standups, meeting note formatters, time trackers) — these are CLAUDE.md instructions, not plugins. They do not warrant the permanent context overhead.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Duplicate LSP coverage&lt;/strong&gt; — if your IDE already runs a language server for Go, Java, or C#, the corresponding Claude Code LSP plugin adds load without new capability. Install only if you work in environments where the IDE LSP is unavailable.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Omnibus &amp;quot;connect to everything&amp;quot; automation plugins&lt;/strong&gt; — plugins that expose hundreds of tools across dozens of services load that entire surface area into context whether or not you are using any of it. Prefer targeted MCP integrations (Stripe, Cloudflare, Vercel, GitHub) over broad connectors.&lt;/p&gt;
&lt;h2&gt;The Stack Worth Running&lt;/h2&gt;
&lt;p&gt;For a solo technical founder, the practical install list looks like this:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Plugin&lt;/th&gt;
&lt;th&gt;Use case&lt;/th&gt;
&lt;th&gt;Install&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;context7&lt;/td&gt;
&lt;td&gt;Live docs for any library&lt;/td&gt;
&lt;td&gt;&lt;code&gt;claude plugin install context7@claude-plugins-official&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;frontend-design&lt;/td&gt;
&lt;td&gt;UI generation with design judgment&lt;/td&gt;
&lt;td&gt;&lt;code&gt;claude plugin install frontend-design@claude-plugins-official&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;code-review&lt;/td&gt;
&lt;td&gt;Parallel multi-agent PR review&lt;/td&gt;
&lt;td&gt;&lt;code&gt;claude plugin install code-review@claude-plugins-official&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;playwright&lt;/td&gt;
&lt;td&gt;Browser automation in-session&lt;/td&gt;
&lt;td&gt;&lt;code&gt;claude plugin install playwright@claude-plugins-official&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;github&lt;/td&gt;
&lt;td&gt;Issue and PR management&lt;/td&gt;
&lt;td&gt;&lt;code&gt;claude plugin install github@claude-plugins-official&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;soleur&lt;/td&gt;
&lt;td&gt;Full AI organization across all departments&lt;/td&gt;
&lt;td&gt;&lt;code&gt;claude plugin install soleur&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;The first five make the engineering workflow faster. The last one changes what one person can build.&lt;/p&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;h3&gt;What is a Claude Code plugin?&lt;/h3&gt;
&lt;p&gt;A Claude Code plugin is an extension that bundles custom slash commands, specialized agents, skills, hooks, and MCP server integrations into a single installable unit. When installed, plugins extend Claude Code with domain knowledge, tool connections, or workflow automation. The &lt;a href=&quot;https://github.com/anthropics/claude-plugins-official&quot;&gt;official Anthropic marketplace&lt;/a&gt; hosts 100+ reviewed plugins across development, security, cloud, and productivity categories.&lt;/p&gt;
&lt;h3&gt;What is the difference between a Claude Code plugin, a skill, and an MCP server?&lt;/h3&gt;
&lt;p&gt;A plugin is the container — it can bundle all three. A skill is a workflow the agent follows to complete a structured task (e.g., a code review lifecycle or a content generation pipeline). An MCP server connects the agent to an external tool or API (e.g., Stripe, GitHub, Cloudflare). A plugin installs them together as a single unit.&lt;/p&gt;
&lt;h3&gt;How many Claude Code plugins exist in 2026?&lt;/h3&gt;
&lt;p&gt;The official Anthropic marketplace lists 100+ reviewed plugins as of early 2026. Community directories track 4,200+ skills and 770+ MCP servers across the broader Claude Code extension ecosystem as of April 2026, per &lt;a href=&quot;https://claudemarketplaces.com/&quot;&gt;claudemarketplaces.com&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Do Claude Code plugins slow down sessions?&lt;/h3&gt;
&lt;p&gt;Yes — skill definitions and agent instructions load into the context window at session start. Installing plugins you use infrequently creates a permanent per-session cost. MCP server tool definitions benefit from lazy loading (MCP Tool Search reduces tool definition context use by up to 95%), but skill text loads eagerly. The practical rule: install plugins you use at least weekly; skip the rest.&lt;/p&gt;
&lt;h3&gt;What is the best Claude Code plugin for solo founders?&lt;/h3&gt;
&lt;p&gt;For founders managing both engineering and business operations, &lt;a href=&quot;https://www.soleur.ai&quot;&gt;Soleur&lt;/a&gt; covers the most ground — 60+ agents across eight departments (engineering, marketing, legal, finance, operations, product, sales, support) with a cross-domain knowledge base that compounds with every task. For pure engineering workflows, context7 and code-review earn their install fastest.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is a Claude Code plugin?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;A Claude Code plugin is an extension that bundles custom slash commands, specialized agents, skills, hooks, and MCP server integrations into a single installable unit. When installed, plugins extend Claude Code with domain knowledge, tool connections, or workflow automation. The official Anthropic marketplace hosts 100+ reviewed plugins across development, security, cloud, and productivity categories.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is the difference between a Claude Code plugin, a skill, and an MCP server?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;A plugin is the container — it can bundle all three. A skill is a workflow the agent follows to complete a structured task (e.g., a code review lifecycle or a content generation pipeline). An MCP server connects the agent to an external tool or API (e.g., Stripe, GitHub, Cloudflare). A plugin installs them together as a single unit.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How many Claude Code plugins exist in 2026?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The official Anthropic marketplace lists 100+ reviewed plugins as of early 2026. Community directories track 4,200+ skills and 770+ MCP servers across the broader Claude Code extension ecosystem as of April 2026.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Do Claude Code plugins slow down sessions?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Yes — skill definitions and agent instructions load into the context window at session start. Installing plugins you use infrequently creates a permanent per-session cost. MCP server tool definitions benefit from lazy loading (MCP Tool Search reduces tool definition context use by up to 95%), but skill text loads eagerly. The practical rule: install plugins you use at least weekly; skip the rest.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is the best Claude Code plugin for solo founders?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;For founders managing both engineering and business operations, Soleur (https://www.soleur.ai) covers the most ground — 60+ agents across eight departments (engineering, marketing, legal, finance, operations, product, sales, support) with a cross-domain knowledge base that compounds with every task. For pure engineering workflows, context7 and code-review earn their install fastest.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Knowledge Compounding in AI Development: How Compound Engineering Beats Point Solutions</title>
    <link href="https://www.soleur.ai/blog/knowledge-compounding-in-ai-development/" />
    <updated>2026-04-23T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/knowledge-compounding-in-ai-development/</id>
    <content type="html">&lt;p&gt;Most AI tools are amnesiac. They begin each session with no memory of prior work, no knowledge of decisions made, no context accumulated from months of iteration. You prompt, they respond. The session ends. The next session begins from zero.&lt;/p&gt;
&lt;p&gt;This is the architecture of a tool, not an organization. And for the founder trying to build at scale, it is the limiting factor that no prompt engineering, no model upgrade, and no additional tool subscription can solve.&lt;/p&gt;
&lt;p&gt;Knowledge compounding is the architectural answer.&lt;/p&gt;
&lt;h2&gt;What Knowledge Compounding Is&lt;/h2&gt;
&lt;p&gt;Knowledge compounding in AI development is the systematic capture, organization, and reuse of decisions across every domain — so that each AI task starts from a more informed baseline than the last.&lt;/p&gt;
&lt;p&gt;It is not a feature. It is an architecture decision: do the outputs of your AI sessions persist in a form that future sessions can read and build on, or do they disappear when the context window closes?&lt;/p&gt;
&lt;p&gt;In a compound engineering system, they persist. The legal agent&#39;s contract position becomes a constraint the engineering agents reference before writing a feature. The brand guide the marketing agent updates gets read by every content-generation agent on every subsequent task. The competitive intelligence report from last quarter informs the product roadmap discussion today. The architectural decision recorded in a prior session becomes the reference point for the code review next month.&lt;/p&gt;
&lt;p&gt;Every task teaches the system. Every session starts smarter than the last.&lt;/p&gt;
&lt;h2&gt;The Problem with Point Solutions&lt;/h2&gt;
&lt;p&gt;Point solutions plateau because they are stateless.&lt;/p&gt;
&lt;p&gt;A stateless AI tool — even a highly capable one — runs each task without knowledge of prior context. The marketing agent doesn&#39;t know the legal agent determined that a particular claim creates regulatory exposure. The engineering agent doesn&#39;t know the product agent changed the spec. The financial model in the spreadsheet doesn&#39;t update when the sales pipeline shifts.&lt;/p&gt;
&lt;p&gt;The founder ends up serving as the relay: reading the output of one tool, summarizing it, pasting it into the next tool, hoping nothing gets lost in translation. This is not delegation. It is manual coordination with extra steps.&lt;/p&gt;
&lt;p&gt;As Soleur&#39;s &lt;a href=&quot;https://www.soleur.ai/blog/why-most-agentic-tools-plateau/&quot;&gt;analysis of why agentic tools plateau&lt;/a&gt; documented, the ceiling of point solutions is not the model&#39;s capability — it is the absence of an architecture that preserves and routes knowledge between tasks. The model could be more capable and the problem would remain. Statefulness is not a property of language models; it has to be built.&lt;/p&gt;
&lt;h2&gt;The Compound Engineering Lifecycle&lt;/h2&gt;
&lt;p&gt;Compound engineering is the practice of treating each development task as a step in a lifecycle that deposits knowledge, not just as a transaction that produces an output.&lt;/p&gt;
&lt;p&gt;The lifecycle has five stages:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Brainstorm.&lt;/strong&gt; Before building anything, explore the problem space with context. What has the company already decided about this domain? What constraints exist from legal, brand, and product strategy? The brainstorm stage is not open-ended ideation — it is ideation against the knowledge base.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Plan.&lt;/strong&gt; Translate the brainstorm into a concrete implementation plan. The plan inherits the constraints surfaced in the brainstorm. Engineering plans reference security requirements. Marketing plans reference brand guidelines. Legal plans reference established positions. Cross-domain awareness before the first line of code is written.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Implement.&lt;/strong&gt; Execute against the plan. Agents handle the execution; the founder provides judgment at decision gates. Nothing ships without review.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Review.&lt;/strong&gt; Multi-perspective review before output is accepted. An engineering review catches security, performance, and quality issues. A legal review catches compliance exposure. A brand review catches voice inconsistencies. The review stage is where the cost of wrong is lowest — catching a problem in review is orders of magnitude cheaper than catching it in production.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Compound.&lt;/strong&gt; The most important and most frequently skipped stage. After implementation, capture what was learned: what decisions were made, what constraints were discovered, what worked and what didn&#39;t. The compound stage is what makes the next task better than this one. Skip it, and the knowledge dies with the session.&lt;/p&gt;
&lt;h2&gt;What Gets Captured&lt;/h2&gt;
&lt;p&gt;The knowledge base in a compound engineering system is not a database. It is a collection of human-readable documents that agents can both read and write to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Architecture decisions&lt;/strong&gt; — why the system is structured the way it is, what alternatives were rejected, what constraints drove the choice&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Legal positions&lt;/strong&gt; — what the compliance requirements are, what claims the legal agent has approved, what data handling approaches have been cleared&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Brand decisions&lt;/strong&gt; — the brand guide, tone examples, visual identity, vocabulary do&#39;s and don&#39;ts&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Competitive intelligence&lt;/strong&gt; — what competitors are doing, how the product is positioned relative to them, what claims are defensible&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Product specifications&lt;/strong&gt; — what is being built, what the acceptance criteria are, what the user is supposed to experience&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Engineering learnings&lt;/strong&gt; — what patterns have been established, what bugs have been fixed and why, what architectural choices have been made&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Each of these is a domain of knowledge that a point solution would require the founder to carry manually. In a compound system, agents carry it.&lt;/p&gt;
&lt;h2&gt;Why Compounding Creates Structural Advantage&lt;/h2&gt;
&lt;p&gt;The compound effect is asymmetric. Two founders starting with the same AI capability but different architectures will diverge faster than linear.&lt;/p&gt;
&lt;p&gt;The founder using stateless point solutions improves at the rate of their own learning. Each task is independent. Experience accumulates in the founder&#39;s head, not in the system.&lt;/p&gt;
&lt;p&gt;The founder using a compound engineering architecture improves at the rate of organizational learning. Each task improves the system&#39;s knowledge of the company&#39;s constraints, decisions, and preferences. The fifth legal review is better than the first not because the model improved, but because the knowledge base contains the first four reviews&#39; worth of company-specific context.&lt;/p&gt;
&lt;p&gt;After 60 sessions, the gap is not marginal. The compound system has accumulated a knowledge base representing months of decision history. The stateless system&#39;s effective knowledge is exactly what the founder managed to paste into the context window for that session.&lt;/p&gt;
&lt;p&gt;This is the structural advantage that compound knowledge creates: not faster individual tasks, but a system that builds organizational knowledge over time. The earlier you start building the knowledge layer, the deeper the advantage becomes before the market catches up.&lt;/p&gt;
&lt;h2&gt;Implementing Compound Engineering&lt;/h2&gt;
&lt;p&gt;The starting point is not a tool purchase. It is an architecture decision.&lt;/p&gt;
&lt;p&gt;The question is: where does the output of your AI sessions go?&lt;/p&gt;
&lt;p&gt;If the answer is &amp;quot;into the context window, then gone,&amp;quot; the system is stateless. Every session starts from zero. The founder is the only persistent layer.&lt;/p&gt;
&lt;p&gt;If the answer is &amp;quot;into a structured knowledge base that future agents can read,&amp;quot; the system compounds. Each session builds on every prior session.&lt;/p&gt;
&lt;p&gt;The knowledge base does not need to be complex. At Soleur, it is a collection of markdown files organized by domain and committed to the repository. Agents can read any file. Any agent can write a learning. The git history provides an audit trail. The result is an institutional memory that every agent in every domain can access — without the founder acting as the relay.&lt;/p&gt;
&lt;p&gt;The discipline is consistency: after every significant task, run the compound step. Document the decisions made. Capture the constraints discovered. Record what worked. The compounding does not happen automatically — it happens because the lifecycle includes a mandatory stage at the end that makes it happen.&lt;/p&gt;
&lt;h2&gt;The Difference Between Learning and Compounding&lt;/h2&gt;
&lt;p&gt;There is a distinction worth making between individual task improvement and organizational compounding.&lt;/p&gt;
&lt;p&gt;An AI model that gets feedback and improves its next response is learning at the task level. That is useful. It is not compound engineering.&lt;/p&gt;
&lt;p&gt;Compound engineering is when the organizational knowledge — not just the model&#39;s capability — improves with each session. A better model with a stateless architecture still plateaus at coordination. A compound architecture with any sufficiently capable model builds leverage that grows over time.&lt;/p&gt;
&lt;p&gt;The model is the executor. The knowledge base is the organization. The founder&#39;s judgment is the decision layer. These three layers interact to produce compound results. Optimizing only the model while ignoring the knowledge layer is the structural mistake that keeps most founders working harder rather than building leverage.&lt;/p&gt;
&lt;p&gt;The &lt;a href=&quot;https://www.soleur.ai/blog/one-person-billion-dollar-company/&quot;&gt;one-person billion-dollar company&lt;/a&gt; becomes credible when this architecture is in place — not because the model is smarter, but because the organization it operates within remembers everything, connects everything, and improves with every session.&lt;/p&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;h3&gt;What is knowledge compounding in AI?&lt;/h3&gt;
&lt;p&gt;Knowledge compounding in AI is the architectural practice of capturing the outputs, decisions, and learnings from AI sessions in a persistent knowledge base so that future sessions can read and build on them. It is the opposite of a stateless tool architecture, where each session begins fresh. With knowledge compounding, every task makes the system more capable — not because the model improves, but because the organization&#39;s accumulated knowledge grows.&lt;/p&gt;
&lt;h3&gt;What is compound engineering?&lt;/h3&gt;
&lt;p&gt;Compound engineering is a development practice that structures every task as a step in a knowledge-building lifecycle: brainstorm, plan, implement, review, and compound. The compound stage — capturing what was learned — is what makes each subsequent task better than the last. A compound engineering system accumulates architectural decisions, established patterns, and resolved edge cases in a readable knowledge base that agents reference on every future task.&lt;/p&gt;
&lt;h3&gt;How is knowledge compounding different from fine-tuning an AI model?&lt;/h3&gt;
&lt;p&gt;Fine-tuning modifies the model&#39;s weights to improve performance on a specific task distribution. Knowledge compounding does not modify the model at all — it builds an organizational knowledge layer alongside the model. Fine-tuning improves what the model knows at training time. Knowledge compounding improves what the organization knows in real time, with every task. These are complementary approaches; they address different layers of the system.&lt;/p&gt;
&lt;h3&gt;Can any AI tool support compound engineering, or is specialized tooling required?&lt;/h3&gt;
&lt;p&gt;The compound engineering lifecycle can be implemented with any AI tool capable of reading and writing files. The requirement is not a specific tool — it is a discipline of capturing outputs to a persistent knowledge base and a structured practice of reading that knowledge base at the start of each task. Specialized tooling like Soleur automates this lifecycle so the compound step happens as part of the workflow rather than as a manual afterthought. But the architecture decision — stateful vs. stateless — is independent of any specific tool.&lt;/p&gt;
&lt;h3&gt;What does a compound knowledge base actually look like?&lt;/h3&gt;
&lt;p&gt;In practice, a compound knowledge base is a set of structured documents organized by domain: engineering architecture decisions, legal positions, brand guidelines, competitive intelligence, product specifications. These documents are human-readable, human-editable, and accessible by AI agents. They live in the repository alongside the code, updated through a disciplined compound step at the end of each significant task. The knowledge base is not a database — it is institutional memory in document form.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is knowledge compounding in AI?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Knowledge compounding in AI is the architectural practice of capturing the outputs, decisions, and learnings from AI sessions in a persistent knowledge base so that future sessions can read and build on them. It is the opposite of a stateless tool architecture, where each session begins fresh. With knowledge compounding, every task makes the system more capable — not because the model improves, but because the organization&#39;s accumulated knowledge grows.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is compound engineering?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Compound engineering is a development practice that structures every task as a step in a knowledge-building lifecycle: brainstorm, plan, implement, review, and compound. The compound stage — capturing what was learned — is what makes each subsequent task better than the last. A compound engineering system accumulates architectural decisions, established patterns, and resolved edge cases in a readable knowledge base that agents reference on every future task.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How is knowledge compounding different from fine-tuning an AI model?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Fine-tuning modifies the model&#39;s weights to improve performance on a specific task distribution. Knowledge compounding does not modify the model at all — it builds an organizational knowledge layer alongside the model. Fine-tuning improves what the model knows at training time. Knowledge compounding improves what the organization knows in real time, with every task.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Can any AI tool support compound engineering, or is specialized tooling required?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The compound engineering lifecycle can be implemented with any AI tool capable of reading and writing files. The requirement is not a specific tool — it is a discipline of capturing outputs to a persistent knowledge base and a structured practice of reading that knowledge base at the start of each task. Specialized tooling like Soleur automates this lifecycle so the compound step happens as part of the workflow rather than as a manual afterthought.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What does a compound knowledge base actually look like?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;In practice, a compound knowledge base is a set of structured documents organized by domain: engineering architecture decisions, legal positions, brand guidelines, competitive intelligence, product specifications. These documents are human-readable, human-editable, and accessible by AI agents. They live in the repository alongside the code, updated through a disciplined compound step at the end of each significant task.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Agents That Use APIs, Not Browsers (2026)</title>
    <link href="https://www.soleur.ai/blog/agents-that-use-apis-not-browsers/" />
    <updated>2026-04-23T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/agents-that-use-apis-not-browsers/</id>
    <content type="html">&lt;p&gt;Running a company alone means running a lot of vendor dashboards. Cloudflare, Stripe, Plausible, Resend, Hetzner — every one of them is a tab you keep open, a form you fill out, a setting you remember to flip. &amp;quot;Service automation&amp;quot; is the layer that lets an agent do that vendor work on your behalf, through the same APIs you would call by hand. Soleur&#39;s service automation shipped this week, and it is open source.&lt;/p&gt;
&lt;p&gt;The bet underneath it: &lt;strong&gt;agents should talk to APIs, not browsers.&lt;/strong&gt; We spent a month proving that out. Here is what we built, what we rejected, and what you can use today.&lt;/p&gt;
&lt;h2&gt;What service automation is, in one sentence&lt;/h2&gt;
&lt;p&gt;Service automation is the capability that lets an AI agent provision, configure, and operate third-party services — create a DNS record, issue a Stripe refund, spin up a Plausible site — by calling vendor APIs directly, using tokens you own, on your behalf.&lt;/p&gt;
&lt;p&gt;That sentence matters because the phrase &amp;quot;service automation&amp;quot; is doing real work in the industry right now. Some tools mean &amp;quot;an agent that drives a browser through a dashboard.&amp;quot; Others mean &amp;quot;a workflow engine that chains Zapier-style connectors.&amp;quot; We mean neither. We mean an agent that reads a vendor&#39;s API contract, holds your token, makes the HTTP call, handles the error, and writes the result back into your knowledge base.&lt;/p&gt;
&lt;p&gt;If you want the short version: &lt;strong&gt;your AI team gets credentials the same way a new hire does, and uses them the same way a senior engineer would — through the API, not the UI.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;The fork in the road: browsers or APIs&lt;/h2&gt;
&lt;p&gt;Back in March we had a real decision to make. Service automation had been validated by founder interviews as one of the top-three requests. The open question was &lt;em&gt;how&lt;/em&gt; an agent should actually carry out vendor work.&lt;/p&gt;
&lt;p&gt;The popular answer in the agent industry is browser automation: run Playwright on a server, let the agent log into each dashboard, click through the forms, scrape the confirmation page. It looks great in demos. It is also how most &amp;quot;agent platforms&amp;quot; you see on launch day are actually built.&lt;/p&gt;
&lt;p&gt;We rejected it. Four reasons, in the order they hurt:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Attack surface.&lt;/strong&gt; Running a headless browser on your server that logs into external dashboards on behalf of your users removes nothing from the threat model — it adds to it. A server-side browser that follows redirects, loads arbitrary pages, and accepts scripted input is the canonical shape of a server-side-request-forgery primitive. Going API-first removes the server-side browser attack surface.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cost.&lt;/strong&gt; Our CFO flagged 2–4× infra-cost risk if we relied on browser automation. Headless browsers are RAM-hungry, they need long-lived sessions, and they fail in ways that require retries. A single REST call costs fractions of a cent. A browser session costs meaningful money.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Drift.&lt;/strong&gt; Vendor dashboards change layout every few months. Vendor APIs change on deprecation schedules. If your automation tier is built on CSS selectors, every marketing redesign breaks your agent. If it is built on documented endpoints, you get years of stability.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Trust.&lt;/strong&gt; When a founder hands an agent a credential, they want to know where it lives and what it does. &amp;quot;Our server never opens a browser to your dashboard&amp;quot; is a promise we can keep. &amp;quot;Our scraper won&#39;t do anything weird&amp;quot; is not.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;So we went API-first and wrote the whole thing up in an architecture decision record. Three tiers, ordered by how much of the vendor universe they cover:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Tier 1 — Direct API + MCP.&lt;/strong&gt; Target allocation: roughly 80% of services. Design, not measurement.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Tier 2 — Local browser automation.&lt;/strong&gt; Target allocation: roughly 15%. This runs on the founder&#39;s own machine via our desktop app, not on our servers — different threat model entirely.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Tier 3 — Guided playbooks.&lt;/strong&gt; Target allocation: roughly 5%. Deep-linked dashboard instructions with human review gates, for the last mile where no API exists.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Those percentages are &lt;strong&gt;design allocation, not measured&lt;/strong&gt;. We are shipping the scaffolding this week; the real distribution will land over the next quarter as we grow coverage.&lt;/p&gt;
&lt;h2&gt;What shipped this week&lt;/h2&gt;
&lt;p&gt;The launch cut is honest about where we are. Three live API automations, two guided playbooks, fourteen BYOK providers wired into the credential layer.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Live automations (Tier 1):&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Cloudflare MCP&lt;/strong&gt; — DNS records, zone settings, page rules. Agents can configure a domain end-to-end.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Stripe MCP&lt;/strong&gt; — customers, subscriptions, refunds, webhook endpoints. Your finance agent moves money with your token, not a stolen session.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Plausible API&lt;/strong&gt; — create sites, read traffic, pull goal conversions. &lt;em&gt;(Note: &lt;code&gt;/api/v1/sites&lt;/code&gt; requires an Enterprise plan with a Sites API key — check your plan before wiring it up.)&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Guided playbooks (Tier 3):&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Hetzner&lt;/strong&gt; — server provisioning, volume attach, firewall rules. Deep-linked into the Hetzner cloud console with a pre-filled config.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Resend&lt;/strong&gt; — domain verification, API key issuance, send-test flow.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Credential layer (all tiers):&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;14 BYOK providers&lt;/strong&gt; hooked into the credential store.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;AES-256-GCM&lt;/strong&gt; for data-at-rest, &lt;strong&gt;per-user HKDF-SHA256&lt;/strong&gt; key derivation. Your tokens, encrypted at rest, used by your agents. Each user&#39;s ciphertext is keyed to their own derived secret — a database leak does not yield usable credentials without the per-user material.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The PR was 1,685 lines across 15 files, added 20+ new tests, and shipped green against the existing suite. It is public, it is open source, and you can read every line.&lt;/p&gt;
&lt;div class=&quot;cta-block&quot;&gt;
&lt;p&gt;&lt;strong&gt;Ready to try it?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://app.soleur.ai/?utm_source=blog&amp;utm_medium=cta&amp;utm_campaign=agents-that-use-apis-not-browsers&quot;&gt;Connect your repo&lt;/a&gt; at app.soleur.ai and let an agent provision your first service.&lt;/p&gt;
&lt;/div&gt;
&lt;h2&gt;Why this matters if you are building alone&lt;/h2&gt;
&lt;p&gt;The hardest thing about being a solo founder is not the engineering. It is the other seventy percent — the vendor dashboards, the DNS flips at 11pm, the Stripe webhook you forgot to subscribe, the Plausible site you keep meaning to create for the new landing page.&lt;/p&gt;
&lt;p&gt;Every one of those tasks is an API call. Every one of those API calls is something a well-briefed agent can handle, if — and only if — the agent has the credentials, the contract, and the authority.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s service automation gives the AI team all three. Credentials live in the encrypted BYOK layer. Contracts live in the MCP servers and playbook definitions. Authority lives in your repo — in the brand guide, the spec, the plan — where every agent reads from the same compounding knowledge base.&lt;/p&gt;
&lt;p&gt;That last part is the lock-in break. An agent that can call Cloudflare for you is useful. An agent that can call Cloudflare for you &lt;em&gt;and&lt;/em&gt; knows, from your brand guide, which domain owns which brand, &lt;em&gt;and&lt;/em&gt; knows, from last week&#39;s learning file, that you always want &lt;code&gt;Always Use HTTPS&lt;/code&gt; on — that is a teammate.&lt;/p&gt;
&lt;h2&gt;Why APIs compound and browsers do not&lt;/h2&gt;
&lt;p&gt;This is the same argument we made in &lt;a href=&quot;https://www.soleur.ai/blog/why-most-agentic-tools-plateau/&quot;&gt;why most agentic tools plateau&lt;/a&gt;, applied to a new surface.&lt;/p&gt;
&lt;p&gt;A browser-based automation is a snowflake. Every site has its own DOM, its own auth flow, its own anti-bot heuristics. Every fix is a one-off. Nothing transfers.&lt;/p&gt;
&lt;p&gt;An API-based automation is a contract. Once you have wrapped Stripe&#39;s API with agent-legible tools, the next agent that wants to issue a refund does not need to learn Stripe&#39;s dashboard — it needs to learn the contract, which is already documented, typed, and tested. The investment accrues.&lt;/p&gt;
&lt;p&gt;That is what makes this release structurally different from the service-automation stories you see from browser-agent startups. We are not shipping a pile of scrapers. We are shipping a typed, tested, credentialed automation substrate that every agent in the organization can call the same way — from the marketing agent that wants to create a Plausible goal to the ops agent that wants to check a Hetzner firewall.&lt;/p&gt;
&lt;h2&gt;What it looks like from the founder&#39;s seat&lt;/h2&gt;
&lt;p&gt;The mental model we optimized for: the founder never touches a token file, never inspects a response header, never writes a retry loop. They say what they want in plain language. The AI team handles the rest.&lt;/p&gt;
&lt;p&gt;A concrete example. You are launching a new landing page on a fresh subdomain. In a pre-automation world, that is a thirty-minute errand: open Cloudflare, add the CNAME, wait for propagation, open Plausible, create the site, copy the script tag, go back to the code, paste it, deploy, check analytics, realize the goal is not firing, go back to Plausible, create the goal. Eleven context switches.&lt;/p&gt;
&lt;p&gt;In the post-automation world it is one sentence to your ops agent: &amp;quot;Spin up &lt;code&gt;launch.soleur.ai&lt;/code&gt;, point it at the production app, and track signups as a conversion.&amp;quot; The agent resolves the domain against your Cloudflare zone, creates the DNS record, waits for propagation, creates the Plausible site, records the site ID in your knowledge base, writes the goal configuration, and comes back with a verification checklist. You approve. It is done.&lt;/p&gt;
&lt;p&gt;The time savings are real but secondary. The primary value is that the steps are now &lt;strong&gt;auditable and repeatable&lt;/strong&gt;. Every decision the agent made is committed to your repo. The next time you launch a subdomain, the agent reads the prior run, applies the same configuration, and only stops to ask about the deltas. This is the compounding effect applied to vendor work — the same substrate that makes engineering work compound now applies to the rest of the company.&lt;/p&gt;
&lt;h2&gt;How this was built&lt;/h2&gt;
&lt;p&gt;For anyone interested in the architectural argument underneath the release: the full decision is written up as ADR-002 (&amp;quot;Three-Tier Service Automation&amp;quot;) in the Soleur knowledge base. The short version is above. The long version walks through the CTO, CLO, and CFO objections to a server-side-browser design, the threat model we rejected, and the BYOK encryption scheme we adopted in its place. If you are building anything adjacent, it is worth reading as a template for &amp;quot;how to decide where agents get their hands dirty.&amp;quot;&lt;/p&gt;
&lt;p&gt;One rule we learned writing it: the moment you catch yourself saying &amp;quot;the agent will log in to the dashboard and…&amp;quot; — stop, and go find the API. In the rare case the vendor has no API, write a guided playbook and let the human keep the keys. Do not put a browser on your server.&lt;/p&gt;
&lt;h2&gt;What is next&lt;/h2&gt;
&lt;p&gt;Three live automations is a beachhead, not a platform. The roadmap from here:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Expand Tier 1 coverage: the shortlist is GitHub, Vercel, Supabase, and Mailchimp — all API-first, all natural fits for the MCP layer.&lt;/li&gt;
&lt;li&gt;Ship the first Tier 2 integrations through the desktop app, for vendors whose highest-value workflows genuinely require a browser session (think &amp;quot;download this monthly CSV report&amp;quot; or &amp;quot;confirm a TOTP prompt&amp;quot;).&lt;/li&gt;
&lt;li&gt;Measure the actual tier distribution in production and report it. The 80/15/5 target needs real data behind it before we trust it.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If there is a vendor you want your AI team to handle, file it as an issue on the repo. We prioritize by founder pain, not vendor size.&lt;/p&gt;
&lt;div class=&quot;cta-block&quot;&gt;
&lt;p&gt;&lt;strong&gt;Start here.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://app.soleur.ai/?utm_source=blog&amp;utm_medium=cta&amp;utm_campaign=agents-that-use-apis-not-browsers&quot;&gt;Connect your repo&lt;/a&gt; at app.soleur.ai and let an agent provision your first service.&lt;/p&gt;
&lt;/div&gt;
</content>
  </entry>
  <entry>
    <title>The Billion-Dollar Solo Founder Stack (2026)</title>
    <link href="https://www.soleur.ai/blog/billion-dollar-solo-founder-stack/" />
    <updated>2026-04-22T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/billion-dollar-solo-founder-stack/</id>
    <content type="html">&lt;h2&gt;What Is a Billion-Dollar Solo Founder?&lt;/h2&gt;
&lt;p&gt;A billion-dollar solo founder is one operator who runs a company generating a billion dollars in revenue by delegating every non-judgment function — engineering, marketing, legal, finance, operations, design, and customer service — to AI agents that share a compounding knowledge base. As Dario Amodei put it: &lt;a href=&quot;https://www.inc.com/ben-sherry/anthropic-ceo-dario-amodei-predicts-the-first-billion-dollar-solopreneur-by-2026/91193609&quot;&gt;&amp;quot;This is not a joke — you can have a one-person billion-dollar company within a year or two.&amp;quot;&lt;/a&gt; The founder&#39;s role is no longer execution. It is decision-making, taste, and accountability — scaled by a stack that handles everything else.&lt;/p&gt;
&lt;h2&gt;The Medvi Proof Point&lt;/h2&gt;
&lt;p&gt;The prediction is no longer a prediction. It happened.&lt;/p&gt;
&lt;p&gt;Matthew Gallagher launched &lt;a href=&quot;https://www.pymnts.com/artificial-intelligence-2/2026/the-one-person-billion-dollar-company-is-here/&quot;&gt;Medvi&lt;/a&gt; from a Los Angeles apartment in September 2024 with $20,000 of his own money. The only other person on payroll is his younger brother Elliot. By the end of the first year, Medvi had posted &lt;a href=&quot;https://www.pymnts.com/artificial-intelligence-2/2026/the-one-person-billion-dollar-company-is-here/&quot;&gt;$401 million in revenue&lt;/a&gt; across 250,000 customers at a 16.2% net profit margin. Year two is &lt;a href=&quot;https://www.therundown.ai/p/ai-just-made-the-billion-dollar-solo-founder-real&quot;&gt;tracking toward $1.8 billion in sales&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Context sharpens the number. Hims &amp;amp; Hers, Medvi&#39;s largest competitor in the GLP-1 telehealth category, reported &lt;a href=&quot;https://www.pymnts.com/artificial-intelligence-2/2026/the-one-person-billion-dollar-company-is-here/&quot;&gt;$2.4 billion of revenue with 2,442 employees and a 5.5% margin&lt;/a&gt;. Medvi is doing roughly three-quarters the revenue at triple the margin with one one-thousandth of the headcount. Nicholas Thompson, CEO of The Atlantic, &lt;a href=&quot;https://www.linkedin.com/posts/nicholasxthompson_the-most-interesting-thing-in-tech-a-man-activity-7445604524268052480-3VpA&quot;&gt;put it bluntly on LinkedIn&lt;/a&gt;: &amp;quot;A man named Matt Gallagher appears to have created the first one-person billion-dollar-revenue AI company — selling GLP-1s.&amp;quot;&lt;/p&gt;
&lt;p&gt;The stack Gallagher used is not proprietary. Every tool is available to anyone reading this sentence. Per &lt;a href=&quot;https://www.therundown.ai/p/ai-just-made-the-billion-dollar-solo-founder-real&quot;&gt;The Rundown AI&lt;/a&gt; and &lt;a href=&quot;https://www.pymnts.com/artificial-intelligence-2/2026/the-one-person-billion-dollar-company-is-here/&quot;&gt;PYMNTS&lt;/a&gt;, the Medvi build uses ChatGPT, Claude, and Grok for code and copy, Midjourney and Runway for advertising creative, and ElevenLabs for voice-based customer service, with custom agents stitching the systems together. The regulated functions — physician oversight, prescriptions, pharmacy fulfillment — are outsourced to CareValidate and OpenLoop. Everything else runs through AI that Gallagher himself directs.&lt;/p&gt;
&lt;p&gt;This is the shape of the proof. A commodity stack. A single operator. A business that clears nine-figure revenue in its first year and is on pace for ten figures in its second.&lt;/p&gt;
&lt;h2&gt;The Amodei Prediction, One Year Later&lt;/h2&gt;
&lt;p&gt;In May 2025, &lt;a href=&quot;https://www.inc.com/ben-sherry/anthropic-ceo-dario-amodei-predicts-the-first-billion-dollar-solopreneur-by-2026/91193609&quot;&gt;Dario Amodei predicted&lt;/a&gt; that a billion-dollar solopreneur would emerge in 2026. The canonical wording came during a press Q&amp;amp;A: &amp;quot;This is not a joke — you can have a one-person billion-dollar company within a year or two.&amp;quot; When pressed, Amodei revised the probability to 70 to 80 percent.&lt;/p&gt;
&lt;p&gt;Where he was wrong was the direction of his error. He underestimated the pace.&lt;/p&gt;
&lt;p&gt;Amodei guessed the first solo unicorn would emerge in a market with minimal &amp;quot;human-institution-centric&amp;quot; dependencies — proprietary trading, or developer tooling. The actual breakout came in regulated healthcare, a vertical nobody would have listed on a whiteboard of low-coordination industries. The mechanism was the one Amodei described, but the vertical that proved it was the one he would have bet against. GLP-1 telehealth in 2024-2026 happened to have the right shape: massive demand, outsource-able clinical operations, and a greenfield where a digitally-native brand could grab shelf space before the incumbents finished their integrations.&lt;/p&gt;
&lt;p&gt;The prediction is also not alone in the record. &lt;a href=&quot;https://fortune.com/2024/02/04/sam-altman-one-person-unicorn-silicon-valley-founder-myth/&quot;&gt;Sam Altman described&lt;/a&gt; an informal betting pool among tech executives for the first year it would happen. &lt;a href=&quot;https://www.benzinga.com/tech/25/05/45602384/jeff-bezos-backed-anthropics-ceo-says-the-first-billion-dollar-company-staffed-by-one-person-will-appear-next-year-hallucinations-unlikely-to-delay-lean-startups&quot;&gt;Benzinga&lt;/a&gt; and &lt;a href=&quot;https://officechai.com/ai/the-first-one-person-billon-dollar-startup-will-be-a-reality-by-2026-anthropic-ceo-dario-amodei/&quot;&gt;officechai&lt;/a&gt; both relayed the 70-80% figure alongside the prediction. What made Amodei&#39;s call specific was the timeline: within a year or two. We are now inside that window, and the first data point has arrived.&lt;/p&gt;
&lt;h2&gt;What Makes 2026 Different&lt;/h2&gt;
&lt;p&gt;The stack did not suddenly become possible. Three things converged.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Frontier-model multi-step reasoning.&lt;/strong&gt; Through 2024, AI agents could execute one-shot tasks but failed at the second or third chained step. GPT-4 era models needed a human to close every loop. The 2025-2026 generation — Claude Opus 4.x, GPT-5, Gemini 2.x — reason across chained plans, recover from errors mid-chain, and hold state across long-horizon tasks. Anthropic&#39;s &lt;a href=&quot;https://resources.anthropic.com/2026-agentic-coding-trends-report&quot;&gt;2026 Agentic Coding Trends Report&lt;/a&gt; documents the trajectory: roughly 60% of surveyed engineering work already passes through AI, with multi-agent coordination now the headline trend rather than single-shot autocomplete. That shift — from one assisted step to many coordinated ones — is the difference between a coding assistant and an engineering agent.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Model Context Protocol (MCP).&lt;/strong&gt; Agents that cannot reach your systems are toys. MCP, &lt;a href=&quot;https://www.anthropic.com/news/model-context-protocol&quot;&gt;introduced by Anthropic in late 2024&lt;/a&gt; and &lt;a href=&quot;https://modelcontextprotocol.io/&quot;&gt;now standardized across the industry&lt;/a&gt;, gives agents a consistent way to talk to your tools — filesystem, database, Stripe, Cloudflare, GitHub, Supabase. This is the plumbing that turns a chat interface into an operator. Without MCP, Medvi&#39;s stack would need bespoke glue between every service. With it, a single agent can read a ticket, query the pharmacy partner&#39;s API, draft a response in ElevenLabs voice, and log the interaction — without a human pasting outputs between tabs.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Orchestration layers.&lt;/strong&gt; Raw models plus raw MCP do not constitute an organization. The orchestration layer — Claude Code, Cursor, Soleur — packages the lifecycle: brainstorm, plan, implement, review, and compound. &lt;a href=&quot;https://www.cio.com/article/4134741/how-agentic-ai-will-reshape-engineering-workflows-in-2026.html&quot;&gt;CIO&#39;s 2026 coverage of agentic workflows&lt;/a&gt; names orchestration as the decisive 2026 shift — not the models, but the systems that string them together. A solo founder does not need to know how a model routes between tools; the orchestration layer handles it and captures the state so the next session starts smarter than the last.&lt;/p&gt;
&lt;p&gt;These three, together, are what separate 2026 from 2024. Strong reasoning plus universal tool access plus a lifecycle that compounds. Take any one away and the stack collapses back into point solutions.&lt;/p&gt;
&lt;h2&gt;The Stack by Function&lt;/h2&gt;
&lt;p&gt;A solo founder does not need eight tools. They need eight functions, each covered by either a specialist agent, a specialist tool, or a thin human layer where regulation requires one. Here is the functional stack that runs a 2026 company.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Engineering — Claude Code plus Soleur.&lt;/strong&gt; Code is the most mature function. Claude Code handles the keystrokes — writing, reviewing, refactoring, running tests. Soleur handles the organization around the code — brainstorm, plan, review, compound — so the engineering agent reads the brand guide before touching copy and the legal agent flags compliance constraints before the schema change lands. Gallagher&#39;s website, checkout flow, and ad pages were built this way. One operator. Multiple coordinated agents. Zero engineers on the cap table.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Marketing — Soleur marketing agents.&lt;/strong&gt; Eleven specialists covering brand, content, SEO, AEO, competitive intelligence, distribution, and campaign planning. The agents share a knowledge base, so the copywriter references the brand guide the brand architect wrote, the SEO agent aligns with the content calendar the campaign manager set, and every piece compounds on the last. This is the seam where point-tool stacks fail most visibly — marketing output without shared context reads like it was written by eleven unconnected freelancers, because functionally, it was.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Legal — Soleur legal agents plus licensed human counsel for jurisdictional matters.&lt;/strong&gt; Agents draft terms of service, privacy policies, standard vendor agreements, and compliance audits against GDPR, CCPA, and HIPAA. They flag what a contract says and what a regulation requires. They do not replace licensed counsel for anything that crosses a jurisdiction you have not yet cleared, and they do not file on your behalf. The pattern is straightforward: agents produce a defensible draft; a licensed attorney reviews and signs off on anything that carries real liability. &lt;em&gt;This section is not legal advice and is not a substitute for licensed counsel.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Finance — Soleur finance agents plus a CPA for filings.&lt;/strong&gt; Budgeting, revenue forecasting, unit economics, burn analysis, investor updates, and month-end close happen in agents. The knowledge base carries the chart of accounts, the pricing history, and the cash position across sessions. For tax filings, regulatory returns, and audited financials, a licensed CPA signs. The agent does the 90% that a bookkeeper and an FP&amp;amp;A analyst used to split; the CPA does the 10% that requires a license and a stamp. &lt;em&gt;This section is not tax or accounting advice and is not a substitute for a licensed CPA.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Operations — Zapier or Make.&lt;/strong&gt; The connective tissue. When a customer signs up, the ops layer routes the event to the pharmacy partner, notifies the support agent, updates the CRM, and books the revenue. Zapier and Make remain the cleanest substrates for this because they are deterministic — you want your payment pipeline to behave identically on the ten-thousandth run as on the first. Let agents design the workflows; let automation platforms execute them.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Design — Midjourney, Figma, or Canva.&lt;/strong&gt; Brand identity, ad creative, product UI. Midjourney and Runway generate the raw imagery. Figma or Canva assembles it into the artifacts that actually ship — the landing page, the ad set, the pitch deck. Gallagher used Midjourney and Runway to produce every piece of ad creative Medvi ran. The bottleneck for most solo founders is not pixel production; it is taste. Volume is free. Taste is the operator&#39;s job.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Customer Service — Custom agents plus ElevenLabs.&lt;/strong&gt; This is where Gallagher&#39;s stack gets specific. Per &lt;a href=&quot;https://www.pymnts.com/artificial-intelligence-2/2026/the-one-person-billion-dollar-company-is-here/&quot;&gt;PYMNTS&lt;/a&gt;, Medvi runs customer inquiries through custom AI agents backed by ElevenLabs voice, with human escalation only for clinical questions the agent is instructed to route to the outsourced physician network. The stack handles intent recognition, policy application, refund logic, and status checks at volume. A founder who built this right is awake when every customer is, in every timezone, in a voice indistinguishable from a call-center agent — at a cost per interaction approaching zero.&lt;/p&gt;
&lt;h2&gt;What Still Requires the Human&lt;/h2&gt;
&lt;p&gt;This is where the trust scaffolding lives. The stack is powerful. It is not autonomous.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Taste.&lt;/strong&gt; An agent can generate a hundred hero visuals. It cannot tell you which one reads as &lt;em&gt;your brand&lt;/em&gt;. An agent can draft ten positioning statements. It cannot tell you which one will land with a founder on Hacker News at 2 AM. Taste — the aesthetic, editorial, and strategic judgment that separates a brand from a content farm — is the part that does not yet transfer. The founders who win in 2026 are not the ones with the most compute. They are the ones whose taste is good enough that the compute amplifies the right thing.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Positioning.&lt;/strong&gt; Where you choose to compete is the single highest-leverage decision a company ever makes, and it is not a decision a model can make for you. The model can research the market, map the competitive landscape, and generate a dozen candidate wedges. The operator is the one who looks at the list and says &amp;quot;we go here, not there&amp;quot; — and then holds that line for eighteen months when the agent would happily pivot to the shinier adjacent wedge every week.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Final go/no-go.&lt;/strong&gt; Launching a product, shipping a feature, firing a vendor, signing a contract above a threshold. Every billion-dollar company has a handful of moments where one decision is load-bearing for the next five years. The agent&#39;s job is to surface the decision cleanly with the evidence attached. The founder&#39;s job is to make the call. Any stack that hides this boundary is a stack that will blow up spectacularly the first time a plausible-sounding hallucination crosses a compliance line.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Regulated actions.&lt;/strong&gt; Tax filings signed by a CPA. Litigation led by a licensed attorney. M&amp;amp;A closed by a banker. Jurisdictional legal advice delivered by someone barred in that jurisdiction. Clinical prescriptions written by a licensed physician. These exist at the intersection of liability and license, and the license belongs to a human. The pattern is not to replace them. It is to compress them — the CPA handles the filing, the agent handles the other 359 days of the year of bookkeeping that leads to the filing.&lt;/p&gt;
&lt;p&gt;The founder&#39;s job has not disappeared. It has concentrated. Execution is delegated. Judgment is not.&lt;/p&gt;
&lt;h2&gt;How Soleur Fits&lt;/h2&gt;
&lt;p&gt;The stack described above is assemble-it-yourself. Claude Code, Zapier, Midjourney, ElevenLabs — every piece is a separate tool, every piece is a separate login, every piece is a separate context window. Gallagher assembled his. Most founders will not.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.soleur.ai/vision/&quot;&gt;Soleur&lt;/a&gt; is the Company-as-a-Service platform that ships the organization prewired. 60+ agents across engineering, marketing, legal, finance, operations, product, sales, and support. 60+ skills covering the lifecycle: brainstorm, plan, implement, review, compound. One shared knowledge base where every decision the founder makes teaches the system. Every feature gets better and faster than the last, because the next session starts from a more informed baseline than the previous one.&lt;/p&gt;
&lt;p&gt;The companion argument for this — why the one-person billion-dollar company is an engineering problem rather than a business one — is the &lt;a href=&quot;https://www.soleur.ai/blog/one-person-billion-dollar-company/&quot;&gt;engineering-problem companion&lt;/a&gt; to this post. That piece covers the structural reason the math works: coordination costs dropping to near zero when knowledge compounds across domains. This piece covers the stack that makes it operational. &lt;a href=&quot;https://www.soleur.ai/blog/what-is-company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; is the organizing concept that ties both together.&lt;/p&gt;
&lt;p&gt;Pricing and access: see the &lt;a href=&quot;https://www.soleur.ai/pricing/&quot;&gt;Soleur pricing page&lt;/a&gt;. The window described in the companion post — the time before every company has this capability — is what the stack is for.&lt;/p&gt;
&lt;h2&gt;Counterpoint: What Could Go Wrong&lt;/h2&gt;
&lt;p&gt;A trust-scaffolded piece owes the reader an honest account of the failure modes. Here are the four that matter most, ordered by likelihood.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Regulatory and compliance blowback.&lt;/strong&gt; Medvi itself is not a clean proof point. Commenters on Thompson&#39;s LinkedIn post &lt;a href=&quot;https://www.linkedin.com/posts/nicholasxthompson_the-most-interesting-thing-in-tech-a-man-activity-7445604524268052480-3VpA&quot;&gt;raised FDA concerns and questions about AI-generated endorsement imagery&lt;/a&gt;. A solo operator moving at agent speed can cross a regulatory line before a human compliance officer would have reviewed the creative. The failure modes are specific and common: misclassifying a 1099 contractor as a 1099 when the facts make them a W-2, running ads with synthetic celebrity likenesses that trigger right-of-publicity claims, collecting EU consent with a banner that a GDPR regulator reads as non-compliant, making tax-withholding errors on multi-state payroll, and filing late or underpaying an estimated tax obligation because the agent&#39;s calendar drifted. Agents do not carry license risk. Founders do. The mitigation is not to slow down; it is to put the licensed human — CPA, attorney, compliance officer — on the high-stakes gates and let the agent run everything in between.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Model and API costs at real scale.&lt;/strong&gt; A Claude or GPT API bill that is $50 per month at prototype scale becomes $5,000-50,000 per month when the same agent is handling production customer service, code review, and content generation across a business doing eight figures of revenue. The economics still work — Medvi&#39;s 16.2% margin on $401M dwarfs what a traditional org would achieve at the same revenue — but the bill is real, and a founder who models it as negligible will be surprised. Plan the variable cost per interaction the same way you plan the variable cost of a customer acquisition: as a line item, with sensitivity to model price changes that happen on the model provider&#39;s timeline, not yours.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Attention-economy collapse.&lt;/strong&gt; AI creative is cheap, so every founder is producing more of it, so the supply of content is exploding, so the price of attention keeps climbing. In 2023 a $5 CPM was an expensive channel. By 2026 the same channel is $25 and the creative needs to be ten times better to achieve the same click-through. A stack that generates a thousand ad variants does not guarantee one of them works. The counterfactual a founder has to hold is: if every competitor has the same stack, the differentiator is not the stack — it is the taste, the brand, and the distribution advantage. A founder who treats AI as the moat will wake up in 18 months and discover that it was table stakes.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Vibe-coded technical debt.&lt;/strong&gt; An agent can ship a feature in an afternoon. The feature has tests that pass and behavior that looks correct. It also has implicit assumptions, undocumented invariants, and edge cases the agent never considered because the founder never asked. Twelve months in, the codebase is 200,000 lines of mostly-working software that nobody — not the founder, not the agents — fully understands. The fix is not &amp;quot;stop using agents.&amp;quot; It is to insist on review gates, test coverage, and architecture decisions that survive the handoff between sessions. The orchestration layer is where this happens or fails to happen. Without it, the stack is velocity with no coherence.&lt;/p&gt;
&lt;p&gt;None of these are hypothetical. All four are showing up in solo-founder post-mortems as of this writing. The stack works. It also carries a specific risk profile, and founders who pretend otherwise will learn it on their own timeline.&lt;/p&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;h3&gt;Who has already built a one-person billion-dollar company?&lt;/h3&gt;
&lt;p&gt;Matthew Gallagher&#39;s Medvi is the first documented case. Launched in &lt;a href=&quot;https://www.pymnts.com/artificial-intelligence-2/2026/the-one-person-billion-dollar-company-is-here/&quot;&gt;September 2024 from a Los Angeles apartment with $20,000&lt;/a&gt;, the company posted $401 million of revenue in its first full year and is tracking to $1.8 billion in year two, per &lt;a href=&quot;https://www.therundown.ai/p/ai-just-made-the-billion-dollar-solo-founder-real&quot;&gt;The Rundown AI&lt;/a&gt;. The only other full-time employee is Gallagher&#39;s brother Elliot. Regulated clinical functions are outsourced to CareValidate and OpenLoop; everything else runs on an AI stack of ChatGPT, Claude, Grok, Midjourney, Runway, and ElevenLabs. The proof point is narrow — one company in one vertical — but it is real, and it landed inside the window Amodei predicted.&lt;/p&gt;
&lt;h3&gt;Is this ethical?&lt;/h3&gt;
&lt;p&gt;The honest answer is: it depends on the company. A solo founder running a compounding AI organization is not inherently unethical. Compressing eight corporate functions into one operator is a productivity story, not a moral failing. The ethical questions sharpen where the stack crosses a regulated domain or where AI output is presented as human work without disclosure. Medvi has drawn fair scrutiny about &lt;a href=&quot;https://www.linkedin.com/posts/nicholasxthompson_the-most-interesting-thing-in-tech-a-man-activity-7445604524268052480-3VpA&quot;&gt;FDA compliance and synthetic endorsement imagery&lt;/a&gt;. Those are real issues, and they are not inherent to the solo model — they are specific choices. A founder who runs the same stack with transparent AI disclosure, clean regulatory alignment, and honest marketing is doing something that was not previously possible, not something previously forbidden.&lt;/p&gt;
&lt;h3&gt;Do you still hire anyone?&lt;/h3&gt;
&lt;p&gt;Yes, selectively. Gallagher&#39;s stack includes his brother as a co-operator and contract engineers and account managers as variable-cost specialists. The pattern is a vanishing full-time headcount and a rising contract layer that flexes to demand. Hire where licensed expertise is non-delegable (CPA, attorney, clinical supervisor) and where judgment needs a second brain (a co-founder, a senior specialist for a specific campaign). Do not hire to do what an agent already does well — copywriting at volume, code at the line level, first-draft ad creative, tier-one support. Headcount, in the 2026 model, is a scalpel, not a hammer.&lt;/p&gt;
&lt;h3&gt;What does the Claude API cost look like at scale?&lt;/h3&gt;
&lt;p&gt;The order of magnitude matters more than the exact number. A founder building a prototype pays low three figures a month in API spend. A founder running production customer service, code review, and content at the scale of a low-eight-figure revenue business pays low-to-mid five figures. At Medvi&#39;s revenue scale ($401M year one, $1.8B projected year two), the AI stack cost is non-trivial — likely low six figures per month across all providers — but it is a rounding error against the revenue it enables. The discipline is to track cost per meaningful interaction (cost per resolved ticket, cost per generated ad variant, cost per shipped PR) the same way you track cost per acquired customer. Model prices will shift; your unit economics need to survive that.&lt;/p&gt;
&lt;h3&gt;Which model should a solo founder standardize on?&lt;/h3&gt;
&lt;p&gt;There is no single right answer, and a founder who locks in on one is taking avoidable concentration risk. The pragmatic 2026 pattern is Claude Opus 4.x for agentic engineering and long-horizon reasoning, GPT-5 for broad consumer-facing content, and Gemini 2.x for cost-sensitive bulk generation — with the orchestration layer abstracting the choice. Soleur is built around Claude Code and the Anthropic model line because it is the current state of the art for agentic software work, but the knowledge base is provider-agnostic and migrating to a different model family does not require rebuilding the organization. Pick the best current model; keep the orchestration layer portable.&lt;/p&gt;
&lt;h3&gt;Is a one-person company actually defensible against a 20-person team?&lt;/h3&gt;
&lt;p&gt;In the short run, yes — if the stack compounds. The solo founder&#39;s knowledge base is continuously consolidating context across domains. A traditional team of 20 is distributing that context across Slack threads, Notion pages, and the heads of people who leave. Over 24 months, the gap widens. That said, &amp;quot;defensible&amp;quot; has limits: a team of 20 with the same stack and better taste will outperform a solo operator with the same stack and worse taste. The defensibility is not in the headcount delta. It is in the compounding of decisions. This is the argument &lt;a href=&quot;https://www.soleur.ai/blog/one-person-billion-dollar-company/&quot;&gt;the companion post&lt;/a&gt; makes at length.&lt;/p&gt;
&lt;h3&gt;What functions are hardest to delegate to agents?&lt;/h3&gt;
&lt;p&gt;Anything where the right answer depends on taste the founder has not yet taught the system. Brand positioning at first-contact quality. Sales conversations where a deal hinges on reading the room. Hiring conversations. High-stakes regulatory filings. The pattern: the earlier in the company&#39;s life, the more concentrated taste-dependent work is in the founder. As the knowledge base thickens, more of it transfers — but the transfer requires the founder to explicitly teach, not just delegate. Founders who assume agents will reverse-engineer their taste from output alone will find the output has their brand and none of their judgment.&lt;/p&gt;
&lt;h3&gt;How does a non-technical founder build this stack?&lt;/h3&gt;
&lt;p&gt;The same way Gallagher did. He is not known as a career engineer. He used ChatGPT, Claude, and Grok to write the code, Midjourney and Runway to produce the creative, and ElevenLabs plus custom agents for customer service. The technical bar for operating this stack in 2026 is meaningfully lower than it was in 2024. What a non-technical founder needs is the orchestration layer — Soleur, Cursor, Claude Code — that packages the lifecycle so the founder does not have to learn the tooling to run the company. The founder still makes decisions about what to build, who to sell it to, and when to ship. The stack handles the keystrokes.&lt;/p&gt;
&lt;h3&gt;Is the window closing or opening?&lt;/h3&gt;
&lt;p&gt;Both. It is opening because the tools keep getting cheaper, more capable, and more accessible — what was an engineering feat in 2024 is a weekend build in 2026. It is closing because every new entrant competes on the same stack, so the differentiator reverts to taste, distribution, and compounding knowledge. The solo founder who starts their compounding lifecycle today has twelve to twenty-four months of structural advantage over a founder who starts in 2027 — the knowledge base they build in that window cannot be replicated by a well-funded latecomer on day one. The stack is democratized. The compound is not.&lt;/p&gt;
&lt;h3&gt;What would have to be true for this to fail?&lt;/h3&gt;
&lt;p&gt;Three conditions would close the opportunity. First, a regulatory response that specifically targets AI-operated businesses — mandatory disclosure of AI use in customer interactions, liability frameworks that make the founder personally responsible for agent outputs, or licensing regimes for AI-assisted professional services. Second, a model-pricing reversion that makes the API layer 10x more expensive, which would not kill the model but would collapse the margin advantage solo operators enjoy today. Third, a loss of consumer trust in AI-generated content broad enough to make the cost of a brand built on AI creative higher than the cost of a brand built on human creative. Any one of these is plausible. All three together would end the window. None are currently in motion at scale, but a founder betting the company on this stack should watch all three and have a plan for each.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Who has already built a one-person billion-dollar company?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Matthew Gallagher&#39;s Medvi is the first documented case. Launched in September 2024 from a Los Angeles apartment with $20,000, the company posted $401 million of revenue in its first full year and is tracking to $1.8 billion in year two. The only other full-time employee is Gallagher&#39;s brother Elliot. Regulated clinical functions are outsourced to CareValidate and OpenLoop; everything else runs on an AI stack of ChatGPT, Claude, Grok, Midjourney, Runway, and ElevenLabs.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is this ethical?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;A solo founder running a compounding AI organization is not inherently unethical. Compressing eight corporate functions into one operator is a productivity story, not a moral failing. The ethical questions sharpen where the stack crosses a regulated domain or where AI output is presented as human work without disclosure. A founder who runs the same stack with transparent AI disclosure, clean regulatory alignment, and honest marketing is doing something that was not previously possible, not something previously forbidden.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Do you still hire anyone?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Yes, selectively. The pattern is a vanishing full-time headcount and a rising contract layer that flexes to demand. Hire where licensed expertise is non-delegable (CPA, attorney, clinical supervisor) and where judgment needs a second brain. Do not hire to do what an agent already does well. Headcount, in the 2026 model, is a scalpel, not a hammer.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What does the Claude API cost look like at scale?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;A founder building a prototype pays low three figures a month in API spend. A founder running production customer service, code review, and content at the scale of a low-eight-figure revenue business pays low-to-mid five figures. At Medvi&#39;s revenue scale, the AI stack cost is likely low six figures per month across all providers, but it is a rounding error against the revenue it enables. The discipline is to track cost per meaningful interaction the same way you track cost per acquired customer.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Which model should a solo founder standardize on?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The pragmatic 2026 pattern is Claude Opus 4.x for agentic engineering and long-horizon reasoning, GPT-5 for broad consumer-facing content, and Gemini 2.x for cost-sensitive bulk generation, with the orchestration layer abstracting the choice. Soleur is built around Claude Code and the Anthropic model line because it is the current state of the art for agentic software work, but the knowledge base is provider-agnostic and migrating to a different model family does not require rebuilding the organization.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is a one-person company actually defensible against a 20-person team?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;In the short run, yes, if the stack compounds. The solo founder&#39;s knowledge base is continuously consolidating context across domains. A traditional team of 20 is distributing that context across Slack threads, Notion pages, and the heads of people who leave. Over 24 months, the gap widens. The defensibility is not in the headcount delta. It is in the compounding of decisions.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What functions are hardest to delegate to agents?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Anything where the right answer depends on taste the founder has not yet taught the system. Brand positioning at first-contact quality. Sales conversations where a deal hinges on reading the room. Hiring conversations. High-stakes regulatory filings. As the knowledge base thickens, more of it transfers, but the transfer requires the founder to explicitly teach, not just delegate.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How does a non-technical founder build this stack?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The same way Matthew Gallagher did. He used ChatGPT, Claude, and Grok to write the code, Midjourney and Runway to produce the creative, and ElevenLabs plus custom agents for customer service. The technical bar for operating this stack in 2026 is meaningfully lower than it was in 2024. What a non-technical founder needs is the orchestration layer that packages the lifecycle so the founder does not have to learn the tooling to run the company.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is the window closing or opening?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Both. It is opening because the tools keep getting cheaper, more capable, and more accessible. It is closing because every new entrant competes on the same stack, so the differentiator reverts to taste, distribution, and compounding knowledge. The solo founder who starts their compounding lifecycle today has twelve to twenty-four months of structural advantage over a founder who starts in 2027. The stack is democratized. The compound is not.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What would have to be true for this to fail?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Three conditions would close the opportunity. First, a regulatory response that specifically targets AI-operated businesses. Second, a model-pricing reversion that makes the API layer 10x more expensive, collapsing the margin advantage solo operators enjoy today. Third, a loss of consumer trust in AI-generated content broad enough to make an AI-creative brand cost more than a human-creative brand. Any one of these is plausible. None are currently in motion at scale, but a founder betting the company on this stack should watch all three.&quot;
      }
    }
  ]
}
&lt;/script&gt;
&lt;h2&gt;Start Building&lt;/h2&gt;
&lt;p&gt;The stack is commodity. The compounding organization is not. Start your lifecycle at &lt;a href=&quot;https://www.soleur.ai/pricing/&quot;&gt;Soleur pricing&lt;/a&gt; or &lt;a href=&quot;https://www.soleur.ai/vision/&quot;&gt;join the waitlist&lt;/a&gt; to build the billion-dollar company before the compounding window closes.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Soleur vs. Devin: AI Software Engineer vs. AI Organization</title>
    <link href="https://www.soleur.ai/blog/soleur-vs-devin/" />
    <updated>2026-04-21T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/soleur-vs-devin/</id>
    <content type="html">&lt;p&gt;Devin is the price anchor for autonomous AI agents. Cognition Labs&#39; AI software engineer handles long-horizon coding tasks -- writing code, running tests, fixing bugs, browsing documentation, and deploying software -- with a degree of autonomy that made it the reference point for what &amp;quot;AI doing real engineering work&amp;quot; means. At $20/month, it is accessible to every solo founder who codes.&lt;/p&gt;
&lt;p&gt;The question is not whether Devin is impressive. It is whether an AI software engineer is what a solo founder actually needs.&lt;/p&gt;
&lt;p&gt;Devin and Soleur both automate work that used to require human expertise and both fit into Claude Code-native workflows. But their scope reflects fundamentally different answers to one question: what problem is the solo founder actually trying to solve?&lt;/p&gt;
&lt;h2&gt;What Devin Actually Is&lt;/h2&gt;
&lt;p&gt;Devin is Cognition Labs&#39; autonomous AI software engineer. It is designed for long-horizon software engineering tasks: given a problem statement or GitHub issue, Devin plans a solution, writes code, runs tests, debugs failures, reads documentation, and submits a pull request. It has its own browser, terminal, and code editor -- it operates as an autonomous engineer in a sandboxed environment.&lt;/p&gt;
&lt;p&gt;Devin is purpose-built for software engineering and nothing else. It does not draft legal contracts, run competitive intelligence scans, build financial models, or plan marketing campaigns. It is an extraordinarily capable engineering resource constrained to engineering problems.&lt;/p&gt;
&lt;p&gt;That constraint is deliberate. Cognition built Devin to do one job exceptionally well: write and ship production-quality software without hand-holding.&lt;/p&gt;
&lt;h2&gt;What Soleur Actually Is&lt;/h2&gt;
&lt;p&gt;Soleur is the &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; platform. 66 agents, 73 skills, and a compounding knowledge base organized across 8 business departments -- engineering, marketing, legal, finance, operations, product, sales, support, and community.&lt;/p&gt;
&lt;p&gt;The engineering department contains what Devin provides in isolation: architecture design, code review, infrastructure provisioning, deployment, and security analysis. Soleur&#39;s engineering agents run inside the same Claude Code environment as the founder. They plan, implement, review, and ship alongside a legal agent that generates contracts, a marketing agent that writes copy and runs competitive analysis, a finance agent that models revenue, and a product agent that validates specs before engineering starts building them.&lt;/p&gt;
&lt;p&gt;The compounding knowledge base is the structural difference. When Soleur&#39;s product agent completes a competitive analysis, the marketing agents read it. When the legal agent documents a compliance requirement, the engineering agents reference it before building the relevant feature. When the brand-architect agent writes the brand guide, every piece of copy the marketing agents generate afterward reflects it. Knowledge does not live in silos -- it accumulates across domains and every decision becomes institutional memory.&lt;/p&gt;
&lt;h2&gt;The Core Distinction: One Department vs. Nine&lt;/h2&gt;
&lt;p&gt;Devin solves the engineering hiring problem. A solo founder who needs engineering output -- and does not want to hire engineers -- has a credible option at $20/month. For companies that are genuinely engineering-only problems, this is the right calculation.&lt;/p&gt;
&lt;p&gt;The problem most solo founders face is not that they need to write more code. It is that they are simultaneously the CEO, CTO, CMO, CLO, CFO, COO, CPO, and VP of Sales. Devin cannot write the privacy policy that the engineering agent needs to reference. It cannot run the competitive analysis that should precede the product roadmap. It cannot draft the fundraising summary that follows the financial model. And it cannot remember that the legal agent determined last month that a particular data-handling approach creates regulatory exposure -- because Devin has no cross-domain knowledge base.&lt;/p&gt;
&lt;p&gt;Building a billion-dollar company requires solving all nine problems, not optimizing one of them.&lt;/p&gt;
&lt;h2&gt;Where They Differ&lt;/h2&gt;
&lt;h3&gt;Scope&lt;/h3&gt;
&lt;p&gt;Devin: software engineering, exclusively.&lt;/p&gt;
&lt;p&gt;Soleur: 8 departments. Engineering is one of nine. The marketing, legal, finance, operations, product, sales, support, and community domains receive the same depth of specialist coverage as engineering.&lt;/p&gt;
&lt;p&gt;The three domains that carry the highest downside risk for a solo founder -- legal, finance, and product strategy -- are absent from Devin&#39;s scope entirely. A missed compliance requirement, a flawed financial model, or a product roadmap that ignores competitive dynamics can make the engineering investment worthless.&lt;/p&gt;
&lt;h3&gt;Autonomy Model&lt;/h3&gt;
&lt;p&gt;Devin operates as an autonomous engineer. It receives a task and executes it independently, surfacing results when complete. The founder reviews the output, not the process.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s lifecycle -- brainstorm → plan → implement → review → compound -- is structured around decision gates, not autonomous cycles. The plan is visible before implementation starts. The review happens before anything ships. The founder provides judgment at every gate; agents handle execution. This is not a constraint -- it is an architecture designed for decisions where the cost of wrong is high.&lt;/p&gt;
&lt;h3&gt;Knowledge Persistence&lt;/h3&gt;
&lt;p&gt;Devin&#39;s context window ends at the session. It does not accumulate institutional memory about your company, your codebase&#39;s architectural decisions, or the reasoning behind past technical choices. Each new task starts from the current state of the repository, not from a compounding body of organizational knowledge.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s compound step captures what was decided and why at the end of every session. Engineering decisions become architectural learnings. Legal edge cases become compliance guardrails. Competitive intelligence updates become product strategy inputs. The knowledge base is a git-tracked directory of Markdown files -- readable, auditable, and editable by the founder directly -- that compounds with every session across every domain.&lt;/p&gt;
&lt;p&gt;The first time Soleur&#39;s engineering agents tackle a problem, they work from what exists. The twentieth time, they reference 19 sessions of architectural context, past decisions, and established patterns. The engineering gets better. So does everything else.&lt;/p&gt;
&lt;h3&gt;Pricing&lt;/h3&gt;
&lt;p&gt;Devin: $20/month subscription.&lt;/p&gt;
&lt;p&gt;Soleur: open-source, free platform. Your costs are the Claude API credits the agents consume.&lt;/p&gt;
&lt;p&gt;The pricing comparison is less straightforward than the headline numbers suggest. Devin at $20/month is a subscription for engineering output. Soleur&#39;s costs scale with usage -- a company running extensive agent sessions will spend more on Claude API than $20/month. The open-source model is lower cost for founders starting out; the total cost of Soleur depends on session volume at scale.&lt;/p&gt;
&lt;p&gt;The more material pricing consideration: Devin covers one of nine departments a solo founder needs to run. Replacing all nine with separate specialized tools -- an AI coding agent, an AI legal tool, an AI finance tool, an AI marketing tool -- costs orders of magnitude more and produces no cross-domain coherence. Soleur covers all nine in a single platform.&lt;/p&gt;
&lt;h3&gt;How Each Fits Into the Workflow&lt;/h3&gt;
&lt;p&gt;A solo founder using Devin writes a spec, hands it to Devin, and reviews the pull request. Devin handles the coding work between spec and PR.&lt;/p&gt;
&lt;p&gt;A solo founder using Soleur starts a session: brainstorm the spec with the product agent, plan the implementation with the engineering architect, implement with the engineering agents, review with the code review agents, ship with the workflow agents, and capture learnings with the compound step. Parallel to engineering, the marketing agents are running a content calendar, the legal agents are reviewing the new feature for compliance, and the finance agents are updating the revenue model based on the new feature&#39;s expected impact.&lt;/p&gt;
&lt;p&gt;The engineering output from Soleur&#39;s agents is comparable in quality to what Devin delivers on well-specified tasks. The difference is what surrounds the engineering output: the product strategy that preceded it, the legal review that runs alongside it, the marketing content that ships with it, and the institutional memory that captures it afterward.&lt;/p&gt;
&lt;h2&gt;The $20/Month Framing Problem&lt;/h2&gt;
&lt;p&gt;Devin at $20/month is often framed as the baseline cost for &amp;quot;AI that does real work.&amp;quot; This framing obscures what Devin actually replaces: one engineer working on one category of problem.&lt;/p&gt;
&lt;p&gt;Running a company requires nine categories. At $20/month for the engineering layer, the question becomes: what do the other eight cost? If the answer is &amp;quot;the founder&#39;s time,&amp;quot; the $20/month number dramatically understates the real cost of the current stack.&lt;/p&gt;
&lt;p&gt;The relevant comparison is not Devin at $20/month versus Soleur at $0/month. It is whether an engineering-only tool solves the problem the founder actually has.&lt;/p&gt;
&lt;h2&gt;When Devin Is the Right Choice&lt;/h2&gt;
&lt;p&gt;Devin is the right choice for founders whose bottleneck is engineering velocity. If you have a validated product, a clear roadmap, legal and financial infrastructure already in place, and the remaining constraint is writing and shipping code faster, Devin&#39;s autonomous engineering capability at $20/month is a strong option.&lt;/p&gt;
&lt;p&gt;It is also the right choice if your company is a pure software engineering problem with no meaningful marketing, legal, or financial complexity. Some companies genuinely are -- developer tools, infrastructure products, and technical SaaS built by a single founder for a technical audience can run with minimal non-engineering overhead for extended periods.&lt;/p&gt;
&lt;h2&gt;When Soleur Is the Right Choice&lt;/h2&gt;
&lt;p&gt;Soleur is the right choice when the bottleneck is not just engineering velocity. When the missing piece is legal strategy that informs engineering decisions, a financial model that shapes the product roadmap, or marketing that reflects competitive positioning -- not just code that ships faster -- an engineering-only tool addresses the wrong problem.&lt;/p&gt;
&lt;p&gt;Solo founders building companies where brand precision, legal compliance, financial planning, and product strategy are differentiators cannot route all complexity through an engineering tool. The first billion-dollar solo company will not be built by accelerating engineering in isolation. It will be built by a founder whose judgment is amplified across every domain -- where every decision builds institutional memory, and every new session benefits from everything the company has learned.&lt;/p&gt;
&lt;p&gt;If the company you are building requires more than engineering, Soleur covers the full stack. Devin does not.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;What you need&lt;/th&gt;
&lt;th&gt;Devin&lt;/th&gt;
&lt;th&gt;Soleur&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Autonomous software engineering&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Long-horizon coding tasks&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Sandboxed browser and terminal access&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Partial&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pre-built domain agents (legal, marketing, finance)&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cross-domain compounding knowledge base&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workflow lifecycle (brainstorm through ship)&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Human-in-the-loop decision gates&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Open-source and local-first&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pricing&lt;/td&gt;
&lt;td&gt;$20/month&lt;/td&gt;
&lt;td&gt;Free (API costs)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Q: Can Devin and Soleur be used together?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Yes. Devin and Soleur are not mutually exclusive. A founder could use Soleur for the full organizational workflow -- planning, product strategy, legal, finance, marketing -- while delegating specific long-horizon coding tasks to Devin as the execution layer for well-scoped engineering problems. Soleur&#39;s compound step would capture the architectural decisions Devin&#39;s implementation surfaces, feeding them back into the organization&#39;s knowledge base.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Devin is described as an AI software engineer. Is it comparable to Soleur&#39;s engineering agents?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;For pure coding velocity on well-specified tasks, Devin is purpose-built for autonomous execution of long-horizon engineering work. Soleur&#39;s engineering agents operate as part of a larger organizational workflow with access to cross-domain context -- product specs, legal requirements, brand guidelines -- that Devin&#39;s isolated engineering context does not include. Which is better depends on whether the engineering work benefits from that cross-domain organizational context.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Why does Soleur cover eight domains? Isn&#39;t most of what a technical solo founder needs engineering?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Engineering is the most visible 30% of running a company. The other 70% -- legal compliance, financial planning, marketing, customer support, product strategy, sales, and operations -- determines whether the engineering investment produces a company. Technical founders underweight non-engineering domains because those are the domains they are least comfortable with. Soleur covers all eight precisely because the painful constraints for most technical solo founders live outside engineering, not inside it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: What is the &amp;quot;autonomous coding comparison&amp;quot; between Devin and Soleur?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Devin specializes in autonomous execution of coding tasks in a sandboxed environment with browser, terminal, and editor access -- receive a task, produce a pull request. Soleur&#39;s engineering agents run in the founder&#39;s actual development environment with access to the full organizational knowledge base: they plan before implementing and review before shipping, integrating engineering decisions with broader company context. Devin optimizes for engineering throughput on isolated tasks; Soleur optimizes for organizational coherence across all eight domains.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Can Devin and Soleur be used together?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Yes. Devin and Soleur are not mutually exclusive. A founder could use Soleur for the full organizational workflow — planning, product strategy, legal, finance, marketing — while delegating specific long-horizon coding tasks to Devin as the execution layer. Soleur&#39;s compound step would capture the architectural decisions Devin&#39;s implementation surfaces, feeding them back into the organization&#39;s knowledge base.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Devin is described as an AI software engineer. Is it comparable to Soleur&#39;s engineering agents?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;For pure coding velocity on well-specified tasks, Devin is purpose-built for autonomous execution of long-horizon engineering work. Soleur&#39;s engineering agents operate as part of a larger organizational workflow with access to cross-domain context — product specs, legal requirements, brand guidelines — that Devin&#39;s isolated engineering context does not include.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Why does Soleur cover eight domains? Isn&#39;t most of what a technical solo founder needs engineering?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Engineering is the most visible 30% of running a company. The other 70% — legal compliance, financial planning, marketing, customer support, product strategy, sales, and operations — determines whether the engineering investment produces a company. Technical founders underweight non-engineering domains because those are the domains they are least comfortable with. Soleur covers all eight precisely because the painful constraints for most technical solo founders live outside engineering, not inside it.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is the autonomous coding comparison between Devin and Soleur?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Devin specializes in autonomous execution of coding tasks in a sandboxed environment with browser, terminal, and editor access. Soleur&#39;s engineering agents run in the founder&#39;s actual development environment with access to the full organizational knowledge base, planning before implementing and reviewing before shipping. Devin optimizes for engineering throughput on isolated tasks; Soleur optimizes for organizational coherence across all eight domains.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>The One-Person Billion-Dollar Company: Why It&#39;s an Engineering Problem</title>
    <link href="https://www.soleur.ai/blog/one-person-billion-dollar-company/" />
    <updated>2026-04-21T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/one-person-billion-dollar-company/</id>
    <content type="html">&lt;p&gt;The first billion-dollar company run by one person is not a thought experiment. It is a prediction with a timeline.&lt;/p&gt;
&lt;p&gt;This post is part of the &lt;a href=&quot;https://www.soleur.ai/blog/billion-dollar-solo-founder-stack/&quot;&gt;Billion-Dollar Solo Founder Stack&lt;/a&gt; series — the pillar covers the full stack by function, the Medvi proof, and what still requires the human. This companion piece argues for the engineering-problem framing.&lt;/p&gt;
&lt;p&gt;Dario Amodei, CEO of Anthropic, &lt;a href=&quot;https://officechai.com/ai/the-first-one-person-billon-dollar-startup-will-be-a-reality-by-2026-anthropic-ceo-dario-amodei/&quot;&gt;predicted that a one-person billion-dollar company would emerge as soon as 2026&lt;/a&gt;. Sam Altman described &lt;a href=&quot;https://fortune.com/2024/02/04/sam-altman-one-person-unicorn-silicon-valley-founder-myth/&quot;&gt;an informal betting pool&lt;/a&gt; among tech executives for &amp;quot;the first year that there is a one-person billion-dollar company.&amp;quot; &lt;a href=&quot;https://techcrunch.com/2025/02/01/ai-agents-could-birth-the-first-one-person-unicorn-but-at-what-societal-cost/&quot;&gt;TechCrunch reported&lt;/a&gt; on the mechanism: AI agents extending beyond engineering into every function a company needs.&lt;/p&gt;
&lt;p&gt;These are not idle predictions. They describe a structural shift in what it costs to run a company.&lt;/p&gt;
&lt;h2&gt;Why a Billion-Dollar Company Historically Required Hundreds of People&lt;/h2&gt;
&lt;p&gt;The reason billion-dollar companies required large headcounts was not ambition. It was coordination.&lt;/p&gt;
&lt;p&gt;Building at scale requires eight distinct functions: engineering, marketing, legal, finance, operations, product, sales, and support. Each requires domain expertise. Each generates decisions. And every decision in one domain constrains every other domain — the legal strategy limits marketing campaigns, the financial model drives the product roadmap, the engineering architecture defines operational complexity.&lt;/p&gt;
&lt;p&gt;For most of the history of business, the only way to hold all that context in one place was to have people who talked to each other. An organization was, at its core, a coordination system. The more functions you needed, the more people you hired. The headcount scaled with the company&#39;s surface area.&lt;/p&gt;
&lt;p&gt;AI tools compressed the individual task. A coding assistant writes code faster. A contract template saves legal fees. A copywriting tool drafts faster. But these are speed improvements on isolated tasks. They do not solve the coordination problem. The decision the legal tool produced still does not reach the marketing tool. The insight the engineering agent generated still disappears when the session ends.&lt;/p&gt;
&lt;p&gt;Point solutions made solo founders faster. They did not make them organizations.&lt;/p&gt;
&lt;h2&gt;What Changes the Math&lt;/h2&gt;
&lt;p&gt;The bet on the one-person billion-dollar company is not a bet on better tools. It is a bet on a different architecture.&lt;/p&gt;
&lt;p&gt;The architecture is &lt;a href=&quot;https://www.soleur.ai/blog/why-most-agentic-tools-plateau/&quot;&gt;compound knowledge&lt;/a&gt;: a knowledge base that captures every decision across every domain and routes it to every agent that needs it. Marketing agents read what legal decided. Engineering agents reference what product specified. Finance agents update the model when sales closes a deal. No founder relay required.&lt;/p&gt;
&lt;p&gt;When knowledge compounds, two things change.&lt;/p&gt;
&lt;p&gt;First, coordination costs drop to near zero. The founder&#39;s job shifts from manually carrying context between domains to making decisions within a system that already knows the context. This is the function headcount has always performed — holding organizational memory — done by the knowledge base instead.&lt;/p&gt;
&lt;p&gt;Second, every task makes the system more capable. The first time the legal agent drafts a contract, it works from general principles. The twentieth time, it works from 19 sessions of company-specific requirements, established positions, and accumulated edge cases. The marketing agents that have observed 12 months of brand guide evolution write with a precision that no fresh context window can match.&lt;/p&gt;
&lt;p&gt;The compound effect means the one-person company does not plateau where point solutions do. It scales.&lt;/p&gt;
&lt;h2&gt;The Organizational Model&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; is the structure that makes this concrete. Not a set of AI tools, but a full AI organization: specialist agents for each domain, coordinated by a shared knowledge base, operated by one founder who makes decisions and delegates execution.&lt;/p&gt;
&lt;p&gt;Kuo Zhang, President of Alibaba.com, &lt;a href=&quot;https://fortune.com/2026/03/23/one-person-unicorn-agentic-ai-kuo-zhang/&quot;&gt;wrote in Fortune&lt;/a&gt; that agentic AI is dismantling the &amp;quot;Execution Wall&amp;quot; that previously separated solo entrepreneurs from large corporations — absorbing administrative complexity, compressing supplier negotiations and logistics coordination, and shifting competitive advantage from resources and headcount to judgment, taste, and strategic vision. The constraint was never the founder&#39;s capability. It was the cost of coordination at the boundaries between functions.&lt;/p&gt;
&lt;p&gt;Remove the coordination cost. Keep the founder&#39;s judgment. The result is a company that behaves like an organization of hundreds — because every domain has specialist coverage, every decision is captured, and every subsequent session starts from a more informed baseline.&lt;/p&gt;
&lt;p&gt;In practice, this means:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;An engineering agent that reviews pull requests against legal constraints, brand guidelines, and product specifications — simultaneously, without the founder acting as relay&lt;/li&gt;
&lt;li&gt;A marketing agent that reflects the latest competitive intelligence and brand strategy when drafting copy, because both live in the same knowledge base&lt;/li&gt;
&lt;li&gt;A financial model that updates when the sales pipeline moves, the engineering velocity changes, or the product roadmap shifts&lt;/li&gt;
&lt;li&gt;A legal agent that flags when a new product feature touches a compliance requirement documented in a prior session&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Each of these is a solo founder operating at team scale — not because they are working faster, but because the system they are working within holds the coordination that used to require a team.&lt;/p&gt;
&lt;h2&gt;The Leverage Inflection Point&lt;/h2&gt;
&lt;p&gt;There is a phase change between &amp;quot;AI making a solo founder faster&amp;quot; and &amp;quot;AI enabling a solo founder to run a company.&amp;quot;&lt;/p&gt;
&lt;p&gt;The phase change happens at compound knowledge. Before it, the founder is still the relay. After it, the system carries the context and the founder carries the judgment.&lt;/p&gt;
&lt;p&gt;The supply side of this shift is visible in the data: &lt;a href=&quot;https://solofounders.com/blog/solo-founders-in-2025-why-one-third-of-all-startups-are-flying-solo&quot;&gt;solo-founded startups have risen from 23.7% to 36.3% of all new ventures&lt;/a&gt; between 2019 and the first half of 2025, according to Carta&#39;s Solo Founders Report — the first time solo founding has reached this scale in over 50 years of startup formation. The infrastructure enabling this shift is not just productivity tools. It is the emergence of systems that can hold organizational memory across domains.&lt;/p&gt;
&lt;p&gt;The founders who reach billion-dollar scale from a single person will not be the ones with the best prompts. They will be the ones whose organizations remember the most, connect the most, and improve the most reliably between sessions.&lt;/p&gt;
&lt;p&gt;The first hundred sessions are learning the company. The next hundred sessions are operating the company. The third hundred sessions are scaling the company. The founder&#39;s input is required at each stage — but what that input is changes as the knowledge base deepens.&lt;/p&gt;
&lt;h2&gt;What It Requires&lt;/h2&gt;
&lt;p&gt;The one-person billion-dollar company is not automatic. It requires three things from the founder:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A commitment to building the knowledge layer.&lt;/strong&gt; The system cannot compound knowledge that was never captured. Every architectural decision, brand choice, legal position, and pricing model that lives only in the founder&#39;s head is a coordination bottleneck waiting to be a crisis. The discipline of capturing decisions — in the format agents can read and build on — is the foundation everything else rests on.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A lifecycle, not a prompt.&lt;/strong&gt; The founders who plateau at point solutions are using AI transactionally: here is a task, here is a response, done. The founders who build compound organizations treat each task as a step in a lifecycle — brainstorm, plan, implement, review, and compound. The compound step is not optional. It is what makes the next session better than this one.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Judgment at every gate.&lt;/strong&gt; The system executes. The founder decides. This is the design. Human-in-the-loop decision gates are not a concession to AI limitations — they are the architecture that lets a single person exercise judgment across all nine domains without being overwhelmed by execution. The founder who stays in the judgment role rather than the execution role is the founder who can actually manage a nine-department organization alone.&lt;/p&gt;
&lt;h2&gt;The Competitive Window&lt;/h2&gt;
&lt;p&gt;The one-person billion-dollar company is not a permanent opportunity. It is a window.&lt;/p&gt;
&lt;p&gt;The companies that build compound AI organizations in the next two to three years will operate with structural advantages that cannot be closed by adding headcount. Their knowledge bases will be deeper, their agents more specialized, and their compounding cycles will have had more time to run. A well-funded team of 50 hired in 2028 will not quickly replicate the institutional memory an AI organization built over three years of compounding decisions.&lt;/p&gt;
&lt;p&gt;The window is the time before every company has this capability. Today, most companies are still using point solutions. The coordination cost is still a moat — but in reverse. The founders who close the coordination gap first do not just compete with traditional companies. They compete differently. And the gap compounds.&lt;/p&gt;
&lt;h2&gt;Getting Started&lt;/h2&gt;
&lt;p&gt;The path to a compound AI organization begins with one decision: what does your knowledge layer contain today?&lt;/p&gt;
&lt;p&gt;For most solo founders, the answer is: less than you think. Brand decisions exist in your head. Legal positions were resolved and forgotten. Engineering choices were made without documentation. The first work of building a compound organization is excavation — surfacing what the company already knows and putting it in a form agents can read.&lt;/p&gt;
&lt;p&gt;Then the lifecycle begins: &lt;a href=&quot;https://www.soleur.ai&quot;&gt;brainstorm with context, plan with constraints, implement with review, compound with every session&lt;/a&gt;. Not faster individual tasks. A better organization every month.&lt;/p&gt;
&lt;p&gt;The first billion-dollar company built by one person will not be built by working harder. It will be built by an organization that compounds — and the founder who built it started before the window closed.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.soleur.ai&quot;&gt;Start building →&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;h3&gt;Is a one-person billion-dollar company actually possible?&lt;/h3&gt;
&lt;p&gt;The prediction comes from credible sources at the highest levels of the AI industry. Dario Amodei predicted it would emerge as soon as 2026. Sam Altman described an informal executive betting pool for the first year it happens. Kuo Zhang of Alibaba.com wrote that agentic AI is dismantling the Execution Wall that historically required large teams. The mechanism is structural, not motivational: compounding AI organizations that hold cross-domain context eliminate the coordination cost that previously required hundreds of people.&lt;/p&gt;
&lt;h3&gt;What is compound knowledge and why does it matter?&lt;/h3&gt;
&lt;p&gt;Compound knowledge is what happens when every AI task generates a learning that routes back into the system. Legal decisions become constraints the engineering agents reference. Brand choices become rules the marketing agents follow. Each session starts from a more informed baseline than the last. The result is an organization that improves structurally with every task, not just an individual who works faster. Without compound knowledge, AI tools plateau at the level of faster individual work. With it, they scale to the level of a coordinated organization.&lt;/p&gt;
&lt;h3&gt;How is this different from using a collection of AI tools?&lt;/h3&gt;
&lt;p&gt;Point solutions are stateless. They begin fresh with each session, in each domain, without knowledge of what other tools decided. A collection of AI tools does not produce cross-domain coordination. A compound AI organization does. The legal agent knows what the marketing agent published. The engineering agent knows what the product agent specified. When that coordination happens in the knowledge base rather than the founder&#39;s head, the founder can operate at organizational scale.&lt;/p&gt;
&lt;h3&gt;How long does it take to build a compound AI organization?&lt;/h3&gt;
&lt;p&gt;The first sessions establish the knowledge layer — capturing existing decisions, constraints, and context. The compounding begins immediately: each session generates learnings that improve the next. The practical horizon is 60-90 days to a functional multi-domain organization, and 6-12 months to a deeply compounded one where the system&#39;s accumulated knowledge represents a meaningful structural advantage. The earlier you start, the deeper the advantage before the window closes.&lt;/p&gt;
&lt;h3&gt;What does the founder actually do in a one-person company run by AI?&lt;/h3&gt;
&lt;p&gt;The founder makes decisions and the system executes them. Every domain has a lifecycle: brainstorm, plan, implement, review, compound. The founder provides judgment at each gate — defining objectives, approving plans, reviewing outputs, resolving tradeoffs. The agents handle research, drafting, implementation, and review. This is not passive ownership. It is active decision-making across nine domains without execution overhead. The skill that matters most is the quality of the decisions, not the speed of execution.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is a one-person billion-dollar company actually possible?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The prediction comes from credible sources at the highest levels of the AI industry. Dario Amodei predicted it would emerge as soon as 2026. Sam Altman described an informal executive betting pool for the first year it happens. Kuo Zhang of Alibaba.com wrote that agentic AI is dismantling the Execution Wall that historically required large teams. The mechanism is structural — compounding AI organizations that hold cross-domain context eliminate the coordination cost that previously required hundreds of people.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is compound knowledge and why does it matter?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Compound knowledge is what happens when every AI task generates a learning that routes back into the system. Legal decisions become constraints the engineering agents reference. Brand choices become rules the marketing agents follow. Each session starts from a more informed baseline than the last. Without compound knowledge, AI tools plateau at the level of faster individual work. With it, they scale to the level of a coordinated organization.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How is this different from using a collection of AI tools?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Point solutions are stateless. They begin fresh with each session, in each domain, without knowledge of what other tools decided. A compound AI organization holds cross-domain context. The legal agent knows what the marketing agent published. The engineering agent knows what the product agent specified. When that coordination happens in the knowledge base rather than the founder&#39;s head, the founder can operate at organizational scale.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How long does it take to build a compound AI organization?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The first sessions establish the knowledge layer — capturing existing decisions, constraints, and context. The compounding begins immediately: each session generates learnings that improve the next. The practical horizon is 60-90 days to a functional multi-domain organization, and 6-12 months to a deeply compounded one where accumulated knowledge represents a meaningful structural advantage.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What does the founder actually do in a one-person company run by AI?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The founder makes decisions and the system executes them. Every domain has a lifecycle: brainstorm, plan, implement, review, compound. The founder provides judgment at each gate — defining objectives, approving plans, reviewing outputs, resolving tradeoffs. The agents handle research, drafting, implementation, and review. The skill that matters most is the quality of the decisions, not the speed of execution.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Soleur vs. Paperclip: Domain Intelligence vs. AI Company Orchestration</title>
    <link href="https://www.soleur.ai/blog/soleur-vs-paperclip/" />
    <updated>2026-03-31T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/soleur-vs-paperclip/</id>
    <content type="html">&lt;p&gt;&lt;a href=&quot;https://paperclip.ing/&quot;&gt;Paperclip&lt;/a&gt; reached &lt;a href=&quot;https://github.com/paperclipai/paperclip&quot;&gt;14,600+ GitHub stars&lt;/a&gt; with a straightforward premise: give AI agents an org chart, a budget, a schedule, and governance controls, and they can run a company without humans. Zero-human company orchestration, MIT-licensed, self-hosted. The traction is real. The category framing is direct.&lt;/p&gt;
&lt;p&gt;Soleur and Paperclip both target the same destination -- a company that operates with minimal human overhead -- but they approach it from opposite ends of the stack.&lt;/p&gt;
&lt;p&gt;Paperclip is infrastructure. It tells agents when to run, how much to spend, who reports to whom, and what to do when something goes wrong. It does not tell agents what to know, how to reason about legal risk, or what makes a good marketing strategy. You bring your own agents and domain logic.&lt;/p&gt;
&lt;p&gt;Soleur is intelligence. 66 agents, 73 skills, and a compounding knowledge base across 8 departments -- engineering, marketing, legal, finance, operations, product, sales, and support. Every agent carries domain knowledge. Every session makes the system smarter. The orchestration is the workflow lifecycle: brainstorm → plan → implement → review → compound.&lt;/p&gt;
&lt;p&gt;Neither platform is complete without what the other provides. Understanding what each actually solves is the first step to knowing which one belongs in your stack -- or whether you need both.&lt;/p&gt;
&lt;h2&gt;What Paperclip Actually Is&lt;/h2&gt;
&lt;p&gt;Paperclip is an &lt;a href=&quot;https://topaiproduct.com/2026/03/06/paperclip-ai-wants-to-run-your-entire-company-with-zero-humans-and-its-open-source/&quot;&gt;open-source orchestration platform for zero-human companies&lt;/a&gt;. It is agent-runtime-agnostic: connect Claude, Cursor, OpenCode, Codex, Bash, or HTTP webhooks. As of &lt;a href=&quot;https://github.com/paperclipai/paperclip/releases/tag/v0.3.0&quot;&gt;v0.3.0&lt;/a&gt;, it supports adapters for Cursor, OpenCode, and Pi alongside the original runtime targets.&lt;/p&gt;
&lt;p&gt;The feature set is built around governance infrastructure:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Org charts with reporting lines&lt;/strong&gt; -- tasks cascade from company mission down to individual agent objectives, following the defined hierarchy&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Heartbeat scheduling&lt;/strong&gt; -- agents run on defined cadences, triggered by the platform rather than requiring user prompts&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Per-agent monthly budgets&lt;/strong&gt; -- each agent has a spending ceiling; exceeding it triggers automatic pausing&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Governance with rollback and approval gates&lt;/strong&gt; -- changes require approval before execution and can be rolled back afterward&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Immutable audit logs&lt;/strong&gt; -- every action is recorded and cannot be altered retroactively&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Multi-company support&lt;/strong&gt; -- manage multiple companies from a single instance&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The upcoming Clipmart feature extends this with downloadable pre-built company templates: full org structures and agent configurations for marketing companies, e-commerce operations, software development, sales organizations, and media. The idea is to lower the setup barrier for &amp;quot;zero-human company&amp;quot; creation.&lt;/p&gt;
&lt;p&gt;What Paperclip does not provide: agents. Domain knowledge. Opinions about what a legal agent should know, how a competitive intelligence scan should be structured, or why the brand guide the marketing agent creates should inform the content strategy the growth agent executes. Paperclip is a runtime for agents you define. It enforces constraints and routes work. The intelligence is your responsibility.&lt;/p&gt;
&lt;h2&gt;What Soleur Actually Is&lt;/h2&gt;
&lt;p&gt;Soleur is the &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; platform. 66 agents, 73 skills, and a compounding knowledge base organized across 8 business domains. Each domain has a director-level leader and specialist agents: the CMO orchestrates brand architects, SEO specialists, and growth researchers; the CLO manages legal document generation and compliance auditing; the CTO oversees engineering research, code review, architecture design, and deployment.&lt;/p&gt;
&lt;p&gt;These agents do not operate in silos. They share a git-tracked knowledge base -- a directory of structured Markdown files -- that accumulates institutional memory with every session. The brand guide the brand-architect writes informs what the content writer generates. The competitive intelligence scan the CPO runs updates the sales battlecards the deal-architect uses. The legal compliance audit references the privacy policy the CLO previously documented. Knowledge flows across domains because every agent reads from and writes to the same base.&lt;/p&gt;
&lt;p&gt;The orchestration model is the &lt;a href=&quot;https://www.soleur.aiblog/why-most-agentic-tools-plateau/&quot;&gt;compound workflow lifecycle&lt;/a&gt;: brainstorm → plan → implement → review → compound. The compound step is what separates Soleur&#39;s approach architecturally: learnings from each session are routed back to the specific agents and workflows that were active, and critical failure patterns are promoted to mechanical enforcement hooks -- code-level guardrails that make known failure modes structurally impossible.&lt;/p&gt;
&lt;p&gt;Soleur runs inside Claude Code. It is open-source and local-first: your knowledge base lives in your repository, your agents run in your environment, your credentials stay under your control.&lt;/p&gt;
&lt;h2&gt;The Core Distinction: Infrastructure vs. Intelligence&lt;/h2&gt;
&lt;p&gt;Paperclip solves the governance problem: how do you control autonomous agents operating without human oversight? Budget caps, approval gates, rollback capabilities, org hierarchy, and audit trails are the answer. These are genuine problems. Autonomous agents without constraints burn money and make irreversible decisions. Paperclip&#39;s feature set directly addresses this.&lt;/p&gt;
&lt;p&gt;Soleur solves the knowledge problem: what should agents actually know and do? A marketing agent that does not understand brand voice, competitive positioning, and SEO strategy will produce content. Whether that content is good is a different question entirely. A legal agent without knowledge of the company&#39;s regulatory context will generate documents. Whether those documents are accurate and appropriately protective depends on domain depth that cannot be scaffolded from an org chart.&lt;/p&gt;
&lt;p&gt;The gap in Paperclip&#39;s model is real: with 14,600 GitHub stars and no pre-built domain agents, the majority of setup time goes to defining agent behavior rather than extracting value from it. Clipmart will lower this barrier with company templates, but pre-built org structures still require users to fill in the actual domain intelligence -- the reasoning, the institutional context, the quality standards.&lt;/p&gt;
&lt;p&gt;The gap in Soleur&#39;s model is equally real: the workflow lifecycle is purpose-built for Claude Code sessions initiated by a human. It does not offer Paperclip&#39;s heartbeat scheduling (agents running on autonomous cron cadences), per-agent budget enforcement, or multi-company governance. These are problems Soleur has not solved. Paperclip has.&lt;/p&gt;
&lt;h2&gt;The Compounding Difference&lt;/h2&gt;
&lt;p&gt;The deepest distinction between the two platforms is not which features appear in each list. It is whether the system gets smarter with use.&lt;/p&gt;
&lt;p&gt;Paperclip tracks tasks, budgets, and audit logs. This produces valuable operational data. It does not feed back into agent behavior. An agent that exceeded its budget and was automatically paused does not learn from the experience. The governance layer enforces rules it was given; it does not discover new rules through operation.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s compound step changes this. &lt;a href=&quot;https://www.soleur.aiblog/why-most-agentic-tools-plateau/&quot;&gt;From the project&#39;s engineering log&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;An AI agent edited files outside its designated workspace. Two hours of work disappeared. The failure triggered a four-stage response: documentation, governance rule, enforcement hook, routing. The system can never make that mistake again.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The four-stage arc -- incident → rule → code-level guard → structural prevention -- has repeated across dozens of failure classes. The project&#39;s governance document started at 26 rules. It now contains 200+, each triggered by a real incident. When an agent makes a mistake, the compound step ensures neither that agent nor any agent will make it again. The knowledge base does not just record history -- it changes behavior.&lt;/p&gt;
&lt;p&gt;Paperclip&#39;s rollback capabilities address damage after it occurs. Soleur&#39;s compound architecture prevents the damage by making recurrence structurally impossible. Both approaches are valuable; they operate at different points in the failure lifecycle.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;What you need&lt;/th&gt;
&lt;th&gt;Paperclip&lt;/th&gt;
&lt;th&gt;Soleur&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Governance and budget controls&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Partial&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Heartbeat scheduling (autonomous cron)&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rollback and approval gates&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pre-built domain agents&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Compounding cross-domain knowledge base&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Self-improving rules and guardrails&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workflow lifecycle (brainstorm through ship)&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Open-source and local-first&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multi-company support&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;When Paperclip Is the Right Choice&lt;/h2&gt;
&lt;p&gt;Paperclip is the right choice when you need autonomous agent governance: the ability to run agents on schedules without user prompts, with defined budget ceilings and rollback controls. If you are building a zero-human company where agents operate continuously -- marketing agents posting on cadence, data agents refreshing reports overnight, operations agents monitoring spend -- Paperclip provides the governance layer that makes continuous autonomous operation safe.&lt;/p&gt;
&lt;p&gt;If you already have domain agents -- built on Claude, Cursor, or another runtime -- and need orchestration infrastructure around them, Paperclip&#39;s org chart model and adapter ecosystem are a faster path than building governance from scratch.&lt;/p&gt;
&lt;p&gt;Clipmart, when it ships, will make Paperclip more accessible for founders without existing agent libraries: downloadable company templates for marketing, e-commerce, software development, and other verticals. The quality of those templates will determine how much domain intelligence comes pre-built versus how much founders still need to supply.&lt;/p&gt;
&lt;h2&gt;When Soleur Is the Right Choice&lt;/h2&gt;
&lt;p&gt;Soleur is the right choice when the quality of what agents produce matters as much as the fact that they run.&lt;/p&gt;
&lt;p&gt;A competitive intelligence scan that misses new entrants is worse than no scan. A legal compliance audit that cites outdated regulations creates false confidence. A content strategy that ignores brand positioning produces noise. These are not problems that governance controls solve -- they are problems that require domain depth, institutional memory, and the kind of cross-domain coherence that only compounds over time.&lt;/p&gt;
&lt;p&gt;Solo founders building companies where legal, financial, and product strategy decisions carry real stakes cannot delegate those decisions to autonomous cycles and expect competitive-quality output. Soleur&#39;s 8-domain coverage includes the three domains Paperclip&#39;s comparable tools most commonly omit: legal, finance, and product strategy -- precisely because those domains require careful human-in-the-loop review, not autonomous execution.&lt;/p&gt;
&lt;p&gt;If you work in Claude Code, want a full AI organization that accumulates knowledge about your specific business, and want every decision to make subsequent decisions better, Soleur&#39;s compound architecture is built for that use case.&lt;/p&gt;
&lt;h2&gt;Using Both&lt;/h2&gt;
&lt;p&gt;The complementary case is direct: Soleur provides domain intelligence; Paperclip provides governance infrastructure. Soleur&#39;s 66 agents could run within Paperclip&#39;s orchestration framework -- heartbeat-scheduled, budget-capped, with rollback controls -- while contributing to a compounding knowledge base that Paperclip&#39;s governance layer does not supply.&lt;/p&gt;
&lt;p&gt;Paperclip&#39;s adapter model demonstrates this is architecturally feasible. &lt;a href=&quot;https://github.com/paperclipai/paperclip/releases/tag/v0.3.0&quot;&gt;v0.3.0 added adapters&lt;/a&gt; for Cursor, OpenCode, and Pi. A Soleur adapter would extend this pattern: Soleur&#39;s agents run as managed workers within Paperclip&#39;s org chart, governed by Paperclip&#39;s budget and scheduling controls, while the compound step continues building cross-domain institutional memory after each session.&lt;/p&gt;
&lt;p&gt;An official Soleur adapter for Paperclip does not yet exist. The combination represents the most complete zero-human company stack either platform could offer.&lt;/p&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Q: Is Paperclip a competitor to Soleur?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Partially. Both target the AI company category, but they operate at different layers of the stack. Paperclip is governance infrastructure: org charts, budget controls, scheduling, rollback, audit logs. Soleur is domain intelligence: purpose-built agents, compounding knowledge base, workflow lifecycle. The most accurate framing is complementary -- Paperclip governs how agents run; Soleur defines what agents know and do. Direct competition begins if Clipmart ships company templates with deep, compounding domain intelligence, or if Soleur adds autonomous scheduling and budget enforcement.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Does Paperclip include domain agents for legal, marketing, or finance?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;No. Paperclip is agent-runtime-agnostic and does not include pre-built domain agents. It supports Claude, Cursor, OpenCode, Codex, Bash, and HTTP webhooks, but you supply your own agents and domain logic. The upcoming Clipmart feature will provide org structure templates for specific verticals, but the agents and their domain intelligence remain user-defined.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: What is zero-human company orchestration?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Zero-human company orchestration describes systems designed to run business operations autonomously -- agents handling scheduling, task execution, and decision-making without human intervention between cycles. Paperclip is built explicitly for this model, with heartbeat scheduling, approval gates, and budget controls to make continuous autonomous operation safe. Soleur takes a founder-in-the-loop approach: agents execute fully, but the founder makes decisions at key workflow gates rather than receiving a summary after the fact.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Can Soleur and Paperclip be used together?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Yes. Soleur&#39;s domain agents could run as managed workers within Paperclip&#39;s orchestration framework, gaining heartbeat scheduling, per-agent budget controls, and rollback governance while contributing to the compounding knowledge base that Paperclip does not supply. An official adapter does not yet exist, but Paperclip&#39;s v0.3.0 adapter pattern (Cursor, OpenCode, Pi) makes this architecturally straightforward. The combination would represent the most complete open-source, self-hosted zero-human company stack available.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: What are the main open-source AI company platforms in 2026?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The two most prominent open-source, self-hosted platforms for AI company operation are Paperclip (MIT license, 14,600+ GitHub stars, governance infrastructure layer) and Soleur (open-source, 66 agents, domain intelligence layer). Polsia is the fastest-growing proprietary alternative -- &lt;a href=&quot;https://www.teamday.ai/ai/polsia-solo-founder-million-arr-self-running-companies&quot;&gt;$1.5M ARR with 2,000+ managed companies&lt;/a&gt; as of March 2026 -- but is cloud-hosted, closed-source, and fully autonomous by design.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is Paperclip a competitor to Soleur?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Partially. Both target the AI company category, but they operate at different layers of the stack. Paperclip is governance infrastructure: org charts, budget controls, scheduling, rollback, audit logs. Soleur is domain intelligence: purpose-built agents, compounding knowledge base, workflow lifecycle. The most accurate framing is complementary — Paperclip governs how agents run; Soleur defines what agents know and do.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does Paperclip include domain agents for legal, marketing, or finance?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;No. Paperclip is agent-runtime-agnostic and does not include pre-built domain agents. It supports Claude, Cursor, OpenCode, Codex, Bash, and HTTP webhooks, but you supply your own agents and domain logic. The upcoming Clipmart feature will provide org structure templates for specific verticals, but the agents and their domain intelligence remain user-defined.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is zero-human company orchestration?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Zero-human company orchestration describes systems designed to run business operations autonomously — agents handling scheduling, task execution, and decision-making without human intervention between cycles. Paperclip is built explicitly for this model. Soleur takes a founder-in-the-loop approach: agents execute fully, but the founder makes decisions at key workflow gates.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Can Soleur and Paperclip be used together?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Yes. Soleur&#39;s domain agents could run as managed workers within Paperclip&#39;s orchestration framework, gaining heartbeat scheduling, per-agent budget controls, and rollback governance while contributing to the compounding knowledge base that Paperclip does not supply. An official adapter does not yet exist, but Paperclip&#39;s v0.3.0 adapter pattern makes this architecturally straightforward.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What are the main open-source AI company platforms in 2026?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The two most prominent open-source, self-hosted platforms for AI company operation are Paperclip (MIT license, 14,600+ GitHub stars, governance infrastructure layer) and Soleur (open-source, purpose-built domain agents, domain intelligence layer). Polsia is the fastest-growing proprietary alternative at $1.5M ARR with 2,000+ managed companies as of March 2026, but is cloud-hosted, closed-source, and fully autonomous by design.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Your AI Team Now Works From Your Actual Codebase</title>
    <link href="https://www.soleur.ai/blog/your-ai-team-works-from-your-actual-codebase/" />
    <updated>2026-03-29T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/your-ai-team-works-from-your-actual-codebase/</id>
    <content type="html">&lt;p&gt;Every AI development workflow has the same failure mode: the agent starts with a blank workspace. It does not know your architecture, your brand voice, your legal constraints, or what you shipped last week. You brief it from scratch every session. The context you build evaporates when the session ends.&lt;/p&gt;
&lt;p&gt;Soleur agents now operate on your actual codebase. Connect your GitHub repository during onboarding, and every agent conversation starts with full project context — your decisions, your patterns, what you have built so far.&lt;/p&gt;
&lt;h2&gt;What Changed&lt;/h2&gt;
&lt;p&gt;The onboarding flow now includes a repository connection step. You have three options:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Connect an existing project.&lt;/strong&gt; If you already have code on GitHub, install the Soleur GitHub App, select your repository, and your workspace is provisioned with your code. Your AI team reads your knowledge base, brand guide, specifications, and learnings from the first conversation.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Start fresh.&lt;/strong&gt; If you are pre-code or starting a new venture, Soleur creates a private repository under your GitHub account. The workspace scaffolds a knowledge base structure from day one — brainstorms, specs, plans, and learnings directories ready for your first session.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Skip for now.&lt;/strong&gt; Repository connection is optional. You can connect later from Settings.&lt;/p&gt;
&lt;p&gt;The entire flow is designed for founders who may not be technical. Plain language, no jargon, clear explanations of what each step does and why.&lt;/p&gt;
&lt;h2&gt;How It Works&lt;/h2&gt;
&lt;p&gt;When you connect a repository, Soleur installs a &lt;a href=&quot;https://docs.github.com/en/apps&quot;&gt;GitHub App&lt;/a&gt; on your account. The app requests permission to read and manage your project files — nothing else. Your code stays in your GitHub account, under your control.&lt;/p&gt;
&lt;p&gt;Behind the scenes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Session start:&lt;/strong&gt; Your workspace pulls the latest changes from your repository. If your team (or another agent) pushed changes since your last session, you get them automatically.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Session end:&lt;/strong&gt; Any changes your AI team made — new specifications, updated brand guide, generated legal documents — are pushed back to your repository.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sync is best-effort.&lt;/strong&gt; A failed sync never blocks your session. If something goes wrong, the next session retries. Your work is never interrupted by a network hiccup or a merge conflict.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Authentication uses short-lived GitHub App installation tokens that expire after one hour. No long-lived credentials are stored in your workspace. The AI team accesses your repository through secure, scoped tokens that you can revoke at any time.&lt;/p&gt;
&lt;h2&gt;The Compounding Effect&lt;/h2&gt;
&lt;p&gt;Repository connection is not a convenience feature. It is the infrastructure that makes &lt;a href=&quot;https://www.soleur.aiblog/why-most-agentic-tools-plateau/&quot;&gt;compound knowledge&lt;/a&gt; work in practice.&lt;/p&gt;
&lt;p&gt;Every Soleur session produces artifacts: brainstorm documents capture design decisions. Plans encode implementation strategy. Learnings record what worked and what did not. Legal agents generate compliance documents. Marketing agents produce content briefs. All of these accumulate in your knowledge base.&lt;/p&gt;
&lt;p&gt;Without repository connection, these artifacts exist only in a temporary workspace. They vanish when the session ends. With repository connection, they persist in your GitHub repository. The next session reads them. The session after that builds on them. Your AI team&#39;s institutional memory compounds across every conversation, every domain, every decision.&lt;/p&gt;
&lt;p&gt;This is the difference between an AI that forgets and an AI team that learns.&lt;/p&gt;
&lt;h2&gt;What This Means for Your Workflow&lt;/h2&gt;
&lt;p&gt;Before repository connection, a typical Soleur session started with context-setting. You explained what you were building, what you had decided, what constraints applied. The AI team was capable but amnesiac.&lt;/p&gt;
&lt;p&gt;Now, a typical session starts with the AI team already knowing:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Your project architecture and codebase&lt;/li&gt;
&lt;li&gt;Your brand voice and messaging guidelines&lt;/li&gt;
&lt;li&gt;Your legal documents and compliance requirements&lt;/li&gt;
&lt;li&gt;Your product roadmap and strategic priorities&lt;/li&gt;
&lt;li&gt;Every decision you have made in previous sessions&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The founder&#39;s role does not change. You still make every decision. You still approve every output. But the starting point is different. Your AI team begins where the last session ended, not from zero.&lt;/p&gt;
&lt;h2&gt;Getting Started&lt;/h2&gt;
&lt;p&gt;New users see the repository connection flow during onboarding. Existing users can connect a repository from Settings.&lt;/p&gt;
&lt;p&gt;The feature is live now. No waitlist, no beta, no pricing change. Repository connection is part of the Soleur open-source platform.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;strong&gt;Q: Does Soleur access my private repositories?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The Soleur GitHub App accesses only the repositories you explicitly select during installation. You choose which repositories to grant access to, and you can modify or revoke that access at any time from your GitHub settings.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: What happens if I disconnect my repository?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Your workspace continues to function with the code and knowledge base already provisioned. You lose automatic sync — changes will not pull or push until you reconnect. No data is deleted.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Can I use Soleur without connecting a repository?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Yes. Repository connection is optional. You can skip it during onboarding and connect later, or use Soleur with a standalone workspace. The AI team works in both modes — repository connection adds persistence and compounding across sessions.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: What if I do not have a GitHub account?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The onboarding flow requires a GitHub account for repository connection. If you choose &amp;quot;Start Fresh,&amp;quot; Soleur creates the repository under your GitHub account. GitHub offers free accounts with unlimited private repositories.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Is my code sent to third parties?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Your code stays in your GitHub account and in your local Soleur workspace. Soleur agents read your codebase to understand context. The code itself is processed by Anthropic&#39;s Claude models under their &lt;a href=&quot;https://www.anthropic.com/policies&quot;&gt;data retention policies&lt;/a&gt;. No code is stored on Soleur servers or shared with other parties.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does Soleur access my private repositories?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The Soleur GitHub App accesses only the repositories you explicitly select during installation. You choose which repositories to grant access to, and you can modify or revoke that access at any time from your GitHub settings.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What happens if I disconnect my repository?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Your workspace continues to function with the code and knowledge base already provisioned. You lose automatic sync — changes will not pull or push until you reconnect. No data is deleted.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Can I use Soleur without connecting a repository?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Yes. Repository connection is optional. You can skip it during onboarding and connect later, or use Soleur with a standalone workspace. The AI team works in both modes — repository connection adds persistence and compounding across sessions.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What if I do not have a GitHub account?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The onboarding flow requires a GitHub account for repository connection. If you choose Start Fresh, Soleur creates the repository under your GitHub account. GitHub offers free accounts with unlimited private repositories.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is my code sent to third parties?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Your code stays in your GitHub account and in your local Soleur workspace. Soleur agents read your codebase to understand context. The code itself is processed by Anthropic&#39;s Claude models under their data retention policies. No code is stored on Soleur servers or shared with other parties.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Credential Helper Isolation: Secure Git Auth in Sandboxed Environments</title>
    <link href="https://www.soleur.ai/blog/credential-helper-isolation-sandboxed-environments/" />
    <updated>2026-03-29T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/credential-helper-isolation-sandboxed-environments/</id>
    <content type="html">&lt;p&gt;Sandboxed AI agents need to push and pull from git repositories. The agent runs in a constrained environment. It must not hold long-lived credentials. It must not be able to access repositories beyond its scope. And the authentication mechanism must be invisible to the agent — no interactive prompts, no manual token entry, no environment variable leakage.&lt;/p&gt;
&lt;p&gt;This is the credential helper isolation pattern we built for &lt;a href=&quot;https://www.soleur.aiblog/your-ai-team-works-from-your-actual-codebase/&quot;&gt;Soleur&#39;s repository connection feature&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;The Problem&lt;/h2&gt;
&lt;p&gt;A Soleur agent session needs to:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Pull&lt;/strong&gt; the latest changes from the user&#39;s GitHub repository at session start&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Push&lt;/strong&gt; any changes the agent made at session end&lt;/li&gt;
&lt;li&gt;Do both without storing credentials in the workspace, the environment, or any file the agent can read&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The standard approaches fail in this context:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Personal Access Tokens (PATs)&lt;/strong&gt; are long-lived, user-scoped, and grant access to every repository the user owns. A leaked PAT in a sandboxed environment is a full-scope credential compromise. PATs also require the user to generate and manage tokens manually — a friction point for non-technical founders.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Deploy keys&lt;/strong&gt; are repository-scoped but SSH-based, require key pair management, and cannot be rotated programmatically. They also grant permanent access until manually revoked.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;OAuth tokens&lt;/strong&gt; require an interactive browser flow that cannot run inside a headless agent session. The token refresh cycle adds complexity without solving the scope problem.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;GitHub App installation tokens&lt;/strong&gt; are the right fit: automatically scoped to the repositories the user selected during app installation, expire after one hour, and can be generated programmatically from a server-side JWT.&lt;/p&gt;
&lt;h2&gt;The Credential Helper Pattern&lt;/h2&gt;
&lt;p&gt;Git supports custom credential helpers via the &lt;code&gt;GIT_ASKPASS&lt;/code&gt; environment variable or the &lt;code&gt;credential.helper&lt;/code&gt; configuration option. A credential helper is any executable that outputs &lt;code&gt;username&lt;/code&gt; and &lt;code&gt;password&lt;/code&gt; lines when git needs authentication.&lt;/p&gt;
&lt;p&gt;The pattern:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Generate a short-lived GitHub App installation token on the server&lt;/li&gt;
&lt;li&gt;Write a temporary shell script that echoes the token as git credentials&lt;/li&gt;
&lt;li&gt;Pass the script path to git via &lt;code&gt;-c credential.helper=!&amp;lt;path&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Run the git operation (clone, pull, or push)&lt;/li&gt;
&lt;li&gt;Delete the credential helper in a &lt;code&gt;finally&lt;/code&gt; block&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Here is the credential helper writer from &lt;code&gt;session-sync.ts&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;function writeCredentialHelper(token: string): string {
  const helperPath = randomCredentialPath();
  writeFileSync(
    helperPath,
    `#!/bin/sh&#92;necho &amp;quot;username=x-access-token&amp;quot;&#92;necho &amp;quot;password=${token}&amp;quot;`,
    { mode: 0o700 },
  );
  return helperPath;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The &lt;code&gt;x-access-token&lt;/code&gt; username is GitHub&#39;s convention for installation token authentication. The shell script is executable (&lt;code&gt;0o700&lt;/code&gt;) and owned by the process user.&lt;/p&gt;
&lt;p&gt;The cleanup is unconditional:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;function cleanupCredentialHelper(helperPath: string): void {
  try {
    unlinkSync(helperPath);
  } catch {
    // Best-effort cleanup
  }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Every git operation wraps the credential lifecycle in a &lt;code&gt;try/finally&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;let helperPath: string | null = null;
try {
  const token = await generateInstallationToken(installationId);
  helperPath = writeCredentialHelper(token);

  execFileSync(&amp;quot;git&amp;quot;, [
    &amp;quot;-c&amp;quot;, `credential.helper=!${helperPath}`,
    &amp;quot;pull&amp;quot;, &amp;quot;--no-rebase&amp;quot;, &amp;quot;--autostash&amp;quot;,
  ], { cwd: workspacePath, stdio: &amp;quot;pipe&amp;quot;, timeout: 60_000 });
} catch (err) {
  log.warn({ err, userId }, &amp;quot;Sync pull failed — continuing with local state&amp;quot;);
} finally {
  if (helperPath) cleanupCredentialHelper(helperPath);
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The credential helper exists on disk for the duration of the git operation — seconds for pulls and pushes, up to two minutes for initial clones. After the &lt;code&gt;finally&lt;/code&gt; block, the token is gone.&lt;/p&gt;
&lt;h2&gt;Security Hardening&lt;/h2&gt;
&lt;h3&gt;Randomized paths prevent symlink attacks&lt;/h3&gt;
&lt;p&gt;If the credential helper path were predictable (e.g., &lt;code&gt;/tmp/git-credentials&lt;/code&gt;), an attacker with write access to &lt;code&gt;/tmp&lt;/code&gt; could plant a symlink before the helper is written. The &lt;code&gt;writeFileSync&lt;/code&gt; call would follow the symlink and overwrite the target file, or the attacker could read the token from the known path.&lt;/p&gt;
&lt;p&gt;The path uses &lt;code&gt;crypto.randomUUID()&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;export function randomCredentialPath(): string {
  return `/tmp/git-cred-${randomUUID()}`;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The UUID is generated by Node&#39;s &lt;code&gt;crypto&lt;/code&gt; module, which uses the operating system&#39;s cryptographic random number generator. The path is unpredictable — an attacker cannot race the write.&lt;/p&gt;
&lt;h3&gt;UUID validation prevents path traversal&lt;/h3&gt;
&lt;p&gt;Every function that takes a &lt;code&gt;userId&lt;/code&gt; parameter validates it against a UUID regex before constructing file paths:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;const UUID_RE = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;

if (!UUID_RE.test(userId)) {
  throw new Error(`Invalid userId format: ${userId}`);
}

const workspacePath = join(getWorkspacesRoot(), userId);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Without this check, a &lt;code&gt;userId&lt;/code&gt; of &lt;code&gt;../../etc&lt;/code&gt; would construct a workspace path outside the expected directory. The UUID regex enforces that &lt;code&gt;userId&lt;/code&gt; contains only hex characters and hyphens — no path separators, no dots, no special characters.&lt;/p&gt;
&lt;h3&gt;Token expiry limits blast radius&lt;/h3&gt;
&lt;p&gt;GitHub App installation tokens expire after one hour. The token cache adds a five-minute safety margin:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;const TOKEN_SAFETY_MARGIN_MS = 5 * 60 * 1000;

const cached = tokenCache.get(installationId);
if (cached &amp;amp;&amp;amp; cached.expiresAt &amp;gt; Date.now() + TOKEN_SAFETY_MARGIN_MS) {
  return cached.token;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;If a token leaks despite the randomized paths and immediate cleanup, the exposure window is at most 55 minutes. Compare this to a PAT, which has no expiry by default.&lt;/p&gt;
&lt;h2&gt;GitHub App JWT Flow&lt;/h2&gt;
&lt;p&gt;Installation tokens are exchanged from a JWT signed with the GitHub App&#39;s private key. The JWT is built with Node&#39;s &lt;code&gt;crypto&lt;/code&gt; module — no external JWT library:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;function createAppJwt(): string {
  const now = Math.floor(Date.now() / 1000);
  const header = { alg: &amp;quot;RS256&amp;quot;, typ: &amp;quot;JWT&amp;quot; };
  const payload = {
    iss: getAppId(),
    iat: now - 60,   // Clock skew tolerance
    exp: now + 10 * 60, // 10-minute JWT lifetime
  };

  const headerB64 = base64url(Buffer.from(JSON.stringify(header)));
  const payloadB64 = base64url(Buffer.from(JSON.stringify(payload)));
  const signingInput = `${headerB64}.${payloadB64}`;

  const signer = createSign(&amp;quot;RSA-SHA256&amp;quot;);
  signer.update(signingInput);
  signer.end();
  const signature = base64url(signer.sign(getPrivateKey()));

  return `${signingInput}.${signature}`;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The JWT has a 10-minute lifetime. The &lt;code&gt;iat&lt;/code&gt; is backdated by 60 seconds to handle clock skew between the server and GitHub&#39;s API. The private key is loaded from an environment variable (&lt;code&gt;GITHUB_APP_PRIVATE_KEY&lt;/code&gt;) stored in Doppler — it never touches the workspace or the agent sandbox.&lt;/p&gt;
&lt;p&gt;The JWT is exchanged for an installation token via GitHub&#39;s REST API:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;const response = await githubFetch(
  `${GITHUB_API}/app/installations/${installationId}/access_tokens`,
  {
    method: &amp;quot;POST&amp;quot;,
    headers: { Authorization: `Bearer ${jwt}` },
  },
);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The returned token is cached in memory with its expiry timestamp. Subsequent operations within the same server process reuse the cached token until five minutes before expiry.&lt;/p&gt;
&lt;h2&gt;Best-Effort Sync Philosophy&lt;/h2&gt;
&lt;p&gt;The sync operations follow a strict principle: &lt;strong&gt;a failed sync is recoverable; a blocked session is not.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Both &lt;code&gt;syncPull&lt;/code&gt; and &lt;code&gt;syncPush&lt;/code&gt; catch all errors and log warnings instead of throwing:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;export async function syncPull(
  userId: string,
  workspacePath: string,
): Promise&amp;lt;void&amp;gt; {
  // ... setup ...
  try {
    // ... pull logic ...
  } catch (err) {
    log.warn({ err, userId },
      &amp;quot;Sync pull failed — continuing with local state&amp;quot;);
  } finally {
    if (helperPath) cleanupCredentialHelper(helperPath);
  }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;If the pull fails — network outage, token error, merge conflict — the session starts with whatever local state exists. The agent works against a slightly stale codebase rather than not starting at all.&lt;/p&gt;
&lt;p&gt;If the push fails, the commit message includes context for the next session:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;log.warn({ err, userId },
  &amp;quot;Sync push failed — next session will retry&amp;quot;);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The next &lt;code&gt;syncPull&lt;/code&gt; auto-commits any local changes before pulling, so work that accumulated between sessions — whether or not the previous push succeeded — is preserved.&lt;/p&gt;
&lt;h3&gt;Why merge instead of rebase&lt;/h3&gt;
&lt;p&gt;The pull uses &lt;code&gt;--no-rebase&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-typescript&quot;&gt;execFileSync(&amp;quot;git&amp;quot;, [
  &amp;quot;-c&amp;quot;, `credential.helper=!${helperPath}`,
  &amp;quot;pull&amp;quot;, &amp;quot;--no-rebase&amp;quot;, &amp;quot;--autostash&amp;quot;,
], { cwd: workspacePath, stdio: &amp;quot;pipe&amp;quot;, timeout: 60_000 });
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Shallow clones (&lt;code&gt;--depth 1&lt;/code&gt;) lack sufficient history for rebase operations. A rebase against a shallow clone can fail unpredictably when the common ancestor is not in the local history. Merge is the safe default — it produces a merge commit but never fails due to missing history.&lt;/p&gt;
&lt;p&gt;The &lt;code&gt;--autostash&lt;/code&gt; flag handles the case where the agent has uncommitted changes that the auto-commit missed (e.g., files matching &lt;code&gt;.gitignore&lt;/code&gt; patterns that were later un-ignored).&lt;/p&gt;
&lt;h2&gt;The Full Lifecycle&lt;/h2&gt;
&lt;p&gt;Putting it together, the credential lifecycle for a single agent session:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Session start:&lt;/strong&gt; Server calls &lt;code&gt;syncPull(userId, workspacePath)&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;syncPull&lt;/code&gt; fetches the user&#39;s &lt;code&gt;github_installation_id&lt;/code&gt; from the database&lt;/li&gt;
&lt;li&gt;&lt;code&gt;generateInstallationToken&lt;/code&gt; signs a JWT with the App&#39;s private key, exchanges it for an installation token, caches the result&lt;/li&gt;
&lt;li&gt;&lt;code&gt;writeCredentialHelper&lt;/code&gt; writes the token to a randomized &lt;code&gt;/tmp&lt;/code&gt; path&lt;/li&gt;
&lt;li&gt;Git pulls using the credential helper, merging remote changes&lt;/li&gt;
&lt;li&gt;&lt;code&gt;cleanupCredentialHelper&lt;/code&gt; deletes the helper script&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Agent session runs&lt;/strong&gt; — all git operations within the session use the workspace&#39;s existing git config (no credentials needed for local operations)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Session end:&lt;/strong&gt; Server calls &lt;code&gt;syncPush(userId, workspacePath)&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Steps 3-6 repeat for the push operation&lt;/li&gt;
&lt;li&gt;The installation token expires within the hour. The credential helper no longer exists on disk.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;At no point does the agent sandbox contain a reusable credential. The token exists in a shell script for the duration of a git command — milliseconds to seconds. The shell script path is unpredictable. The token itself expires.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;strong&gt;Q: Why not use &lt;code&gt;GIT_ASKPASS&lt;/code&gt; instead of &lt;code&gt;credential.helper&lt;/code&gt;?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;GIT_ASKPASS&lt;/code&gt; works but requires setting an environment variable that persists for the duration of the process. The &lt;code&gt;-c credential.helper=!&amp;lt;path&amp;gt;&lt;/code&gt; flag is scoped to a single git invocation. If the process spawns other git operations (e.g., the agent running git commands), they do not inherit the credential helper.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: What happens if the credential helper is not cleaned up?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The token in the helper expires after one hour regardless. The randomized filename means it cannot be targeted without directory listing access. But the &lt;code&gt;finally&lt;/code&gt; block ensures cleanup in all normal and exceptional exit paths — the only scenario where cleanup fails is a hard process kill (SIGKILL), in which case the file persists until the next &lt;code&gt;/tmp&lt;/code&gt; cleanup cycle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Why not use GitHub&#39;s built-in credential caching?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;GitHub&#39;s &lt;code&gt;credential.helper store&lt;/code&gt; and &lt;code&gt;credential.helper cache&lt;/code&gt; persist credentials across git invocations — the opposite of what we want. The isolated helper pattern ensures credentials exist only for the duration of one operation.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Does the shallow clone limit what agents can do?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Shallow clones (&lt;code&gt;--depth 1&lt;/code&gt;) lack full git history. Agents cannot run &lt;code&gt;git log&lt;/code&gt; with history beyond the latest commit, &lt;code&gt;git blame&lt;/code&gt; across old revisions, or rebase against distant ancestors. For the intended use case — reading and modifying current project state — shallow clones are sufficient. The trade-off is clone speed (seconds vs. minutes for large repositories) against history depth.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Why not use GIT_ASKPASS instead of credential.helper?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;GIT_ASKPASS works but requires setting an environment variable that persists for the duration of the process. The -c credential.helper flag is scoped to a single git invocation. If the process spawns other git operations, they do not inherit the credential helper.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What happens if the credential helper is not cleaned up?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The token in the helper expires after one hour regardless. The randomized filename means it cannot be targeted without directory listing access. The finally block ensures cleanup in all normal and exceptional exit paths — the only scenario where cleanup fails is a hard process kill (SIGKILL).&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Why not use GitHub&#39;s built-in credential caching?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;GitHub&#39;s credential.helper store and credential.helper cache persist credentials across git invocations — the opposite of what we want. The isolated helper pattern ensures credentials exist only for the duration of one operation.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does the shallow clone limit what agents can do?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Shallow clones (depth 1) lack full git history. Agents cannot run git log with history beyond the latest commit, git blame across old revisions, or rebase against distant ancestors. For the intended use case — reading and modifying current project state — shallow clones are sufficient. The trade-off is clone speed against history depth.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Soleur vs. Polsia: Two Architectures for Running a Company with AI</title>
    <link href="https://www.soleur.ai/blog/soleur-vs-polsia/" />
    <updated>2026-03-26T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/soleur-vs-polsia/</id>
    <content type="html">&lt;p&gt;Polsia hit &lt;a href=&quot;https://www.teamday.ai/ai/polsia-solo-founder-million-arr-self-running-companies&quot;&gt;$1.5M ARR with 2,000+ managed companies&lt;/a&gt; as of March 2026. Solo founder Ben Broca built an AI platform that runs companies on autopilot -- nightly autonomous cycles where AI agents evaluate company state, set priorities, execute tasks, and send a morning summary to the human who technically owns the company. The growth is real. The category is validated.&lt;/p&gt;
&lt;p&gt;The question is what kind of company you want to build.&lt;/p&gt;
&lt;p&gt;Polsia and Soleur both operate in the Company-as-a-Service space. Both use Anthropic models. Both aim to reduce the operational burden on solo founders. But their underlying architectures reflect fundamentally different answers to the same question: what should the founder&#39;s role be when AI runs the company?&lt;/p&gt;
&lt;h2&gt;What Each Platform Is&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Polsia&lt;/strong&gt; is a fully autonomous AI company-operating platform. Its architecture centers on role-based agents -- a CEO agent, an Engineer agent, a Growth Manager agent -- that run nightly autonomous cycles. Each cycle evaluates the company&#39;s current state, decides what to prioritize, executes the tasks, and delivers a summary. The founder receives a morning briefing. Polsia provisions all infrastructure: email servers, databases, Stripe, GitHub. The philosophy, in founder Ben Broca&#39;s words: &lt;a href=&quot;https://polsia.com&quot;&gt;&amp;quot;80% AI, 20% taste.&amp;quot;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Polsia is built on the Claude Agent SDK (Claude Opus 4.6) and is cloud-hosted and proprietary. Pricing as of March 2026 is &lt;a href=&quot;https://polsia.com&quot;&gt;$29-59/month&lt;/a&gt;, with a potential revenue share component (previously 20% of business revenue and 20% of managed ad spend -- whether this applies to current tiers should be confirmed directly with Polsia).&lt;/p&gt;
&lt;p&gt;Polsia covers five business domains: engineering, marketing, cold outreach, social media, and Meta ads.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Soleur&lt;/strong&gt; is a &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; platform. It deploys 66 agents across 8 business departments -- engineering, marketing, legal, finance, operations, product, sales, and support -- with a compounding knowledge base that accumulates institutional memory across every session and every domain. Soleur runs inside Claude Code.&lt;/p&gt;
&lt;p&gt;Soleur is open-source (Apache 2.0). The platform is free.&lt;/p&gt;
&lt;p&gt;The founding philosophy: you decide. Agents execute. Knowledge compounds.&lt;/p&gt;
&lt;h2&gt;The Philosophical Divide&lt;/h2&gt;
&lt;p&gt;This is not a features comparison. It is an architecture comparison rooted in a philosophical question: should AI replace founder judgment or amplify it?&lt;/p&gt;
&lt;p&gt;Polsia answers: replace it. The CEO agent decides what to prioritize. The Growth Manager decides what to post. The Engineer decides what to build. The founder receives a summary and, implicitly, approves by not intervening. The &amp;quot;20% taste&amp;quot; the founder retains is more editorial veto than active decision-making.&lt;/p&gt;
&lt;p&gt;Soleur answers: amplify it. Every Soleur workflow -- brainstorm, plan, implement, review, compound -- requires a human decision gate. The marketing agent drafts a campaign; the founder approves before anything publishes. The legal agent generates a compliance analysis; the founder reviews before the policy changes. The competitive intelligence agent surfaces a new threat; the founder decides how to respond before the strategy shifts. The AI handles 100% of execution. The founder provides 100% of judgment.&lt;/p&gt;
&lt;p&gt;Neither answer is wrong in the abstract. The right architecture depends on what you are trying to build and what role you want to play in building it.&lt;/p&gt;
&lt;h2&gt;Where They Differ&lt;/h2&gt;
&lt;h3&gt;Domain Coverage&lt;/h3&gt;
&lt;p&gt;Polsia covers five domains. Soleur covers eight.&lt;/p&gt;
&lt;p&gt;The three domains Polsia omits -- legal, finance, and product strategy -- are not peripheral. A privacy policy violation can trigger regulatory action. A financial model error can burn the runway. A product roadmap that ignores competitive positioning can make the engineering investment worthless. These are the decisions with the highest downside risk and the greatest need for human judgment.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s legal agents generate compliance documents, audit existing policies, and flag regulatory exposure. Its finance agents produce budget analysis, revenue projections, and board-ready financial reports. Its product agents run spec reviews, competitive positioning analyses, and UX validation. These domains are absent from Polsia&#39;s platform -- not because they are unimportant, but because full automation of high-stakes legal and financial decisions carries risks the autonomous model cannot absorb.&lt;/p&gt;
&lt;h3&gt;Knowledge Architecture&lt;/h3&gt;
&lt;p&gt;Polsia&#39;s agents operate in nightly cycles. Each cycle begins from the current company state -- what exists in the connected infrastructure -- not from an accumulated body of institutional knowledge. An engineering decision from last month does not inform the growth strategy this week. A brand positioning session does not shape the cold outreach copy. The agents execute within their domain; context does not compound across domains.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s compounding knowledge base is cross-domain by architecture. The brand guide written by the brand-architect agent informs every piece of marketing copy. The competitive intelligence scan updates sales battlecards. The legal compliance agent references the privacy policy when engineering ships a new data feature. The knowledge base is a git-tracked directory of Markdown files -- readable, auditable, and editable by the founder directly -- that accumulates across every session in every domain.&lt;/p&gt;
&lt;p&gt;The first time Soleur&#39;s competitive intelligence agent runs, it builds a baseline. The twentieth time, it compares against nineteen prior scans, surfaces new entrants, flags shifted pricing, and updates downstream artifacts automatically. The compounding is a structural property of how the knowledge base is written and read, not a marketing claim.&lt;/p&gt;
&lt;p&gt;Polsia runs your company cycle by cycle. Soleur builds organizational intelligence that compounds over time.&lt;/p&gt;
&lt;h3&gt;Workflow Orchestration&lt;/h3&gt;
&lt;p&gt;Polsia&#39;s workflow is a nightly cron job: evaluate state, set priorities, execute tasks, send summary. It is event-triggered and scope-limited to each domain&#39;s autonomous cycle. The decision-making is opaque -- the founder does not see why the CEO agent chose to prioritize feature X over feature Y, or why the Growth Manager sent that particular cold email to that particular list.&lt;/p&gt;
&lt;p&gt;Soleur runs structured lifecycle workflows: brainstorm &amp;gt; plan &amp;gt; implement &amp;gt; review &amp;gt; compound. Every stage produces an artifact the founder can read, modify, and approve. The plan is visible before execution starts. The review happens before anything ships. The compound step captures what was decided and why, building institutional memory that informs the next decision in the same domain and every adjacent domain.&lt;/p&gt;
&lt;p&gt;The difference between an autonomous cron job and an organizational workflow is transparency and the context that flows between stages. Polsia optimizes for founder hands-off-ness. Soleur optimizes for founder leverage.&lt;/p&gt;
&lt;h3&gt;Pricing&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://polsia.com&quot;&gt;Polsia&#39;s pricing&lt;/a&gt; as of March 2026:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Entry tier:&lt;/strong&gt; $29/month&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Higher tier:&lt;/strong&gt; $59/month&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Revenue share:&lt;/strong&gt; Historically 20% of business revenue and 20% of managed ad spend (current applicability should be confirmed with Polsia)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Soleur is open-source. The platform is free.&lt;/p&gt;
&lt;p&gt;The pricing analysis matters because of the revenue share dimension. A solo founder generating $10,000/month in revenue would pay $2,000/month under a 20% revenue share model -- on top of the subscription fee. A founder running $5,000/month in Meta ads would pay an additional $1,000/month in ad management fees. At any meaningful revenue, the true cost of Polsia&#39;s autonomous model could significantly exceed the headline $29-59/month.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s planned paid tier carries a flat rate with no revenue share. You keep everything you earn.&lt;/p&gt;
&lt;h3&gt;Infrastructure Control&lt;/h3&gt;
&lt;p&gt;Polsia provisions all infrastructure: email servers, databases, Stripe, GitHub. This convenience is part of the fully autonomous model -- the platform owns the stack on your behalf. For founders who want zero setup friction, this is a genuine feature.&lt;/p&gt;
&lt;p&gt;Soleur operates on infrastructure you control. You choose your hosting provider, your database, your payment processor. Soleur&#39;s agents run in your environment, on your infrastructure, with your credentials. For founders building companies where data privacy, infrastructure portability, or vendor independence matters, controlling the stack is not optional.&lt;/p&gt;
&lt;h2&gt;When Polsia Is the Right Choice&lt;/h2&gt;
&lt;p&gt;Polsia is well-suited for founders who want maximum automation with minimal involvement. If you are testing a business concept, want a low-touch experiment running in parallel with other work, or explicitly want AI making most of the operating decisions, Polsia&#39;s architecture is designed for that use case. The nightly cycle, morning summary, and infrastructure provisioning minimize the cognitive overhead of running an autonomous operation.&lt;/p&gt;
&lt;p&gt;If you accept the &amp;quot;80% AI, 20% taste&amp;quot; philosophy, Polsia executes it cleanly.&lt;/p&gt;
&lt;h2&gt;When Soleur Is the Right Choice&lt;/h2&gt;
&lt;p&gt;Soleur is the right choice when the quality of decisions matters as much as the speed of execution.&lt;/p&gt;
&lt;p&gt;Solo founders building companies where brand precision, legal compliance, financial planning, and product strategy are differentiators cannot hand those decisions to an autonomous system and expect competitive-quality output. The first billion-dollar solo company will not be built on autopilot. It will be built by a founder whose judgment is amplified across every domain -- where every decision makes the system smarter, and every new project benefits from everything the company has learned.&lt;/p&gt;
&lt;p&gt;If the business you are building requires legal rigor, financial modeling, product strategy, or cross-domain institutional memory that compounds over time, Soleur covers those requirements. Polsia does not.&lt;/p&gt;
&lt;p&gt;The distinction is not automation versus manual work. Both platforms automate execution. The distinction is who provides the judgment: the AI or the founder.&lt;/p&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Q: Can I use Polsia and Soleur together?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Yes, in principle. Polsia automates the operational cycles for the domains it covers. Soleur can handle the domains Polsia omits -- legal, finance, product strategy -- and provide the cross-domain knowledge infrastructure those decisions require. The architectures do not conflict; they address different scopes and different philosophies within those scopes.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Polsia&#39;s CEO agent decides priorities. Doesn&#39;t that make human-in-the-loop more efficient, not less?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Only if the autonomous decisions are reliably good. The efficiency argument for fully autonomous operation holds when the marginal cost of a wrong decision is low. When decisions carry legal, financial, or strategic consequences -- a contract clause, a pricing model, a product roadmap -- the cost of a wrong autonomous decision can exceed the time saved by not reviewing it. Soleur&#39;s position is that founder judgment is the compounding asset, not an inefficiency to be automated away.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Polsia reached $1.5M ARR. Doesn&#39;t that prove autonomous CaaS works?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Polsia&#39;s growth validates that solo founders will pay for AI-powered company operation. It validates the CaaS category thesis. What $1.5M ARR across 2,000+ managed companies does not validate is the output quality of autonomous execution, the long-term trajectory of companies running on that model, or whether the autonomous approach produces results competitive with human-guided execution at higher stakes. The market exists. The architecture question remains open.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Is Soleur&#39;s open-source model sustainable against a venture-backed competitor?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Soleur&#39;s compounding knowledge base, cross-domain institutional memory, and open-source transparency are structural advantages that a proprietary cloud platform cannot replicate by adding features. The open-source core means every agent, every skill, and every knowledge-base schema is auditable and extensible. The compound architecture means the platform gets better with use in a way that autonomous nightly cycles do not. Sustainability comes from the depth of the moat, not the size of the funding round.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Can I use Polsia and Soleur together?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Yes, in principle. Polsia automates the operational cycles for the domains it covers. Soleur can handle the domains Polsia omits — legal, finance, product strategy — and provide the cross-domain knowledge infrastructure those decisions require. The architectures do not conflict; they address different scopes and different philosophies within those scopes.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Polsia&#39;s CEO agent decides priorities. Doesn&#39;t that make human-in-the-loop more efficient, not less?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Only if the autonomous decisions are reliably good. The efficiency argument for fully autonomous operation holds when the marginal cost of a wrong decision is low. When decisions carry legal, financial, or strategic consequences — a contract clause, a pricing model, a product roadmap — the cost of a wrong autonomous decision can exceed the time saved by not reviewing it. Soleur&#39;s position is that founder judgment is the compounding asset, not an inefficiency to be automated away.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Polsia reached $1.5M ARR. Doesn&#39;t that prove autonomous CaaS works?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Polsia&#39;s growth validates that solo founders will pay for AI-powered company operation. It validates the CaaS category thesis. What $1.5M ARR across 2,000+ managed companies does not validate is the output quality of autonomous execution, the long-term trajectory of companies running on that model, or whether the autonomous approach produces results competitive with human-guided execution at higher stakes. The market exists. The architecture question remains open.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is Soleur&#39;s open-source model sustainable against a venture-backed competitor?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Soleur&#39;s compounding knowledge base, cross-domain institutional memory, and open-source transparency are structural advantages that a proprietary cloud platform cannot replicate by adding features. The open-source core means every agent, every skill, and every knowledge-base schema is auditable and extensible. The compound architecture means the platform gets better with use in a way that autonomous nightly cycles do not. Sustainability comes from the depth of the moat, not the size of the funding round.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Vibe Coding vs Agentic Engineering: What Solo Founders Need to Know</title>
    <link href="https://www.soleur.ai/blog/vibe-coding-vs-agentic-engineering/" />
    <updated>2026-03-24T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/vibe-coding-vs-agentic-engineering/</id>
    <content type="html">&lt;p&gt;In February 2025, Andrej Karpathy gave developers permission to stop overthinking and start shipping. He called it &lt;a href=&quot;https://x.com/karpathy/status/1886192184808149383&quot;&gt;vibe coding&lt;/a&gt;: describe what you want, accept the AI&#39;s output, iterate fast. For prototypes and solo builders, it was a revelation.&lt;/p&gt;
&lt;p&gt;Exactly one year later, Karpathy &lt;a href=&quot;https://x.com/karpathy/status/2019137879310836075&quot;&gt;introduced agentic engineering&lt;/a&gt; — the practice of orchestrating AI agents with human oversight rather than prompting models directly. The name stuck. The shift it described was real.&lt;/p&gt;
&lt;p&gt;The difference between these two approaches is not a matter of preference. For a solo founder trying to build at company scale, it is the difference between a system that stays helpful and one that compounds.&lt;/p&gt;
&lt;h2&gt;The Core Difference&lt;/h2&gt;
&lt;p&gt;Vibe coding is conversation. Agentic engineering is delegation with accountability.&lt;/p&gt;
&lt;p&gt;In vibe coding, you prompt a model conversationally. You describe what you want, the model generates output, you accept or reject. The session ends. The next session starts fresh. No memory of what worked, what broke, or what to avoid.&lt;/p&gt;
&lt;p&gt;Agentic engineering is different by design. You define specifications before any code is written. Agents execute against those specs with verification gates that catch regressions. Quality checks run automatically. When something breaks, the failure is documented — not just remembered, but captured in a form the next session can learn from.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Dimension&lt;/th&gt;
&lt;th&gt;Vibe Coding&lt;/th&gt;
&lt;th&gt;Agentic Engineering&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Entry point&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Conversation&lt;/td&gt;
&lt;td&gt;Specification&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Memory&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Single session&lt;/td&gt;
&lt;td&gt;Persistent across sessions&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Quality assurance&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Manual review&lt;/td&gt;
&lt;td&gt;Automated gates&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Failure handling&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Learn and move on&lt;/td&gt;
&lt;td&gt;Document, route, enforce&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Parallelization&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;One agent at a time&lt;/td&gt;
&lt;td&gt;Multiple agents, isolated workspaces&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Knowledge growth&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Resets each session&lt;/td&gt;
&lt;td&gt;Compounds with every task&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;What Vibe Coding Gets Right&lt;/h2&gt;
&lt;p&gt;Nothing in this comparison is an argument against vibe coding. It changed how solo founders build prototypes.&lt;/p&gt;
&lt;p&gt;Before vibe coding, building a working prototype required hours of context-switching between editor, documentation, and the model. Vibe coding collapsed those context switches into one conversation. For discovery work — figuring out whether something is worth building at all — it remains the fastest tool available.&lt;/p&gt;
&lt;p&gt;The problem is not the approach. The problem is what happens after you decide to build for real.&lt;/p&gt;
&lt;h2&gt;Where Vibe Coding Breaks&lt;/h2&gt;
&lt;p&gt;The plateau arrives fast.&lt;/p&gt;
&lt;p&gt;You have a working prototype. The vibes were good. Now you need to add a feature, fix a regression, or hand the codebase to another agent for review. And the first thing you realize is that the hundredth session starts from the same blank slate as the first.&lt;/p&gt;
&lt;p&gt;The model does not remember why you made that architectural decision. It does not know that approach was tried and failed three days ago. It does not know which edge cases your tests cover or which parts of the codebase are fragile. Every session is a reconstruction.&lt;/p&gt;
&lt;p&gt;This is not a model limitation. It is a structural problem with session-based development: no specification means no ground truth. No persistent knowledge means no cumulative improvement. The sessions accumulate, but the system does not get smarter.&lt;/p&gt;
&lt;h2&gt;What Agentic Engineering Solves&lt;/h2&gt;
&lt;p&gt;Agentic engineering reframes the problem. Instead of asking &amp;quot;what can I build with AI today?&amp;quot; it asks &amp;quot;how does this system get better with every task I complete?&amp;quot;&lt;/p&gt;
&lt;p&gt;Three structural changes drive this:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Specifications before execution.&lt;/strong&gt; Writing what you intend to build before building it creates a contract between you and the agent: this is the outcome, these are the constraints, this is how success is measured. The agent executes against the spec. You verify against the spec. Both parties know what done looks like.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Verification gates.&lt;/strong&gt; Agentic engineering builds review steps into the workflow itself. Automated tests run before merge. Plan review runs before implementation. Code review runs before the PR is opened. These gates are not bureaucracy — they are the mechanism by which the system catches its own mistakes before they become technical debt.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Persistent knowledge.&lt;/strong&gt; When a session generates a learning — about what works, what fails, what to prevent — that learning gets captured and routed back into the system&#39;s rules and workflows. Not just remembered by the founder. Not just written in a comment. Enforced by the system, permanently.&lt;/p&gt;
&lt;h2&gt;The Solo Founder Multiplier&lt;/h2&gt;
&lt;p&gt;For a solo founder, the distinction between these approaches carries more weight than it does for a team.&lt;/p&gt;
&lt;p&gt;A team absorbs vibe coding&#39;s memory problem through human coordination. The senior engineer remembers the architectural decisions. The QA specialist catches the regressions. Code review creates accountability even without automated gates.&lt;/p&gt;
&lt;p&gt;A solo founder has none of those redundancies. When the session ends, nothing remembers what happened. When a regression appears three weeks later, there is no one to ask. When an agent makes the same mistake for the fourth time, there is no institutional memory to stop it.&lt;/p&gt;
&lt;p&gt;Agentic engineering addresses these gaps directly. Specifications replace team meetings. Persistent knowledge replaces institutional memory. Automated gates replace the code review team that does not exist.&lt;/p&gt;
&lt;p&gt;This is why &lt;a href=&quot;https://www.soleur.ai/blog/why-most-agentic-tools-plateau/&quot;&gt;compound knowledge&lt;/a&gt; matters more for solo founders than for anyone else. A system that gets smarter with each task is not a convenience — it is the only path to building at company scale without a company.&lt;/p&gt;
&lt;h2&gt;Beyond Engineering: The Full Picture&lt;/h2&gt;
&lt;p&gt;Vibe coding solves the coding problem. Agentic engineering solves the engineering problem. Neither addresses the other functions of running a company.&lt;/p&gt;
&lt;p&gt;Legal documents need review. Marketing campaigns need execution. Competitive intelligence needs monitoring. Financial models need updating. These functions do not get better by coding faster. They get better when knowledge compounds across all of them — when the legal review informs the product positioning, when the competitive analysis shapes the pricing decision, when the engineering architecture reflects the compliance requirements.&lt;/p&gt;
&lt;p&gt;This is the premise behind &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; — a model where a single AI organization runs every department of a business, with a compounding knowledge base that every department reads from and writes to. Agentic engineering is not just a better way to code. It is the architectural pattern for every function in the company.&lt;/p&gt;
&lt;h2&gt;Start Building&lt;/h2&gt;
&lt;p&gt;The shift from vibe coding to agentic engineering is not about working harder. It is about building a system that gets easier to operate over time.&lt;/p&gt;
&lt;p&gt;Every specification written is a decision documented. Every automated gate is a failure mode permanently closed. Every learning captured is a session that starts more informed than the last.&lt;/p&gt;
&lt;p&gt;The first billion-dollar company run by one person is not built in one session. It is built by a system that compounds.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.soleur.ai&quot;&gt;Start building →&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Frequently Asked Questions&lt;/h2&gt;
&lt;h3&gt;What is vibe coding?&lt;/h3&gt;
&lt;p&gt;Vibe coding is an approach to AI-assisted development coined by Andrej Karpathy in February 2025. It describes ad-hoc, conversational AI coding: describe what you want, accept the model&#39;s output, iterate without formal specifications or quality gates. It prioritizes speed for prototyping and exploratory work.&lt;/p&gt;
&lt;h3&gt;What is agentic engineering?&lt;/h3&gt;
&lt;p&gt;Agentic engineering is the structured orchestration of AI agents with human oversight, introduced by Andrej Karpathy in February 2026. It emphasizes formal specifications before execution, automated verification gates, persistent memory across sessions, and knowledge that compounds with every task completed.&lt;/p&gt;
&lt;h3&gt;Which approach is better for solo founders?&lt;/h3&gt;
&lt;p&gt;Both approaches serve different purposes. Vibe coding is faster for prototyping and validating ideas. Agentic engineering is better suited for production systems that need to remain maintainable over time. Solo founders benefit most from agentic engineering because they lack the team redundancies — institutional memory, code review, QA — that compensate for session-based development&#39;s limitations.&lt;/p&gt;
&lt;h3&gt;How does compound engineering relate to agentic engineering?&lt;/h3&gt;
&lt;p&gt;Compound engineering is a specific implementation of agentic engineering&#39;s knowledge-persistence principle. Where agentic engineering establishes that learnings should persist across sessions, compound engineering describes the specific loop: work, capture the learning, route it back to the relevant workflow, and enforce it mechanically when possible. Compound engineering is what agentic engineering looks like when knowledge growth becomes the primary architectural goal.&lt;/p&gt;
&lt;h3&gt;Can solo founders use vibe coding and agentic engineering together?&lt;/h3&gt;
&lt;p&gt;Yes. Many effective solo founder workflows use vibe coding for exploration and prototyping, then transition to agentic engineering for production implementation. The specification written at the start of agentic engineering captures what the vibe coding prototype proved worth building. The two approaches are complementary at different stages of the same project lifecycle.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is vibe coding?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Vibe coding is an approach to AI-assisted development coined by Andrej Karpathy in February 2025. It describes ad-hoc, conversational AI coding: describe what you want, accept the model&#39;s output, iterate without formal specifications or quality gates.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is agentic engineering?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Agentic engineering is the structured orchestration of AI agents with human oversight, introduced by Andrej Karpathy in February 2026. It emphasizes formal specifications before execution, automated verification gates, persistent memory across sessions, and compounding knowledge.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Which approach is better for solo founders?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Both approaches serve different purposes. Vibe coding is faster for prototyping. Agentic engineering is better for production systems. Solo founders benefit most from agentic engineering because they lack the team redundancies that compensate for session-based development&#39;s limitations.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How does compound engineering relate to agentic engineering?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Compound engineering is a specific implementation of agentic engineering&#39;s knowledge-persistence principle, describing the loop: work, capture the learning, route it back to the relevant workflow, and enforce it mechanically when possible.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Can solo founders use vibe coding and agentic engineering together?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Yes. Many effective solo founder workflows use vibe coding for exploration and prototyping, then transition to agentic engineering for production implementation.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>AI Agents for Solo Founders: The Definitive Guide</title>
    <link href="https://www.soleur.ai/blog/ai-agents-for-solo-founders/" />
    <updated>2026-03-24T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/ai-agents-for-solo-founders/</id>
    <content type="html">&lt;p&gt;Solo-founded startups rose from 23.7% to 36.3% of all new ventures between 2019 and the first half of 2025, according to the &lt;a href=&quot;https://carta.com/data/solo-founders-report/&quot;&gt;Carta Solo Founders Report&lt;/a&gt;. The reason is not courage. It is infrastructure. AI tools now handle work that used to require a team — and most solo founders discover them the same way: a demo of something that writes code, generates copy, or drafts a legal template. It saves an hour. Then two. Then the plateau arrives.&lt;/p&gt;
&lt;p&gt;The problem is not the tools. The problem is that running a company requires eight distinct domains — engineering, marketing, legal, finance, operations, product, sales, and support — and a collection of single-function tools never adds up to a working organization.&lt;/p&gt;
&lt;p&gt;AI agents are different. An agent does not wait for prompts. It operates with a goal, uses tools to execute, and works alongside other agents toward a shared objective. For a solo founder, the difference is the difference between a faster keyboard and an actual organization.&lt;/p&gt;
&lt;p&gt;This guide is for founders who have moved past the demo. You have seen what AI can do for one function. Now you want to understand what it means to run an entire company with agents — and what separates the approaches that scale from the ones that plateau.&lt;/p&gt;
&lt;h2&gt;What Makes an AI Agent Different&lt;/h2&gt;
&lt;p&gt;A chatbot answers a question. An AI agent completes a task.&lt;/p&gt;
&lt;p&gt;The distinction sounds semantic until you try to ship something. A chatbot can explain how to write a terms of service. An agent writes the terms of service, checks it against your jurisdiction&#39;s requirements, flags clauses for review, and files a task to revisit it when regulations change. The output is not a response — it is a work product.&lt;/p&gt;
&lt;p&gt;Four properties define a true agent:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Goal-orientation.&lt;/strong&gt; The agent has a defined outcome, not just a prompt. It knows what done looks like and works toward it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Tool use.&lt;/strong&gt; The agent can read files, write code, search the web, make API calls, and coordinate with other agents. It is not limited to generating text.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Memory.&lt;/strong&gt; The agent can access context from previous sessions — prior decisions, known constraints, existing work products, and accumulated learnings.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Accountability.&lt;/strong&gt; The agent&#39;s output can be verified against a specification. This matters more for solo founders than for teams, because there is no one else checking. An agent without an accountability mechanism is a sophisticated autocomplete.&lt;/p&gt;
&lt;h2&gt;The Eight Domains of a Company&lt;/h2&gt;
&lt;p&gt;Running a company requires expertise across eight distinct domains. The &lt;a href=&quot;https://www.bls.gov/ooh/management/top-executives.htm&quot;&gt;Bureau of Labor Statistics&lt;/a&gt; describes the core duties of top executives as planning strategies, coordinating activities, and communicating with stakeholders — functions that span every department. No founder — and no AI tool — is competent in all eight from day one. The question is how you close the gaps.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Engineering&lt;/strong&gt; builds and ships the product. Code review, architecture decisions, infrastructure provisioning, test coverage, release management.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Product&lt;/strong&gt; translates user need into specification. Feature prioritization, user research, UX decisions, business validation, roadmap management.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Marketing&lt;/strong&gt; creates demand. Brand voice, content strategy, SEO, social distribution, competitive positioning.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Legal&lt;/strong&gt; manages exposure. Contract drafting, compliance monitoring, privacy policy, terms of service, IP protection, regulatory updates.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Finance&lt;/strong&gt; models the business. Revenue forecasting, expense tracking, burn rate, unit economics, pricing decisions.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Operations&lt;/strong&gt; keeps the machine running. Vendor management, process documentation, tooling reliability, infrastructure maintenance.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Sales&lt;/strong&gt; converts attention into revenue. Outbound strategy, pipeline management, deal architecture, revenue operations.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Support&lt;/strong&gt; retains customers and closes the feedback loop. Ticket triage, community management, knowledge base maintenance.&lt;/p&gt;
&lt;p&gt;A solo founder with a collection of coding tools has handled one domain. The other seven are still manual.&lt;/p&gt;
&lt;h2&gt;Why Point Solutions Fail&lt;/h2&gt;
&lt;p&gt;The promise of solopreneur AI tools is speed. A code generator writes code faster. A copywriting tool drafts faster. A contract template saves legal fees. Each tool delivers on its narrow promise — and investors have noticed. Cursor reached &lt;a href=&quot;https://www.cnbc.com/2026/02/24/cursor-announces-major-update-as-ai-coding-agent-battle-heats-up.html&quot;&gt;$1 billion in annual recurring revenue&lt;/a&gt; proving that founders will pay for AI that accelerates a single domain.&lt;/p&gt;
&lt;p&gt;What these tools cannot deliver is coordination.&lt;/p&gt;
&lt;p&gt;Legal cannot reference what marketing published. Marketing cannot reflect what engineering decided. Engineering cannot anticipate what compliance requires. Each domain operates in isolation, which means the same decision gets made — and sometimes reversed — across multiple contexts without any of them knowing.&lt;/p&gt;
&lt;p&gt;This is not a workflow problem. It is an architecture problem. Point solutions are stateless by design. They begin fresh with each session, in each domain, with each tool. The knowledge one function generates never reaches the others.&lt;/p&gt;
&lt;p&gt;For a team, this is manageable. Team members talk. A senior engineer remembers the architectural decisions that constrained the marketing roadmap. The legal counsel reads the product brief before drafting the contract. The institutional memory lives in people.&lt;/p&gt;
&lt;p&gt;A solo founder has none of that coordination infrastructure. Every handoff between domains requires the founder to carry the context manually. As the company grows, the cost of those handoffs grows with it.&lt;/p&gt;
&lt;h2&gt;What to Look For in AI Agents&lt;/h2&gt;
&lt;p&gt;Not every AI agent is useful for a solo founder. The properties that matter most differ from what matters in enterprise deployments.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Cross-domain context.&lt;/strong&gt; The most important question to ask about any AI agent stack: what does the marketing agent know about what the engineering agent decided last week? If the answer is &amp;quot;nothing,&amp;quot; you have a collection of tools, not an organization.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Persistent knowledge.&lt;/strong&gt; Agents that start from a blank slate on each session require the founder to re-supply context manually every time. Agents with persistent memory across sessions accumulate knowledge and reduce the founder&#39;s coordination cost over time. This distinction compounds — a system that remembers three months of decisions is dramatically more useful than one that forgets at session end.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Verifiable output.&lt;/strong&gt; An agent&#39;s output should be checkable against a specification. Quality gates built into the workflow replace the code review, legal review, and editorial review that a team provides. Without those gates, the founder becomes the bottleneck for every domain, every time.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Compound improvement.&lt;/strong&gt; The most valuable agents get better with use. Each task generates a learning. Each learning routes back into the system&#39;s rules. Each subsequent task starts from a more informed baseline. An agent that performs at the same level after 100 tasks as it did after 10 is a tool with a more complicated interface.&lt;/p&gt;
&lt;h2&gt;The Compound Knowledge Advantage&lt;/h2&gt;
&lt;p&gt;The gap between a useful AI stack and a scalable one comes down to what happens to knowledge after a task is complete.&lt;/p&gt;
&lt;p&gt;Most AI tools discard it. The session ends. The output remains. The reasoning that produced the output — the decisions made, the tradeoffs considered, the edge cases encountered — disappears.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.soleur.ai/blog/why-most-agentic-tools-plateau/&quot;&gt;Compound knowledge&lt;/a&gt; captures it. Every task generates a learning. The learning is routed to the domain where it belongs — engineering rules, marketing constraints, legal requirements. The next task in that domain starts with that learning already incorporated.&lt;/p&gt;
&lt;p&gt;For a solo founder, compound knowledge solves the coordination problem that point solutions cannot. When the legal agent captures a compliance requirement, it does not just document it — it enforces it in every future task that touches the affected domain. When the engineering agent learns that a particular integration is fragile, every future task that depends on it starts with that warning already in place.&lt;/p&gt;
&lt;p&gt;Over time, the AI organization does not just remember more. It makes better decisions, catches more edge cases, and requires less founder intervention. The founder&#39;s job shifts from doing and coordinating to deciding and directing.&lt;/p&gt;
&lt;p&gt;Dario Amodei, CEO of Anthropic, &lt;a href=&quot;https://www.inc.com/ben-sherry/anthropic-ceo-dario-amodei-predicts-the-first-billion-dollar-solopreneur-by-2026/91193609&quot;&gt;predicted&lt;/a&gt; a 70-80% probability that a one-person billion-dollar company would emerge by 2026. That prediction is not about better tools. It is about compound knowledge — the only mechanism that turns a solo founder into an organization that improves structurally with every task.&lt;/p&gt;
&lt;p&gt;This is why &lt;a href=&quot;https://www.soleur.ai/blog/vibe-coding-vs-agentic-engineering/&quot;&gt;agentic engineering&lt;/a&gt; matters more for solo founders than for anyone else. A system that gets smarter with each task is not a convenience — it is the only path to building at company scale without a company.&lt;/p&gt;
&lt;h2&gt;What a Full AI Organization Looks Like&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; is the model where a single AI organization covers all eight domains with agents that share a compounding knowledge base. The concept is no longer theoretical. Sam Altman, CEO of OpenAI, described a &lt;a href=&quot;https://fortune.com/2024/02/04/sam-altman-one-person-unicorn-silicon-valley-founder-myth/&quot;&gt;betting pool among tech CEOs&lt;/a&gt; for &amp;quot;the first year that there is a one-person billion-dollar company.&amp;quot; &lt;a href=&quot;https://techcrunch.com/2025/02/01/ai-agents-could-birth-the-first-one-person-unicorn-but-at-what-societal-cost/&quot;&gt;TechCrunch reported&lt;/a&gt; that AI agents could birth the first one-person unicorn — but only if they extend beyond engineering into every function a company needs. Alibaba Group President J. Michael Evans went further, telling &lt;a href=&quot;https://fortune.com/2026/03/23/one-person-unicorn-agentic-ai-kuo-zhang/&quot;&gt;Fortune&lt;/a&gt; that agentic AI is making the one-person unicorn a near-term reality.&lt;/p&gt;
&lt;p&gt;In practice, a full AI organization means:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;An engineering review that checks code against the product spec, the legal constraints, and the compliance requirements — simultaneously, without the founder acting as the relay&lt;/li&gt;
&lt;li&gt;A marketing brief that automatically reflects the latest competitive intelligence from the product and engineering teams&lt;/li&gt;
&lt;li&gt;A contract draft that incorporates the business model, jurisdiction requirements, and pricing decisions already captured in the knowledge base&lt;/li&gt;
&lt;li&gt;A financial report that draws on operational data, sales pipeline, and engineering velocity to produce an accurate view of the business&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Each of these is an agent operating within shared context. The result is an organization that behaves coherently across domains — not because the founder coordinated the handoffs, but because the knowledge base did.&lt;/p&gt;
&lt;p&gt;Soleur is built on this model: 63 agents across 8 departments, sharing a knowledge base that compounds with every task completed.&lt;/p&gt;
&lt;h2&gt;Getting Started&lt;/h2&gt;
&lt;p&gt;The path from solo founder to AI organization does not begin with replacing all your tools at once. It begins with establishing the knowledge layer.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Step 1: Define your knowledge base.&lt;/strong&gt; Document what your company knows: the architecture decisions, the brand voice, the legal constraints, the pricing model. This is the ground truth every agent reads from and writes to.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Step 2: Start with one domain.&lt;/strong&gt; Pick the domain where manual work costs you the most. Engineering is the natural starting point for technical founders, but marketing, legal, and finance are equally valid entry points. Deploy agents there first. Let the knowledge compound.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Step 3: Connect the domains.&lt;/strong&gt; Once one domain is running, introduce the adjacent ones. The key is ensuring agents share context — a marketing agent that knows what engineering decided, a legal agent that knows what marketing published. The connections matter more than the individual capabilities.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Step 4: Build the feedback loop.&lt;/strong&gt; Every task should generate a learning. Every learning should route back into the relevant domain&#39;s rules. The system should be measurably more effective after 100 tasks than after 10.&lt;/p&gt;
&lt;p&gt;The goal is not AI tools that make you faster today. It is an AI organization that makes you more capable every month.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.soleur.ai&quot;&gt;Start building →&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Frequently Asked Questions&lt;/h2&gt;
&lt;h3&gt;What is an AI agent for a solo founder?&lt;/h3&gt;
&lt;p&gt;An AI agent is a system that operates with a defined goal, uses tools to complete tasks, maintains memory across sessions, and can be verified against a specification. For solo founders, agents replace team functions that a single person cannot fill alone — code review, legal review, marketing execution, financial modeling — while sharing context across all domains so the organization behaves coherently.&lt;/p&gt;
&lt;h3&gt;How are AI agents different from AI tools like chatbots or coding assistants?&lt;/h3&gt;
&lt;p&gt;Most AI tools are session-based and single-function. They generate responses to prompts but do not maintain memory, execute multi-step workflows, or coordinate with other tools. AI agents are designed to complete tasks, not just answer questions. The best agents accumulate knowledge over time so each subsequent task benefits from everything the system has previously learned.&lt;/p&gt;
&lt;h3&gt;What are the most important solopreneur AI tools in 2026?&lt;/h3&gt;
&lt;p&gt;The highest-leverage agents cover the functions a solo founder cannot easily replicate: code review, legal document generation, competitive intelligence monitoring, financial modeling, and marketing execution. But individual agent capability matters less than cross-domain coordination. An agent stack where each domain shares context with the others compounds faster than a collection of specialized tools that cannot communicate.&lt;/p&gt;
&lt;h3&gt;How does compound knowledge work in practice?&lt;/h3&gt;
&lt;p&gt;Compound knowledge means every task generates a learning, and every learning is routed back into the relevant domain&#39;s rules or constraints. If the legal agent learns your jurisdiction requires a specific clause in employment agreements, that requirement is captured and applied to every future contract automatically. If the engineering agent encounters a fragile integration, that knowledge is documented and every future task touching the same integration starts with the warning already in place. The system improves structurally, not just incrementally.&lt;/p&gt;
&lt;h3&gt;Is Soleur only for technical founders?&lt;/h3&gt;
&lt;p&gt;No. Soleur covers all eight departments of a company — engineering, marketing, legal, finance, operations, product, sales, and support. Many founders start with the engineering domain, but legal, marketing, finance, and product agents operate independently and compound knowledge in their own domains. A founder with no engineering background can start with marketing or legal and build from there.&lt;/p&gt;
&lt;h3&gt;How do I get started with AI agents as a solo founder?&lt;/h3&gt;
&lt;p&gt;Start by defining your knowledge base: the decisions you have made, the constraints you operate within, the brand voice you want to maintain. Then deploy agents in the domain where manual work costs you the most. Connect domains as you add them, ensuring agents share context. Build the feedback loop so every task generates a learning that improves the next one. The goal is an AI organization that compounds — not a set of tools performing the same function at the same level indefinitely.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is an AI agent for a solo founder?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;An AI agent is a system that operates with a defined goal, uses tools to complete tasks, maintains memory across sessions, and can be verified against a specification. For solo founders, agents replace team functions that a single person cannot fill alone — code review, legal review, marketing execution, financial modeling — while sharing context across all domains so the organization behaves coherently.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How are AI agents different from AI tools like chatbots or coding assistants?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Most AI tools are session-based and single-function. They generate responses to prompts but do not maintain memory, execute multi-step workflows, or coordinate with other tools. AI agents are designed to complete tasks, not just answer questions. The best agents accumulate knowledge over time so each subsequent task benefits from everything the system has previously learned.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What are the most important solopreneur AI tools in 2026?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;The highest-leverage agents cover the functions a solo founder cannot easily replicate: code review, legal document generation, competitive intelligence monitoring, financial modeling, and marketing execution. Individual agent capability matters less than cross-domain coordination — an agent stack where each domain shares context with the others compounds faster than specialized tools that cannot communicate.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How does compound knowledge work in practice?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Compound knowledge means every task generates a learning, and every learning is routed back into the relevant domain&#39;s rules or constraints. If the legal agent learns a specific compliance requirement, it is applied to every future task in that domain automatically. If the engineering agent encounters a fragile integration, every future task touching it starts with that warning already in place. The system improves structurally, not just incrementally.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is Soleur only for technical founders?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;No. Soleur covers all eight departments of a company — engineering, marketing, legal, finance, operations, product, sales, and support. Many founders start with the engineering domain, but legal, marketing, finance, and product agents operate independently and compound knowledge in their own domains.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How do I get started with AI agents as a solo founder?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Start by defining your knowledge base: the decisions you have made, the constraints you operate within, the brand voice you want to maintain. Then deploy agents in the domain where manual work costs you the most. Connect domains as you add them, ensuring agents share context. Build the feedback loop so every task generates a learning that improves the next one.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Soleur vs. Cursor: When an AI Coding Tool Becomes an Agent Platform</title>
    <link href="https://www.soleur.ai/blog/soleur-vs-cursor/" />
    <updated>2026-03-19T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/soleur-vs-cursor/</id>
    <content type="html">&lt;p&gt;On March 5, 2026, Cursor shipped &lt;a href=&quot;https://cursor.com/blog/automations&quot;&gt;Automations&lt;/a&gt; — event-driven agents that run in cloud sandboxes, trigger on GitHub PRs, Slack messages, Linear issues, and cron schedules, and learn from past runs to improve over time. Two weeks earlier, it launched a Marketplace with a curated set of engineering-domain plugins, then &lt;a href=&quot;https://cursor.com/blog/new-plugins&quot;&gt;expanded to 30+ new plugins on March 11, 2026&lt;/a&gt;. Cursor is no longer just an AI code editor. It is an agent platform.&lt;/p&gt;
&lt;p&gt;That changes the comparison. &amp;quot;Cursor is for coding, Soleur runs the whole company&amp;quot; was accurate in 2025. In March 2026, it requires a more precise examination: what Cursor&#39;s agent platform actually covers, where its scope ends, and where Soleur&#39;s Company-as-a-Service architecture begins.&lt;/p&gt;
&lt;h2&gt;What Each Platform Is&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Cursor&lt;/strong&gt; is an AI code editor built by &lt;a href=&quot;https://techcrunch.com/2026/03/05/cursor-is-rolling-out-a-new-system-for-agentic-coding/&quot;&gt;Anysphere&lt;/a&gt; (CEO: Michael Truell). Its agent capabilities now span from Tab (next-token and diff prediction using Cursor&#39;s proprietary model) to Cloud Agents that run in isolated virtual machines with computer use capabilities — navigating browser UIs, running tests, and submitting merge-ready pull requests with video and screenshot artifacts. In &lt;a href=&quot;https://cursor.com/blog/agent-computer-use&quot;&gt;February 2026, Cursor reported that more than 30% of PRs merged at Cursor are now created by agents operating autonomously in cloud sandboxes&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The Automations layer — &lt;a href=&quot;https://techcrunch.com/2026/03/05/cursor-is-rolling-out-a-new-system-for-agentic-coding/&quot;&gt;launched March 5, 2026&lt;/a&gt; — adds event-driven execution. Agents fire on triggers, complete engineering tasks, and loop humans in only for high-risk findings. The Marketplace — &lt;a href=&quot;https://cursor.com/blog/marketplace&quot;&gt;launched February 17, 2026&lt;/a&gt; and &lt;a href=&quot;https://cursor.com/blog/new-plugins&quot;&gt;expanded to 30+ new plugins in March&lt;/a&gt; — packages MCP servers, subagents, hooks, and rules into single-install plugins covering infrastructure (AWS, Cloudflare, Vercel), data (Snowflake, Databricks), project management (Atlassian, Linear), and observability (Datadog).&lt;/p&gt;
&lt;p&gt;Cursor&#39;s annualized revenue &lt;a href=&quot;https://techcrunch.com/2026/03/02/cursor-has-reportedly-surpassed-2b-in-annualized-revenue/&quot;&gt;reportedly exceeded $2 billion in February 2026&lt;/a&gt;, doubling in three months.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Soleur&lt;/strong&gt; is a &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; platform. It deploys 66 agents across 8 business departments — engineering, marketing, legal, finance, operations, product, sales, and support — with a compounding knowledge base that accumulates institutional memory across every session and every domain. It runs inside Claude Code, accessed from the terminal.&lt;/p&gt;
&lt;h2&gt;Where They Differ&lt;/h2&gt;
&lt;h3&gt;Domain Coverage&lt;/h3&gt;
&lt;p&gt;This is where the comparison becomes precise.&lt;/p&gt;
&lt;p&gt;Cursor&#39;s Automations, Marketplace plugins, and Cloud Agents are engineering-domain instruments. The trigger events are GitHub PRs, Linear issues, PagerDuty incidents, and Slack messages about code. The Marketplace plugins cover the engineering toolchain: AWS, Vercel, Stripe, Databricks, Snowflake. A Cursor automation reviews a PR for security vulnerabilities. A cloud agent refactors a module and opens a merge-ready PR. These are high-value engineering workflows.&lt;/p&gt;
&lt;p&gt;The 70% of running a company that is not engineering — marketing campaigns, legal reviews, investor reports, competitive intelligence, sales pipeline analysis, brand voice, financial planning — falls entirely outside Cursor&#39;s scope. The Marketplace has no marketing plugin, no legal plugin, no finance plugin, no sales plugin. Automations have no trigger model for a campaign launch, a contract review request, or a quarterly board report.&lt;/p&gt;
&lt;p&gt;Soleur covers all eight departments with specialist agents at each lifecycle stage. A marketing campaign, a legal review, a competitive intelligence scan, and an engineering feature all run through the same brainstorm-plan-implement-review-compound lifecycle, with domain-specialist agents at every step.&lt;/p&gt;
&lt;p&gt;If you are a solo founder, you are not only a developer. Cursor handles the development work exceptionally well. Soleur handles the company.&lt;/p&gt;
&lt;h3&gt;Knowledge Architecture&lt;/h3&gt;
&lt;p&gt;Cursor&#39;s Automations include a memory tool. Per the &lt;a href=&quot;https://cursor.com/blog/automations&quot;&gt;Cursor Automations documentation&lt;/a&gt;, &amp;quot;Agents also have access to a memory tool that lets them learn from past runs and improve with repetition.&amp;quot; Rules persist instructions to a project, user, or team across sessions. An automation that ran last week carries context into this week&#39;s run.&lt;/p&gt;
&lt;p&gt;But the memory is automation-scoped. The PR review automation&#39;s accumulated knowledge does not inform the deployment automation. The coding agent&#39;s context does not flow into anything outside the engineering domain — because everything outside the engineering domain is outside Cursor&#39;s scope.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s compounding knowledge base is cross-domain by architecture. The brand guide written by the brand-architect agent informs every piece of marketing copy the copywriter agent generates. The competitive intelligence scan updates the sales battlecards. The legal compliance agent references the privacy policy when engineering ships a new data feature. The knowledge base is a git-tracked directory of Markdown files — readable, auditable, and editable by the founder directly — that accumulates across every session in every domain.&lt;/p&gt;
&lt;p&gt;The first time the competitive intelligence agent runs, it builds a baseline. The twentieth time, it compares against nineteen prior scans, highlights new entrants, flags shifted pricing, and updates downstream artifacts. The compounding is not a marketing claim. It is a structural property of how the knowledge base is written and read.&lt;/p&gt;
&lt;p&gt;Automation-scoped memory and a cross-domain compounding knowledge base serve different goals. The first improves repeated engineering tasks. The second builds organizational intelligence.&lt;/p&gt;
&lt;h3&gt;Workflow Orchestration&lt;/h3&gt;
&lt;p&gt;Cursor Automations execute engineering tasks: review this PR, fix this incident, run this linter on schedule. The workflow is task-scoped: one trigger, one output, one notification.&lt;/p&gt;
&lt;p&gt;Soleur runs lifecycle workflows across all eight departments. Every domain follows the same structure: brainstorm &amp;gt; plan &amp;gt; implement &amp;gt; review &amp;gt; compound. An engineering feature moves through specification, architecture review, implementation, security audit, and knowledge capture — in sequence, with the full context of every prior decision available at each stage. A marketing campaign runs through the same lifecycle with marketing-domain agents: growth strategist, copywriter, fact-checker, social distribution.&lt;/p&gt;
&lt;p&gt;The difference between a task runner and an organizational workflow is the context that flows between steps. Cursor&#39;s Automations excel at running well-defined engineering tasks. Soleur&#39;s lifecycle workflows handle ambiguous, judgment-intensive processes across the full organizational scope.&lt;/p&gt;
&lt;h3&gt;Pricing&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://cursor.com/pricing&quot;&gt;Cursor&#39;s pricing&lt;/a&gt; as of March 2026:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Hobby:&lt;/strong&gt; Free (limited agent requests and Tab completions)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Pro:&lt;/strong&gt; $20/month (extended agent limits, cloud agents, frontier model access)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Pro+:&lt;/strong&gt; $60/month (3x usage credits, background agents)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ultra:&lt;/strong&gt; $200/month (20x usage, priority access)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Teams:&lt;/strong&gt; $40/user/month&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Soleur is open-source. The platform is free.&lt;/p&gt;
&lt;p&gt;If you already pay for Cursor Pro at $20/month and add Soleur, you have an AI coding environment and a full eight-department AI organization for $20/month total.&lt;/p&gt;
&lt;h2&gt;When Cursor Is the Right Choice&lt;/h2&gt;
&lt;p&gt;Cursor is the best available AI coding environment. For a developer whose primary constraint is software engineering velocity — writing, reviewing, and shipping code faster — Cursor&#39;s Tab model, Cloud Agents, and Automations represent a meaningfully differentiated platform. If your company&#39;s current bottleneck is the engineering backlog, Cursor directly addresses it.&lt;/p&gt;
&lt;p&gt;Soleur does not replace Cursor. If Cursor is your coding environment of choice, continue using it. Soleur operates at the organizational layer, not the IDE layer.&lt;/p&gt;
&lt;h2&gt;When Soleur Is the Right Choice&lt;/h2&gt;
&lt;p&gt;Soleur is the right choice when the bottleneck is not engineering alone.&lt;/p&gt;
&lt;p&gt;Solo founders do not spend 100% of their time writing code. They spend time on competitive positioning, legal review, financial planning, customer communications, marketing, and sales — domains where no Cursor automation fires and no Marketplace plugin ships. Soleur covers those domains with the same structured lifecycle, the same compounding knowledge base, and the same principle: you make the decisions, agents execute, knowledge compounds.&lt;/p&gt;
&lt;p&gt;The distinction is organizational scope. Cursor builds the product. Soleur runs the company.&lt;/p&gt;
&lt;h2&gt;FAQ&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Q: Does Soleur work with Cursor?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Yes. Soleur runs inside Claude Code; Cursor is an IDE. They operate at different layers of the stack. You can use Cursor for writing and reviewing code while using Soleur for the organizational workflows — marketing, legal, finance, operations, product, sales — that happen outside the IDE. There is no conflict.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Cursor Automations now include memory. Is that equivalent to Soleur&#39;s knowledge base?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;No. Cursor&#39;s automation memory is scoped to individual automations within the engineering domain. An automation that learns from past PR reviews does not share that knowledge with your marketing campaigns or legal reviews. Soleur&#39;s compounding knowledge base is cross-domain: the brand guide informs marketing copy, competitive intelligence updates sales battlecards, and legal decisions flow into engineering constraints automatically.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Is Cursor&#39;s Marketplace a competitor to Soleur&#39;s agent ecosystem?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Cursor&#39;s Marketplace covers the engineering toolchain: infrastructure, data, observability, project management. It has no marketing, legal, finance, or sales plugins. Soleur&#39;s 66 agents cover all eight business departments. They address different scopes, not the same one.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q: Does Cursor&#39;s $2B+ ARR indicate it is better for enterprise use than Soleur?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Revenue scale reflects adoption within a specific domain — engineering teams at large organizations. Soleur is open-source and auditable: every agent prompt, every skill, every knowledge-base schema is readable. Founders who need full transparency into what their AI organization is doing can read the source. The two products serve different organizational scopes and are not direct enterprise-vs-startup substitutes.&lt;/p&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does Soleur work with Cursor?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Yes. Soleur runs inside Claude Code; Cursor is an IDE. They operate at different layers of the stack. You can use Cursor for writing and reviewing code while using Soleur for the organizational workflows — marketing, legal, finance, operations, product, sales — that happen outside the IDE. There is no conflict.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Cursor Automations now include memory. Is that equivalent to Soleur&#39;s knowledge base?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;No. Cursor&#39;s automation memory is scoped to individual automations within the engineering domain. An automation that learns from past PR reviews does not share that knowledge with your marketing campaigns or legal reviews. Soleur&#39;s compounding knowledge base is cross-domain: the brand guide informs marketing copy, competitive intelligence updates sales battlecards, and legal decisions flow into engineering constraints automatically.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is Cursor&#39;s Marketplace a competitor to Soleur&#39;s agent ecosystem?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Cursor&#39;s Marketplace covers the engineering toolchain: infrastructure, data, observability, project management. It has no marketing, legal, finance, or sales plugins. Soleur&#39;s agents cover all eight business departments. They address different scopes, not the same one.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does Cursor&#39;s $2B+ ARR indicate it is better for enterprise use than Soleur?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Revenue scale reflects adoption within a specific domain — engineering teams at large organizations. Soleur is open-source and auditable: every agent prompt, every skill, every knowledge-base schema is readable. Founders who need full transparency into what their AI organization is doing can read the source.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Soleur vs. Notion Custom Agents: Company-as-a-Service vs. Workspace Automation</title>
    <link href="https://www.soleur.ai/blog/soleur-vs-notion-custom-agents/" />
    <updated>2026-03-17T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/soleur-vs-notion-custom-agents/</id>
    <content type="html">&lt;p&gt;Notion passed &lt;a href=&quot;https://www.notion.com/blog/100-million-of-you&quot;&gt;100 million users in August 2024&lt;/a&gt;, and a workspace that stores everything about how a company operates. On February 24, 2026, it shipped Custom Agents — autonomous AI teammates that automate recurring work across Notion, Slack, Mail, Calendar, and integrated tools. For a solo founder already living in Notion, the pitch writes itself.&lt;/p&gt;
&lt;p&gt;The question is what Notion Custom Agents actually automate, and whether that overlaps with what Soleur provides as a Company-as-a-Service platform.&lt;/p&gt;
&lt;h2&gt;What Each Platform Is&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Notion Custom Agents&lt;/strong&gt; are autonomous AI teammates that run inside your Notion workspace, &lt;a href=&quot;https://www.notion.com/releases/2026-02-24&quot;&gt;launched with Notion 3.3 on February 24, 2026&lt;/a&gt;. They operate on triggers — schedules, Slack messages, database changes, email arrivals — and execute tasks without prompting. Notion built three primary workflows: Q&amp;amp;A agents that answer recurring questions from your knowledge base, task routing agents that capture and assign incoming work, and status update agents that compile progress reports. Integrations include Slack, Notion Mail, Calendar, Figma, Linear, HubSpot, and custom MCP servers. Available on &lt;a href=&quot;https://www.notion.com/pricing&quot;&gt;Business ($20/seat/month) and Enterprise plans&lt;/a&gt;, currently in free beta through May 3, 2026, then transitioning to a credit-based model at &lt;a href=&quot;https://matthiasfrank.de/en/notion-custom-agents-full-tutorial-use-cases-pricing-changes/&quot;&gt;$10 per 1,000 Notion credits&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Within the beta, early testers had built over &lt;a href=&quot;https://www.notion.com/releases/2026-02-24&quot;&gt;21,000 agents; Notion itself runs 2,800 agents internally&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Soleur&lt;/strong&gt; is an open-source &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; platform. It deploys 66 agents across 8 business departments — engineering, marketing, legal, finance, operations, product, sales, and support — with a compounding knowledge base that accumulates institutional memory across every session and every domain. Soleur is designed for the terminal, running inside Claude Code, with a workflow lifecycle that runs from brainstorm through planning, implementation, review, and knowledge capture.&lt;/p&gt;
&lt;h2&gt;Where They Differ&lt;/h2&gt;
&lt;p&gt;The surface area overlaps until you look at the architecture.&lt;/p&gt;
&lt;h3&gt;What Gets Automated&lt;/h3&gt;
&lt;p&gt;Notion Custom Agents automate recurring, predictable tasks: triage incoming requests, compile weekly status reports, answer repeated questions from a knowledge base, route tasks to the right team member. The trigger model — schedule, database change, Slack message — is well-suited to repetitive operational work that needs no judgment variation.&lt;/p&gt;
&lt;p&gt;Soleur orchestrates complete business processes that require domain judgment. An engineering feature moves through specification, architecture review, implementation, security audit, and knowledge capture. A marketing campaign runs the same structured lifecycle with marketing-domain agents at every stage. A legal review from the compliance agent references the privacy policy automatically. These are not scheduled tasks — they are judgment-intensive workflows that require cross-domain context at every step.&lt;/p&gt;
&lt;p&gt;Both platforms automate work. The work they automate is categorically different.&lt;/p&gt;
&lt;h3&gt;Knowledge Architecture&lt;/h3&gt;
&lt;p&gt;Notion agents draw context from your Notion workspace: pages, databases, connected apps. That context is rich. If you have built a thorough Notion workspace, the agents have access to your SOPs, project databases, meeting notes, and CRM data. But that context is workspace-scoped: it reflects what you have put into Notion, in the structure Notion uses. The marketing agent and the engineering agent both read from the same workspace, but one domain&#39;s decisions do not automatically inform the other domain&#39;s workflows.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s compounding knowledge base is built from cross-domain learning. The brand guide informs every marketing artifact. The competitive intelligence scan updates the sales battlecards. The legal compliance agent references the privacy policy when engineering ships a new data feature. Every session writes back to the knowledge base — not just logs, but structured institutional memory. The 100th session is not just a day older than the first. It is categorically more capable.&lt;/p&gt;
&lt;p&gt;Workspace context and compounding knowledge are different things. The first reflects what exists. The second reflects what was decided, why, and what it means for everything else.&lt;/p&gt;
&lt;h3&gt;Workflow Depth&lt;/h3&gt;
&lt;p&gt;Notion agents are excellent at running defined tasks on schedule. Write a daily standup summary. Triage Slack messages into a database. Send a weekly report. These are high-value workflows for teams managing operational overhead.&lt;/p&gt;
&lt;p&gt;Soleur runs lifecycle workflows across 8 business domains. The brainstorm-plan-implement-review-compound cycle applies from engineering PRs to marketing campaigns to legal reviews. Each domain has specialist agents that bring deep domain judgment to every step. A security review does not run once per sprint on a schedule — it runs as part of the implementation lifecycle, with access to the full context of what changed and why.&lt;/p&gt;
&lt;p&gt;Notion is a platform for teams managing recurring operations. Soleur is a platform for one founder managing an entire company.&lt;/p&gt;
&lt;h3&gt;Team Architecture vs. Solo Founder Architecture&lt;/h3&gt;
&lt;p&gt;Notion Custom Agents are built for teams. They are created, shared, and managed collaboratively, with enterprise-grade permission controls, usage analytics, and version control. The architecture assumes distributed ownership of workflows.&lt;/p&gt;
&lt;p&gt;Soleur assumes one decision-maker. The solo founder owns every architectural decision, every campaign, every compliance choice. The system executes. Every agent produces output for the founder&#39;s review. The knowledge base compounds the founder&#39;s judgment, not a committee&#39;s. The architecture is not a limitation — it is a design choice. When there is one decision-maker, every agent can be fully aligned with that person&#39;s context.&lt;/p&gt;
&lt;h3&gt;Pricing&lt;/h3&gt;
&lt;p&gt;Notion Custom Agents are currently in free beta through May 3, 2026. From May 4, they run on Notion credits: &lt;a href=&quot;https://matthiasfrank.de/en/notion-custom-agents-full-tutorial-use-cases-pricing-changes/&quot;&gt;$10 per 1,000 credits&lt;/a&gt;, usage-based by task complexity. Custom Agents require a &lt;a href=&quot;https://www.notion.com/pricing&quot;&gt;Business plan at $20 per seat per month&lt;/a&gt; or an Enterprise subscription.&lt;/p&gt;
&lt;p&gt;Soleur is free and open-source under the Apache-2.0 license. A paid tier is planned but not yet released. The full codebase is public and auditable.&lt;/p&gt;
&lt;p&gt;The cost comparison depends on what you are replacing. Notion charges for the seat plus credits at scale. Soleur&#39;s institutional knowledge lives in your repository, under your control, with no per-session cost accumulating against task volume.&lt;/p&gt;
&lt;h3&gt;Terminal vs. Workspace&lt;/h3&gt;
&lt;p&gt;Notion agents run inside Notion. Their value compounds inside the Notion workspace and the tools it connects to. If your workflow centers on Notion — your projects live there, your team communicates there, your data is organized there — Custom Agents operate on familiar ground.&lt;/p&gt;
&lt;p&gt;Soleur is terminal-first. It runs inside Claude Code, in the same environment where engineering decisions get made, where code gets shipped, where technical context lives natively. The marketing copywriter reads the brand guide from the repository. The architecture review happens in the same session as the implementation. The knowledge base is a git-tracked directory — version-controlled, diffable, transferable.&lt;/p&gt;
&lt;p&gt;For a solo founder who ships code and runs a company from the terminal, Soleur&#39;s surface is the surface where work already happens.&lt;/p&gt;
&lt;hr&gt;
&lt;h2&gt;Side-by-Side Comparison&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Dimension&lt;/th&gt;
&lt;th&gt;Notion Custom Agents&lt;/th&gt;
&lt;th&gt;Soleur&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Primary use case&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Automate recurring workspace tasks: triage, standups, status reports&lt;/td&gt;
&lt;td&gt;Orchestrate full business lifecycle: engineering, marketing, legal, finance, ops, product, sales, support&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Knowledge architecture&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Workspace-scoped: Notion pages, databases, connected apps&lt;/td&gt;
&lt;td&gt;Cross-domain compounding: grows across every session and every domain&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Workflow model&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Trigger-based (schedule, Slack, database change)&lt;/td&gt;
&lt;td&gt;Lifecycle-based (brainstorm → plan → implement → review → compound)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Integrations&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Slack, Mail, Calendar, Figma, Linear, HubSpot, MCP servers&lt;/td&gt;
&lt;td&gt;MCP ecosystem via Claude Code; compounding knowledge base replaces integration-driven context&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Target user&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Teams managing shared recurring operations&lt;/td&gt;
&lt;td&gt;Solo founders running a full company&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Pricing&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Free beta until May 3, 2026; $10/1,000 Notion credits + Business plan ($20/seat/month)&lt;/td&gt;
&lt;td&gt;Free (open-source, Apache-2.0). Paid tier planned.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Open source&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Proprietary&lt;/td&gt;
&lt;td&gt;Apache-2.0. Full source code public.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Interface&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Web and desktop (Notion workspace)&lt;/td&gt;
&lt;td&gt;Terminal (Claude Code)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Cross-domain coherence&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Workspace context shared; domain decisions not cross-referenced automatically&lt;/td&gt;
&lt;td&gt;Every domain reads from and writes to the same compounding knowledge base&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Current availability&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Free beta (Business and Enterprise plans)&lt;/td&gt;
&lt;td&gt;Live (open source)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;hr&gt;
&lt;h2&gt;Who Each Platform Is For&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Notion Custom Agents are the right choice if:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Your workflow is centered in Notion — projects, data, and team communication all live there&lt;/li&gt;
&lt;li&gt;You need to automate recurring operational tasks: triage, standups, status reports, task routing&lt;/li&gt;
&lt;li&gt;You manage a team and need shared agents with collaborative ownership&lt;/li&gt;
&lt;li&gt;Your integrations are Slack, Figma, Linear, or HubSpot and you want AI running on top of them&lt;/li&gt;
&lt;li&gt;You want zero installation overhead on top of your existing Notion subscription&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Soleur is the right choice if:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You work in the terminal via Claude Code&lt;/li&gt;
&lt;li&gt;You need cross-domain coherence — marketing that references legal decisions, engineering that reflects competitive intelligence, finance that tracks what product decided&lt;/li&gt;
&lt;li&gt;You need institutional memory that compounds across sessions, not workspace context that refreshes&lt;/li&gt;
&lt;li&gt;You are building a company, not managing a team&#39;s recurring operations&lt;/li&gt;
&lt;li&gt;You care about open-source transparency: auditable agents, modifiable workflows, your knowledge on your machine&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h2&gt;The Compounding Difference&lt;/h2&gt;
&lt;p&gt;Notion Custom Agents are effective at what they were designed for. A founder using Notion to automate standups and task triage saves real hours every week. Those hours are valuable. They are not compounding.&lt;/p&gt;
&lt;p&gt;A founder using Soleur for six months has built an AI organization that knows how the company thinks. The brand positioning from the marketing agent informed the investor memo. The architecture decision from last sprint is referenced in the compliance review. The competitive intelligence from three weeks ago shaped the pricing strategy. None of this required the founder to copy information between sessions. The knowledge accumulated.&lt;/p&gt;
&lt;p&gt;Workflow automation removes repetitive work. Compound knowledge removes repetitive thinking. Both matter. One scales linearly with the tasks automated. The other scales exponentially with the decisions accumulated.&lt;/p&gt;
&lt;p&gt;That is the difference between a workspace with smart automation and a company-as-a-service platform.&lt;/p&gt;
&lt;hr&gt;
&lt;h2&gt;Start Building&lt;/h2&gt;
&lt;p&gt;Soleur runs 66 agents across 8 departments with a compounding knowledge base that gets more powerful every day you use it. Open source, terminal-first, built by a solo founder using the platform itself.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;claude plugin install soleur
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Explore the &lt;a href=&quot;https://www.soleur.ai/agents/&quot;&gt;66 agents&lt;/a&gt;, read &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;what company-as-a-service means&lt;/a&gt; for solo founders, or &lt;a href=&quot;https://www.soleur.ai/getting-started/&quot;&gt;get started in five minutes&lt;/a&gt;.&lt;/p&gt;
&lt;hr&gt;
&lt;h2&gt;Frequently Asked Questions&lt;/h2&gt;
&lt;details&gt;
&lt;summary&gt;Can Notion Custom Agents replace Soleur for a solo founder?&lt;/summary&gt;
&lt;p&gt;Notion Custom Agents automate recurring operational tasks within the Notion workspace — standups, triage, status reports. Soleur orchestrates complete business lifecycle workflows across 8 domains with a compounding knowledge base. They automate different categories of work. A solo founder building a company will find Soleur covers territory Notion Custom Agents are not designed for: cross-domain knowledge compounding, engineering lifecycle management, security reviews, and competitive intelligence workflows.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;What is the pricing difference between Notion Custom Agents and Soleur?&lt;/summary&gt;
&lt;p&gt;Notion Custom Agents are free through May 3, 2026. From May 4, they require a Business plan ($20/seat/month) plus Notion credits ($10 per 1,000 credits). Soleur is free and open-source under the Apache-2.0 license — no per-seat cost, no credit system. A paid hosted tier is planned but has not launched.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;Does Notion have a compounding knowledge base like Soleur?&lt;/summary&gt;
&lt;p&gt;Notion agents draw context from your Notion workspace — pages, databases, and connected applications. That context is workspace-scoped: rich within Notion, but decisions made in one domain do not automatically inform workflows in another domain. Soleur&#39;s compounding knowledge base grows across every session and every domain: the brand guide informs marketing copy, competitive intelligence informs pricing strategy, legal decisions inform engineering constraints. The architecture is different in kind, not just in degree.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;How does Notion Custom Agents pricing work after the free beta ends?&lt;/summary&gt;
&lt;p&gt;Starting May 4, 2026, Notion Custom Agents move from free beta to a credit-based model. Each agent run uses Notion credits based on task complexity. Credits are priced at $10 per 1,000 Notion credits and are shared across the workspace, resetting monthly. Unused credits do not roll over. Custom Agents require a Business plan ($20/seat/month) or an Enterprise plan.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;Is Soleur available inside Notion?&lt;/summary&gt;
&lt;p&gt;No. Soleur is a terminal-first platform that runs inside Claude Code. It does not operate within the Notion workspace. If your workflow centers on Notion for team collaboration and recurring task automation, Notion Custom Agents are built for that surface. If your workflow centers on the terminal and requires cross-domain AI organization with compounding knowledge, Soleur provides what Notion Custom Agents are not designed to offer.&lt;/p&gt;
&lt;/details&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Can Notion Custom Agents replace Soleur for a solo founder?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Notion Custom Agents automate recurring operational tasks within the Notion workspace — standups, triage, status reports. Soleur orchestrates complete business lifecycle workflows across 8 domains with a compounding knowledge base. They automate different categories of work.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is the pricing difference between Notion Custom Agents and Soleur?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Notion Custom Agents are free through May 3, 2026. From May 4, they require a Business plan ($20/seat/month) plus Notion credits ($10 per 1,000 credits). Soleur is free and open-source under the Apache-2.0 license.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does Notion have a compounding knowledge base like Soleur?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Notion agents draw context from your Notion workspace — pages, databases, and connected applications. That context is workspace-scoped. Soleur&#39;s compounding knowledge base grows across every session and every domain: brand guide informs marketing copy, competitive intelligence informs pricing, legal decisions inform engineering constraints.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;How does Notion Custom Agents pricing work after the free beta ends?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Starting May 4, 2026, Notion Custom Agents move from free beta to a credit-based model at $10 per 1,000 Notion credits, shared across the workspace and resetting monthly. Custom Agents require a Business plan ($20/seat/month) or Enterprise plan.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is Soleur available inside Notion?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;No. Soleur is a terminal-first platform that runs inside Claude Code. It does not operate within the Notion workspace. If you need cross-domain AI organization with compounding knowledge in the terminal, Soleur provides what Notion Custom Agents are not designed to offer.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
  <entry>
    <title>Soleur vs. Anthropic Cowork: Which AI Agent Platform Is Right for Solo Founders?</title>
    <link href="https://www.soleur.ai/blog/soleur-vs-anthropic-cowork/" />
    <updated>2026-03-16T00:00:00Z</updated>
    <id>https://www.soleur.ai/blog/soleur-vs-anthropic-cowork/</id>
    <content type="html">&lt;p&gt;Anthropic Cowork offers a plugin for HR, one for engineering, one for financial analysis, and seven more besides. On paper, it covers the same organizational territory as Soleur. On examination, the architectures are different enough that the comparison determines which platform belongs in a serious founder&#39;s stack.&lt;/p&gt;
&lt;p&gt;This article examines both platforms on the dimensions that matter: knowledge architecture, cross-domain coherence, workflow depth, pricing, and openness. The goal is an honest comparison.&lt;/p&gt;
&lt;h2&gt;What Each Platform Is&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Anthropic Cowork&lt;/strong&gt; is &lt;a href=&quot;https://techcrunch.com/2026/02/24/anthropic-launches-new-push-for-enterprise-agents-with-plugins-for-finance-engineering-and-design/&quot;&gt;Anthropic&#39;s AI work product&lt;/a&gt;, offering 10 department-specific plugin categories built into the Claude interface: HR, Design, Engineering, Operations, Financial Analysis, Investment Banking, Equity Research, Private Equity, Wealth Management, and Brand Voice. Enterprise connectors include Google Workspace, DocuSign, Apollo, FactSet, LegalZoom, Harvey, Slack, and others. Cowork is included with every Claude subscription — Pro, Team, and Enterprise.&lt;/p&gt;
&lt;p&gt;In March 2026, Anthropic&#39;s Cowork technology expanded into Microsoft 365. &lt;a href=&quot;https://the-decoder.com/microsoft-brings-anthropics-claude-cowork-into-copilot-to-run-tasks-across-outlook-teams-and-excel/&quot;&gt;Microsoft launched Copilot Cowork on March 9, 2026&lt;/a&gt;, in close collaboration with Anthropic, bringing Claude&#39;s Cowork capabilities into Outlook, Teams, and Excel. It is currently in Research Preview, with broader availability planned for late March through the Microsoft Frontier program.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Soleur&lt;/strong&gt; is an open-source &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;Company-as-a-Service&lt;/a&gt; platform. It deploys 66 agents across 8 business departments — engineering, marketing, legal, finance, operations, product, sales, and support — with a compounding knowledge base that accumulates institutional memory across every session and every domain.&lt;/p&gt;
&lt;h2&gt;Where They Differ&lt;/h2&gt;
&lt;p&gt;The capability list overlaps until you examine the architecture.&lt;/p&gt;
&lt;h3&gt;Knowledge Architecture&lt;/h3&gt;
&lt;p&gt;Cowork plugins do not share a cross-domain knowledge base. The marketing plugin that wrote your brand positioning last week starts fresh today — it does not remember what was decided. Each plugin operates independently with no persistent memory that compounds across sessions or domains. You carry the context manually.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s compounding knowledge base persists and accumulates across every session. The brand guide informs every piece of marketing copy. Competitive analysis updates pricing strategy. Legal decisions flow into engineering constraints. The 100th session is dramatically more productive than the first — not because the models improve, but because the institutional knowledge compounds.&lt;/p&gt;
&lt;p&gt;Microsoft Copilot Cowork moves the bar by adding Work IQ — intelligence drawn from a user&#39;s emails, files, meetings, and chats across Microsoft 365. It is a meaningful improvement over isolated task invocation. But it is workspace context, not a compounding cross-domain knowledge base. The next campaign does not know what was decided in the last architecture review. The legal audit does not automatically reference the product roadmap.&lt;/p&gt;
&lt;p&gt;This is the structural distinction. It is not a feature gap. It is an architectural difference in what knowledge means.&lt;/p&gt;
&lt;h3&gt;Cross-Domain Coherence&lt;/h3&gt;
&lt;p&gt;Cowork&#39;s 10 plugin categories operate in silos. The engineering plugin does not read what the legal plugin produced. The Brand Voice plugin&#39;s output does not automatically feed the Financial Analysis plugin&#39;s reports. Connecting output from one domain to another requires the founder to carry the context manually between plugins.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s 66 agents share a unified knowledge base. The marketing copywriter agent reads the brand guide before generating content. The competitive intelligence agent&#39;s findings shape the sales battlecards. The legal compliance agent references the privacy policy when engineering ships a new data feature. Context flows across domains automatically because every agent reads from and writes to the same compounding knowledge base.&lt;/p&gt;
&lt;p&gt;The difference between a collection of specialists and an organization is coordination. Soleur provides the coordination layer. Cowork does not.&lt;/p&gt;
&lt;h3&gt;Workflow Orchestration&lt;/h3&gt;
&lt;p&gt;Cowork executes individual tasks. Invoke a plugin, provide context, receive output. Multi-step workflows require manual chaining — copy findings from one plugin, provide them as context to the next, maintain consistency yourself across the chain.&lt;/p&gt;
&lt;p&gt;Soleur orchestrates complete business processes through structured lifecycle workflows. The brainstorm-plan-implement-review-compound lifecycle runs across every domain. An engineering feature moves through specification, architecture review, implementation, security review, and knowledge capture — in sequence, with full domain context at each stage. A marketing campaign runs through the same structured lifecycle with marketing-domain agents at each step.&lt;/p&gt;
&lt;p&gt;Microsoft Copilot Cowork adds multi-step plan execution within M365 — users describe intent, Cowork builds a plan and executes it across Outlook, Teams, and Excel. That is a genuine capability advance. The scope remains M365 workflows. The lifecycle management, cross-domain orchestration, and compounding memory that define Soleur&#39;s approach do not have an analog in Cowork&#39;s current architecture.&lt;/p&gt;
&lt;h3&gt;Pricing&lt;/h3&gt;
&lt;p&gt;Cowork is bundled with every Claude subscription. &lt;a href=&quot;https://claude.com/pricing&quot;&gt;Claude Pro runs $20/month&lt;/a&gt;, Team at $25/seat/month with an annual commitment. If you already pay for Claude Pro, you already have Cowork. That value proposition is real.&lt;/p&gt;
&lt;p&gt;Soleur&#39;s open-source core is free — Apache-2.0 licensed. Every agent, every skill, every line of code is public and inspectable. A paid tier for hosted features is planned but not yet released.&lt;/p&gt;
&lt;p&gt;The cost comparison is not only monetary. If your operational context lives in Cowork&#39;s session-scoped memory, it exists only while that session is open. Soleur&#39;s institutional knowledge compounds in your repository, under your control, indefinitely. The knowledge you build using Soleur is yours — version-controlled, transferable, auditable.&lt;/p&gt;
&lt;p&gt;Microsoft Copilot Cowork carries an additional license at $30/user/month on top of Microsoft 365. The M365 E7 bundle, which packages Copilot, Entra Suite, and Agent 365, is priced at $99/user/month and available from May 2026.&lt;/p&gt;
&lt;h3&gt;Openness&lt;/h3&gt;
&lt;p&gt;Cowork is proprietary. Anthropic offers plugin templates on GitHub, but the core platform is closed. You cannot inspect how agents make decisions, audit what data is retained, or modify the platform&#39;s behaviors.&lt;/p&gt;
&lt;p&gt;Soleur is Apache-2.0 open source. The full codebase is public. Every agent&#39;s instructions, every skill&#39;s workflow, every guardrail&#39;s logic is readable and modifiable. The platform was designed, built, and shipped using itself — every PR reviewed, every feature compounded back into the system that built it.&lt;/p&gt;
&lt;hr&gt;
&lt;h2&gt;Side-by-Side Comparison&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Dimension&lt;/th&gt;
&lt;th&gt;Anthropic Cowork&lt;/th&gt;
&lt;th&gt;Microsoft Copilot Cowork&lt;/th&gt;
&lt;th&gt;Soleur&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Cross-domain knowledge base&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;None. Plugins are siloed.&lt;/td&gt;
&lt;td&gt;Work IQ: workspace context from emails, files, chats.&lt;/td&gt;
&lt;td&gt;Compounding. Grows across every session and every domain.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Domains covered&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;10 categories: HR, Design, Engineering, Ops, Finance (IB, ER, PE, WM), Brand Voice&lt;/td&gt;
&lt;td&gt;Microsoft 365 applications: Outlook, Teams, Excel&lt;/td&gt;
&lt;td&gt;8 departments: Engineering, Marketing, Legal, Finance, Operations, Product, Sales, Support&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Workflow orchestration&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Individual task invocation&lt;/td&gt;
&lt;td&gt;Multi-step M365 task execution&lt;/td&gt;
&lt;td&gt;Lifecycle workflows (brainstorm → plan → implement → review → compound)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Pricing&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Included with Claude Pro ($20/mo), Team ($25/seat/mo annual)&lt;/td&gt;
&lt;td&gt;$30/user/month add-on; M365 E7 bundle $99/user/month&lt;/td&gt;
&lt;td&gt;Free (open source). Paid tier planned.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Open source&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Proprietary&lt;/td&gt;
&lt;td&gt;Proprietary&lt;/td&gt;
&lt;td&gt;Apache-2.0. Full source code.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Terminal / Claude Code integration&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Not applicable — web/desktop interface&lt;/td&gt;
&lt;td&gt;Not applicable — Microsoft 365 surface&lt;/td&gt;
&lt;td&gt;Native — runs inside Claude Code terminal workflow&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Enterprise connectors&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Google Workspace, DocuSign, Apollo, FactSet, LegalZoom, Harvey, Slack&lt;/td&gt;
&lt;td&gt;Microsoft 365 native (Outlook, Teams, Excel, SharePoint)&lt;/td&gt;
&lt;td&gt;MCP ecosystem via Claude Code&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Current availability&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Live (Pro, Team, Enterprise plans)&lt;/td&gt;
&lt;td&gt;Research Preview (late March 2026 Frontier program)&lt;/td&gt;
&lt;td&gt;Live (open source)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;hr&gt;
&lt;h2&gt;Who Each Platform Is For&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Anthropic Cowork is the right choice if:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You use Claude primarily through the web or desktop interface&lt;/li&gt;
&lt;li&gt;You need enterprise connectors built in — Google Workspace, DocuSign, FactSet, LegalZoom&lt;/li&gt;
&lt;li&gt;You want investment banking, equity research, or private equity domain coverage&lt;/li&gt;
&lt;li&gt;You want zero installation overhead — it is already in your Claude subscription&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Microsoft Copilot Cowork is the right choice if:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Your workflow centers on Microsoft 365 — Outlook, Teams, Excel, SharePoint&lt;/li&gt;
&lt;li&gt;You need enterprise data protection within your M365 tenant&lt;/li&gt;
&lt;li&gt;Your organization is already on Microsoft 365 Business or Enterprise plans&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Soleur is the right choice if:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You work in the terminal via Claude Code&lt;/li&gt;
&lt;li&gt;You need institutional memory that compounds across sessions, not resets&lt;/li&gt;
&lt;li&gt;You need cross-domain coherence — marketing that references legal, engineering that references compliance, finance that reflects competitive intelligence&lt;/li&gt;
&lt;li&gt;You care about open-source transparency: auditable agents, modifiable workflows, your knowledge on your machine&lt;/li&gt;
&lt;li&gt;You are building a company, not executing isolated tasks&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The choice is not which platform lists more features. It is which architecture fits how you build.&lt;/p&gt;
&lt;hr&gt;
&lt;h2&gt;The Compounding Advantage Over Time&lt;/h2&gt;
&lt;p&gt;The architectural difference does not show up in the first week. It dominates by month six.&lt;/p&gt;
&lt;p&gt;A founder using Cowork for six months has executed hundreds of expert tasks. Each one was good. None of them informed the next. The brand positioning decided in the marketing plugin in January did not shape the investor memo written in the financial analysis plugin in March.&lt;/p&gt;
&lt;p&gt;A founder using Soleur for six months has built something different: a knowledge base that encodes every architectural decision, every brand positioning choice, every competitive move, every legal precedent established across every project. That knowledge feeds every future session. The system does not just remember — it applies.&lt;/p&gt;
&lt;p&gt;This is what &lt;a href=&quot;https://www.soleur.aiblog/why-most-agentic-tools-plateau/&quot;&gt;compound engineering&lt;/a&gt; looks like at the company level. The knowledge base compounds. The agents get smarter. The system validates its own workflow. The 100th session is categorically more productive than the first.&lt;/p&gt;
&lt;p&gt;Cowork&#39;s session-scoped model is a valid design choice for executing expert tasks. It is not a design choice for running a company.&lt;/p&gt;
&lt;hr&gt;
&lt;h2&gt;Start Building&lt;/h2&gt;
&lt;p&gt;Soleur runs 66 agents across 8 departments with a compounding knowledge base that gets more powerful every day you use it. Open source, terminal-first, built by a solo founder using the platform itself.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;claude plugin install soleur
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Explore the &lt;a href=&quot;https://www.soleur.ai/agents/&quot;&gt;66 agents&lt;/a&gt;, read &lt;a href=&quot;https://www.soleur.ai/company-as-a-service/&quot;&gt;what company-as-a-service means&lt;/a&gt; for solo founders, or &lt;a href=&quot;https://www.soleur.ai/getting-started/&quot;&gt;get started in five minutes&lt;/a&gt;.&lt;/p&gt;
&lt;hr&gt;
&lt;h2&gt;Frequently Asked Questions&lt;/h2&gt;
&lt;details&gt;
&lt;summary&gt;Does Anthropic Cowork have a compounding knowledge base?&lt;/summary&gt;
&lt;p&gt;No. Cowork plugins operate independently without a shared cross-domain knowledge base. Each plugin executes tasks based on the context you provide in that session. Soleur&#39;s compounding knowledge base persists and grows across every session, making every future session more productive.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;Is Soleur free compared to Cowork?&lt;/summary&gt;
&lt;p&gt;Cowork is bundled with Claude subscriptions — Claude Pro is $20/month. Soleur&#39;s core is free and open-source under the Apache-2.0 license. Both have free access. The difference is architecture: Cowork&#39;s knowledge is session-scoped; Soleur&#39;s compounds indefinitely in your own repository.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;Can Cowork plugins share context with each other?&lt;/summary&gt;
&lt;p&gt;No. Cowork&#39;s 10 plugin categories are siloed — the engineering plugin does not read what the legal plugin produced, and the Brand Voice plugin&#39;s output does not automatically inform other plugins. Soleur&#39;s agents share a unified knowledge base so decisions in one domain inform every other domain.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;What is Microsoft Copilot Cowork?&lt;/summary&gt;
&lt;p&gt;&lt;a href=&quot;https://the-decoder.com/microsoft-brings-anthropics-claude-cowork-into-copilot-to-run-tasks-across-outlook-teams-and-excel/&quot;&gt;Microsoft Copilot Cowork&lt;/a&gt; is a collaboration between Microsoft and Anthropic that brings Claude&#39;s Cowork capabilities into Microsoft 365 — Outlook, Teams, and Excel. Launched in Research Preview on March 9, 2026, it enables multi-step background task execution within M365 applications. Broader availability is planned for late March 2026 through the Microsoft Frontier program.&lt;/p&gt;
&lt;/details&gt;
&lt;details&gt;
&lt;summary&gt;Does Soleur integrate with Microsoft 365?&lt;/summary&gt;
&lt;p&gt;Soleur is a terminal-first platform running inside Claude Code. It does not integrate directly with Microsoft 365 applications. If your workflow centers on M365, Microsoft Copilot Cowork is the right choice for that surface. If your workflow centers on the terminal and Claude Code, Soleur provides the cross-domain depth and compounding knowledge that M365 integration does not offer.&lt;/p&gt;
&lt;/details&gt;
&lt;script type=&quot;application/ld+json&quot;&gt;
{
  &quot;@context&quot;: &quot;https://schema.org&quot;,
  &quot;@type&quot;: &quot;FAQPage&quot;,
  &quot;mainEntity&quot;: [
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does Anthropic Cowork have a compounding knowledge base?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;No. Cowork plugins operate independently without a shared cross-domain knowledge base. Each plugin executes tasks based on the context you provide in that session. Soleur&#39;s compounding knowledge base persists and grows across every session.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Is Soleur free compared to Cowork?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Cowork is bundled with Claude subscriptions — Claude Pro is $20/month. Soleur&#39;s core is free and open-source under the Apache-2.0 license. Both have free access. The difference is architecture: Cowork&#39;s knowledge is session-scoped; Soleur&#39;s compounds indefinitely in your own repository.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Can Cowork plugins share context with each other?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;No. Cowork&#39;s plugin categories are siloed — the engineering plugin does not read what the legal plugin produced, and the Brand Voice plugin&#39;s output does not automatically inform other plugins. Soleur&#39;s agents share a unified knowledge base so decisions in one domain inform every other domain.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;What is Microsoft Copilot Cowork?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Microsoft Copilot Cowork is a collaboration between Microsoft and Anthropic that brings Claude&#39;s Cowork capabilities into Microsoft 365 — Outlook, Teams, and Excel. Launched in Research Preview on March 9, 2026, it enables multi-step background task execution within M365 applications.&quot;
      }
    },
    {
      &quot;@type&quot;: &quot;Question&quot;,
      &quot;name&quot;: &quot;Does Soleur integrate with Microsoft 365?&quot;,
      &quot;acceptedAnswer&quot;: {
        &quot;@type&quot;: &quot;Answer&quot;,
        &quot;text&quot;: &quot;Soleur is a terminal-first platform running inside Claude Code. It does not integrate directly with Microsoft 365 applications. If your workflow centers on M365, Microsoft Copilot Cowork is the better choice for that surface.&quot;
      }
    }
  ]
}
&lt;/script&gt;
</content>
  </entry>
</feed>