Skip to main content

Loading…

Skip to main content
HomeProjectsPostsContact
Justin Tsugranes LogoJustin Tsugranes Logo

Justin Tsugranes

HomeProjectsPostsContact

Stay in the loop

Occasional notes on what I'm building, lessons earned, and the studio behind it.

By subscribing, you agree to receive No spam. Unsubscribe in one click anytime. from Justin Tsugranes. No spam. Unsubscribe anytime. Privacy Policy

© 2026 Total Ventures LLC. All rights reserved.

Privacy PolicyTerms of ServiceCookie Policy
Building an AI Story App: Lessons from Agentic Engineering | Justin Tsugranes | Justin Tsugranes
Xinf

Building an AI Story App: Lessons from Agentic Engineering

Shipping an AI story app requires moving past simple prompts to agentic engineering. Here is how I built Inky as a permanent equity asset.

Justin Tsugranes·June 10, 2026·4 min read
On this page
  1. The Shift to Agentic Engineering
  2. Designing the Narrative Engine
  3. Architecture for Permanent Equity
  4. The Machine as the Moat
  5. Lessons Learned the Hard Way
  6. Operating the Machine
  7. Next Step

The cost of building software has collapsed. What used to require a venture-backed team and a six-month roadmap now requires one operator with a clear thesis and a well-designed system. I am currently building Inky—an AI storytelling application—not as a side project, but as a core asset in the Total Ventures portfolio.

When building an ai story app today, the challenge isn't the model. The model is a commodity. The challenge is the architecture, the judgment, and the discipline to build something meant to be kept forever. This is an account of the decisions made, the systems built, and the lessons learned the hard way while shipping Inky.

The Shift to Agentic Engineering

Most people approaching AI software start with a prompt. They build a thin wrapper around a large language model and call it a product. This is a mistake. A prompt is a fragile dependency.

In building Inky, I moved away from simple request-response cycles toward agentic engineering. This means the application doesn't just ask an AI to "write a story." Instead, it employs a series of specialized agents that handle discrete parts of the narrative arc: character consistency, world-building, plot progression, and prose refinement.

This orchestration layer is the actual moat. By breaking the storytelling process into a multi-stage pipeline, the system can maintain state and logic that a single prompt would lose. When you are building an ai story app, you are not just building an interface; you are building a machine that manages context.

Designing the Narrative Engine

The narrative engine in Inky operates on a feedback loop. One agent generates a story beat, another checks it against the established character lore, and a third evaluates the pacing. If the pacing is off, the system iterates before the user ever sees a word.

This is the difference between a toy and a tool. A toy gives you whatever the model spits out first. A tool, built with agentic engineering, applies judgment to the output. I architected this system to run within a monorepo that shares logic across all Total Ventures products. This allows the narrative engine to benefit from the same orchestration patterns I use for financial reconciliation or content operations in other parts of the company.

Architecture for Permanent Equity

Total Ventures is a permanent-equity company. We build to keep. This philosophy dictates every technical decision I make. When building an ai story app, it is tempting to reach for the newest, most experimental tools. I avoid that.

I choose technologies based on their ability to compound over decades, not months. The stack for Inky is boring by design. It uses a stable relational database for state, a type-safe language for the backend logic, and a component-based library for the frontend. The complexity is reserved for the agent orchestration, not the infrastructure.

The Machine as the Moat

In the old model, the moat was the code. In the AI-native model, the moat is the system that generates and operates the code. Inky is powered by an internal operating system—a set of agents and MCP servers that handle deployment, monitoring, and user feedback loops.

By working in public and documenting these builds, I am not just showing a product; I am demonstrating a new way of operating. One human face, one machine workforce. This leverage allows me to manage a portfolio of products without a growing headcount. The goal is durable free cash flow, and that requires a system that doesn't break when I stop looking at it.

RecommendedFree

Free download

Get the Launch Checklist →
If this resonated

The studio is where the rest of it lives.

Total Ventures is the umbrella — the products, the resources, the strategy session.

totalventures.io

Studio Notes

How I’m building the studio.

The operator’s log — systems, decisions, and what’s working.

JT

Written by

Justin Tsugranes

Founder, Total Ventures

Solo-founder building a multi-brand product studio with AI agents. Writing about building, operating, and shipping.

ShareXLinkedInFacebook
#inky#agentic-engineering#product-strategy#shipping

On this page

  1. The Shift to Agentic Engineering
  2. Designing the Narrative Engine
  3. Architecture for Permanent Equity
  4. The Machine as the Moat
  5. Lessons Learned the Hard Way
  6. Operating the Machine
  7. Next Step

Keep reading

Related posts

All posts→
Building an AI Story App: Lessons from the Studio Floor
Jun 6, 2026

Building an AI Story App: Lessons from the Studio Floor

Inside the architecture of Inky. A look at agentic engineering, narrative coherence, and the lessons learned the hard way while building an ai story app.

aiarchitectureagentic-engineeringinky

Lessons Learned the Hard Way

Shipping today is different than it was two years ago. I have learned several lessons the hard way while refining the Inky engine.

  1. Context is a Liability: If you feed too much information into an agent, the signal-to-noise ratio drops. I had to build a custom retrieval layer that only surfaces the specific character traits or plot points relevant to the current scene.
  2. Latency Matters More Than Logic: Users will forgive a slightly less poetic sentence, but they won't wait thirty seconds for a response. I had to redesign the narrative pipeline to stream outputs incrementally, allowing the user to engage with the story while the agents work in the background.
  3. The Human is the Escalation Path: AI is the workforce, but I am the owner. The system is designed to escalate high-consequence decisions to me. If the narrative engine hits a logical dead end, it flags the session for review. This ensures the quality remains high without me needing to write every line of prose.

When building an ai story app, you quickly realize that the AI's tendency toward "average" is your biggest enemy. Overcoming that requires a rigorous set of constraints and a system that knows when to stop and ask for human judgment.

Operating the Machine

Inky is now part of the Total Ventures ecosystem. It shares the same financial rails and monitoring systems as my other brands. This is the power of the holdco model applied to AI-native products.

I am not looking for an exit. I am not looking for a valuation. I am looking for a product that serves its users, generates profit, and fits into the larger machine I am building. The work I do on Inky today will inform the next product I ship next month. The patterns repeat. The syntax changes, but the grammar of ownership remains the same.

If you are an operator looking to move from building projects to building assets, the path is clear: stop focusing on the prompts and start focusing on the systems. Agentic engineering is the bridge between a script and a company.

I am happy to talk about the specifics of this architecture or how I manage the Total Ventures portfolio.

Always forge ahead.

Justin Tsugranes

Next Step

If you are ready to move from shipping features to building a company, work through the implementation of these systems in a 1:1 strategy session through Total Ventures — totalventures.io/booking

Resources

Launch Checklist + the Builder’s Playbook bundle.

  • Strategy session

    A focused hour on your repo, stack, and monetization.

  • The brands

    The portfolio of products I’m building, end to end.

  • Building an AI Story App: Systems Over Prompts
    Jun 2, 2026

    Building an AI Story App: Systems Over Prompts

    Stop building wrappers. Here is how I architected Inky, a multi-agent storytelling engine, using agentic engineering and a profit-first mindset.

    aiarchitectureagentic-engineeringinky
    Building an AI Story App: Lessons from the Inky Architecture
    May 31, 2026

    Building an AI Story App: Lessons from the Inky Architecture

    A look inside the architecture of Inky. I’m sharing what I learned the hard way about agentic engineering and building an AI story app that actually ships.

    aiarchitectureshippinginky