DEV Community

Jean-Christophe Viau
Jean-Christophe Viau

Posted on

Voxyflow: The AI Project Manager That Actually Executes

I keep seeing the same workflow in AI-assisted dev:

  1. Open your task manager (Linear, Jira, Notion, whatever)
  2. Read the card
  3. Switch to your AI coding tool (Cursor, Copilot, Claude)
  4. Re-explain the entire context
  5. Execute
  6. Switch back to update the card

It's fragmented. The AI never has the full picture. And you're the one doing the cognitive work of bridging two tools that should be one.

Voxyflow is my attempt to fix this.

What is Voxyflow?

Voxyflow is an AI project manager that actually executes tasks — not just tracks them.

It's a Kanban board with an execution engine built in. You create cards, add context (description, checklist, linked files, notes), and when you're ready — you hit Execute Card.

The agent reads everything: the card title, description, checklist items, attached files, project context. Then it works. You don't re-explain anything.

The Execute Card flow

[Card: "Add dark mode to settings page"]
  Description: User wants to toggle dark mode in /settings
  Checklist:
    - Add toggle component to SettingsPage.tsx
    - Persist preference in localStorage
    - Apply theme class to <body>
  Linked files: src/pages/SettingsPage.tsx, src/theme.ts
Enter fullscreen mode Exit fullscreen mode

Hit Execute. The agent reads all of this, opens the files, makes the changes, runs tests if configured. Done.

No copy-pasting. No "here's the context" preamble. The card is the context.

Non-blocking architecture

Here's what I wanted from day one: you can keep working while the agent works.

Most AI coding tools are synchronous — you wait. Voxyflow uses a non-blocking worker model. You kick off a card execution, and you can immediately:

  • Chat with the project assistant
  • Review another card
  • Create new tasks
  • Start a second execution

Workers run in the background. You get notified when they're done.

Why not just use Linear + Cursor?

You can. But:

  • Linear doesn't know about your code
  • Cursor doesn't know about your roadmap
  • You're the translation layer between them

Voxyflow puts both in the same app, on your machine, with full context available to the AI at all times. No subscription. No data leaving your machine unless you want it to.

"Linear + Cursor in one app, on your machine, no subscription."

Who is this for?

Solo developers and small teams who want an AI that does the work, not just answers questions.

If you're managing a project solo and using AI heavily, Voxyflow might be exactly what you've been waiting for.

Status & roadmap

Voxyflow is in active development. The core Kanban + Execute flow is working. Coming next:

  • Git integration (auto-commit executed changes)
  • Multi-agent parallel execution
  • Mobile companion for reviewing tasks on the go

👉 Check it out and leave a star: github.com/jcviau81/voxyflow

Feedback welcome — open an issue or drop a comment below.

Top comments (0)