Settings

Theme

Show HN: TaskPeace – a task queue my AI coding agents pull work from over MCP

taskpeace.com

7 points by JulianQuinn 3 days ago · 9 comments

Reader

sysfiend 3 days ago

Just recently started playing with the idea of an agent that has multiple agents as subordinates. My main agent has the context of the system, controls api keys, tokens, etc. and has a high level overview of each project. Then I have an agent per project and some general "experts" (such as db expert, devops expert, etc.). My main agent (the captain) takes my inputs and then splits the tasks and reports back when the subagents have done the work. I wonder if this idea of having a queue may or may not benefit someone with my setup (running on openclaw). Have you tried this kind of setup yourself and, if so, what are the benefits of using a queue system?

docheinestages 3 days ago

Some suggestions:

The landing page has an information overload (at least for me). I have a hard time understanding what to look at, because it's both a landing page with very dense writings, and at the same time something that looks like a real app.

Less is more. Look at some of the best landing pages out there. They tell the core story with a few words. A video where you walk through your product is even better.

  • JulianQuinnOP 3 days ago

    Thats fair! Its trying to be a landing page and the actual app at the same time, so you cant really tell where to look. Because of yout feedback just pushed a change, cut most of the wall of text and moved the live demo up so its right under the headline instead of buried at the bottom. A short walkthrough clip is next on the list.

    Thanks for taking the time to write it out, genuinly useful!

yr_animesh 2 days ago

So how is the product working?? Did you implemented some queue based data structure to maintain the sequence of the AI agents?

  • JulianQuinnOP a day ago

    The power's mainly in the smooth MCP connections, combined with an autopilot and a lot of config, spent a lot of time on that. Press 'q' and the autopilot runs smoothly through your tasks, press 0 to get help with tasks that are gated (for example posting something on social media). Best to adopt it for a while, build up your .md files, and let the synergy build, after a while the magic happens.

    Besides, I just wanted a pleasant task list for myself. Jira's too complex, Apple Reminders too simple and just not optimal for Claude Code agents. I wanted a proper synergy, and to bring Claude working as a team to the next level.

    Code's open if you wanna take a look: gitlab.com/taskprio/taskprio Thanks all for your feedback!

murats 3 days ago

This is a nice idea. I keep seeing agent tools that focus on the coding part, but the boring task dispatch and handoff layer is where I actually lose time.

JulianQuinnOP 3 days ago

Honestly, this started as a throwaway script. Im running about 40 small sites and most of my day had turned into being a dispatcher for Claude Code and Cursor, re-typing "ok now do this" over and over. So I built TaskPeace: you rank one global list once, and the agent pulls the top task over MCP (get_next_task), does the work, writes a short result back when it's done, then moves to the next one. It'll run down the list unattended.

The bit I actually needed was task leasing, so I can point two or three agents at one queue without them grabbing the same task. Completing a task requires a written result, which sounds like busywork but it's the only reason I trust leaving it running for an hour.

Free to use, $10/mo if you want unlimited runs. It's MIT and you can self-host it (npm run serve, no database needed). There's a demo on the homepage that runs in your browser, no signup. It's early and definitly still rough in places, fair warning.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection