HackerTrans
TopNewTrendsCommentsPastAskShowJobs

mrlesk

no profile record

Submissions

Senior AI Agents: True Intelligence Is Instructions Discovery

mrlesk.com
3 points·by mrlesk·vor 6 Monaten·0 comments

Show HN: Agents Council – Connect Claude, Codex, and Local Agents via MCP

github.com
3 points·by mrlesk·vor 6 Monaten·0 comments

Steer vs. Delegate: Two emerging ways to use AI agents

mrlesk.com
1 points·by mrlesk·vor 6 Monaten·1 comments

Backlog.md – Markdown‑native Task Manager and Kanban visualizer for any Git repo

github.com
254 points·by mrlesk·letztes Jahr·62 comments

comments

mrlesk
·vor 6 Monaten·discuss
Steer mode helps you ship faster as an individual. With Delegate you'll use AI more like a team lead.

Should you use one, the other or both?
mrlesk
·vor 12 Monaten·discuss
Hi. I’m the author of backlog.md . Your team did a great job on Vibe Kanban. It looks great and has a cool name. I like to see more tools trying to solve the human-ai agent interaction for building projects.

I wish you all the best with this tool!
mrlesk
·letztes Jahr·discuss
Backlog.md is still a bit rough on the edges but is definitely a proof that markdown files and AI Agents work really well together. I started working on it exactly a month ago
mrlesk
·letztes Jahr·discuss
Thanks. Let me know if you have any feedback
mrlesk
·letztes Jahr·discuss
Didn’t know this tool. Thanks for sharing
mrlesk
·letztes Jahr·discuss
I made it configurable and autoCommit is false by default
mrlesk
·letztes Jahr·discuss
Never heard of taskwarrior. I will check it out. Thanks for sharing
mrlesk
·letztes Jahr·discuss
Yep. Dependecies are supported via —dep parameter.

Will check the 404 issues. Thanks for reporting it
mrlesk
·letztes Jahr·discuss
It is so confusing that I had to add custom instructions for Codex telling him that Backlog.md is the project folder and not a file. He was wasting few mins trying to CAT Backlog.md instead of CD
mrlesk
·letztes Jahr·discuss
For task dispatch I just ask Claude: please take over task 123.

Because of the embedded custom instructions Claude knows exactly how to proceed.

Since I never create too big tasks, what blows most context are actually the docs and the decisions markdown files.
mrlesk
·letztes Jahr·discuss
2) AI Agents have issues editing larger files.

Correct. One of the instructions that ships with backlog.md is to make the tasks “as big as they would fit in a pr”. I know this is very subjective but Claude really gets much better because of this.

https://github.com/MrLesk/Backlog.md/blob/main/src/guideline...

You will notice yourself that smaller atomic tasks are the only way for the moment to achieve a high success rate.
mrlesk
·letztes Jahr·discuss
1) How will it work with multiple branches? Simple: using git :) Git allows to fetch certain files from other branches including remote ones without checking out those branches.

The state is always up to date no matter if you are running backlog.md from main branch or a feature branch.

It works well when there are not many branches but I need to check if I can improve the performance when there are lots of branches.
mrlesk
·letztes Jahr·discuss
Hehe. It was a veerry lucky situation.

I sent a message to someone telling that I was working on backlog.md and it turned the name into a link automatically.

I wanted to remove the link and I clicked on it accidentally and discovered that not only there was nothing on that domain but was not registered yet. I got the domain few mins later :)
mrlesk
·letztes Jahr·discuss
Yep. I’m happy to hear that more and more people are converging towards a very similar process as this ends up being the most productive.
mrlesk
·letztes Jahr·discuss
No mcp, just custom instructions.

When you initialize backlog in a folder it asks you if you want to set up agent’s instructions like CLAUDE.md. It is important to say yes here so that Claude knows how to use Backlog.md.

Afterwards you can just write something like: Claude please have a look at the @prd.md file and use ultrathink to create relevant tasks to implement it. Make sure you correctly identify dependencies between tasks and use sub tasks when necessary.

Or you can just paste your feature request directly without using extra files.

Feels a bit like magic
mrlesk
·letztes Jahr·discuss
Will definitely do. I am also planning to run a benchmark with various models to see which one is more effective at building a full product starting from a PRD and using backlog for managing tasks
mrlesk
·letztes Jahr·discuss
You’re absolutely right

Joking aside there is a npm/bun install -g backlog.md at the top but I can add an extra one in the 5 min intro.

I am using Bun’s new fullstack single file builds. I’m really impressed by how easy it was to set up everything.
mrlesk
·letztes Jahr·discuss
For such kind of tasks I would go with Taskmaster AI. It had mcp integration and probably could connect with jira.

Backlog is more for smaller projects where you wouldn’t normally have a project management tool
mrlesk
·letztes Jahr·discuss
I threw Claude Code at an existing codebase a few months back and quickly quit— untangling its output was slower than writing from scratch. The fix turned out to be process, not model horsepower.

Iteration timeline

==================

• 50 % task success - added README.md + CLAUDE.md so the model knew the project.

• 75 % - wrote one markdown file per task; Codex plans, Claude codes.

• 95 %+ - built Backlog.md, a CLI that turns a high-level spec into those task files automatically (yes, using Claude/Codex to build the tool).

Three step loop that works for me 1. Generate tasks - Codex / Claude Opus → self-review.

2. Generate plan - same agent, “plan” mode → tweak if needed.

3. Implement - Claude Sonnet / Codex → review & merge.

For simple features I can even run this from my phone: ChatGPT app (Codex) → GitHub app → ChatGPT app → GitHub merge.

Repo: https://github.com/MrLesk/Backlog.md

Would love feedback and happy to answer questions!