Hacker News new | ask | show | jobs
Show HN: Task Manager for AI Agents (MCP, Opensource) (github.com)
6 points by mrtnx 50 days ago
AgentRQ is a (optionally) human-in-the-loop, self learning closed loop task manager for agents. Agents can create and schedule tasks for themself and work on them on their own schedule.

In high level it comes with one supervisor MCP that controls workspaces(worker agents) and unlimited number of isolated workspace MCPs (self learning agents).

Each workspace/agent has a mission/persona for the agent. And self-learning-loop note.

I am using it about 6 weeks in production, and completed more than 500 tasks. I just released the opensource version(as is in production) under Apache 2.0 license.

Currently it supports Gemini CLI and Claude code. I am going to extend support all major agents soon.

Happy to answer any questions.

2 comments

Interesting approach.

I’m especially curious about the “self-learning loop” — in practice, does it actually improve outcomes over time, or does it tend to reinforce suboptimal patterns?

And How much autonomy do the agents actually have in practice?

I’ve found that fully autonomous loops tend to need a lot of guardrails to stay useful.

> does it actually improve outcomes over time Yes, after every execution (optionally), you are able to attach self-eval and update the skills accordingly.

> does it tend to reinforce suboptimal patterns? I was thinking on a ML approach but kept myself lazy and decided go all in with LLM self-evaluation notes.

> How much autonomy do the agents actually have in practice? 100% is possible but if you are asking personally: I define what I need and give them personality/mission to accomplish in multiple worksplace.

> I’ve found that fully autonomous loops tend to need a lot of guardrails to stay useful. I can tell, it did what I was not able to do mentally and physically. It is a huge unlock for creating time for myself.

How does a team setup look like? Maybe tested it with someone?
I assigned it to self-document: https://agentrq.com/docs I verified all steps one by one. Please let me know if I can help you onboard.