Skip to content

How It Works

You talk. The AI works. Lytos keeps track.

Section titled “You talk. The AI works. Lytos keeps track.”

“Delegating to AI without structure is outsourcing without a brief.”

That’s the whole idea. You describe what you want to build. The AI creates tasks, codes, tests, and documents. Lytos makes sure nothing is lost between sessions.


An issue is a task written down clearly enough that your AI can execute it.

Think of it like a sticky note — but one that says exactly what to do, why, and how to know when it’s done.

One issue = one thing. Like building a house: you don’t put “pour the foundation” and “install the roof” on the same sticky note. Each issue has a single responsibility. If you say “add login and also redesign the homepage”, your AI will ask you to split it into two issues — and it’s right.

You don’t write issues. You describe what you want, and your AI creates them for you.


You: "I want a landing page with an email signup form for a waitlist."

Step 2 — The AI asks the right questions

Section titled “Step 2 — The AI asks the right questions”
AI: "What happens when someone signs up? Just save the email?
Do you need duplicate checking?"
You: "Yes, save in database, check for duplicates, show a success message."

The AI turns your conversation into a structured task:

ISS-0001 — Landing page with waitlist signup

  • Create HTML page with signup form
  • Create API endpoint to save emails
  • Add duplicate email check
  • Show success message after signup
  • Write tests

This step matters. Take 30 seconds to read the issue. Is something missing? An edge case? A constraint? Add it now — it saves hours later.

You: "Add a check that the email format is valid before saving."
AI: → Updates the checklist
You: "Let's start."

The AI follows the checklist step by step. It codes, tests, and tells you when it’s done.

You: "Close this issue. What's next?"

The AI marks it as done, updates the board, and suggests the next task.


At any point, run:

Terminal window
lyt board

You’ll see all your tasks organized by status — what’s planned, what’s in progress, what’s done. It’s your project dashboard.


Each session, the AI reads your project context:

  • What you’re building (the manifest)
  • How you work (the skills and rules)
  • What happened before (the memory)

You never re-explain your project. The AI picks up where it left off.


The better you describe what you want, the better the AI delivers.

What you sayWhat you get
”Make an app”Generic code, wrong assumptions
”Make a task app with drag-and-drop, user login, and dark mode”Precise plan, targeted code

You don’t need to be technical. You need to be specific.


Real example — idea to done in 4 exchanges

Section titled “Real example — idea to done in 4 exchanges”
You: "I want a landing page with an email signup form."
AI: "Waitlist or newsletter? Need email validation?"
You: "Waitlist. Just save the email. No validation for now.
But add a duplicate check."
AI: → Creates the issue with full checklist
→ "Ready to start?"
You: "Go."
... AI builds, tests pass ...
AI: → "Done. Issue closed. Board updated. Next issue?"

4 exchanges. You talked, the AI worked.