zlacker

Show HN: I replaced Beads with a faster, simpler Markdown-based task tracker

submitted by wild_e+(OP) on 2026-01-04 13:08:12 | 84 points 51 comments
[view article] [source] [go to bottom]

I've been running long duration coding agents with Claude Code for about 6 months now. Steve Yegge released Beads back in October and I found that giving Claude tools for proper task tracking was a massive unlock. But Beads grew massively in a short time and every release made it slower and more frustrating to use. I started battling it several times a week as its background daemon took to syncing the wrong things at the wrong times.

Over the holidays I finally ripped it out and wrote ticket as a replacement. It keeps the core concept I actually cared about (graph-based task dependencies) but drops everything else.

ticket a single file bash script built on coreutils managing flat files. You don't need to index everything with SQLite when you have awk. It's just a small plumbing utility that gets out of your way so you can get to work.

Would love feedback on gaps. I built this for my own agent workflows so there are probably use cases I haven't thought about.


NOTE: showing posts with links only show all posts
2. khimar+Qr5[view] [source] 2026-01-06 03:48:44
>>wild_e+(OP)
why should people use this as opposed to https://github.com/git-bug/git-bug?
◧◩
3. khimar+Xr5[view] [source] [discussion] 2026-01-06 03:51:10
>>khimar+Qr5
or if that's not similar enough, how about https://github.com/dspinellis/git-issue?
17. cloudk+5G5[view] [source] 2026-01-06 06:41:26
>>wild_e+(OP)
Nice solution, I had some success with https://www.task-master.dev/ it's a bit more complex though
25. bredre+JO5[view] [source] 2026-01-06 08:23:14
>>wild_e+(OP)
I have been looking at this problem space, including beads recently.

I wasn't able to find something AI-native that supported subissues, and worked across projects. I require git worktrees on my programming work now, and I want it to be able to handle integration with systems like Linear or even GH issues (which was my preferred ticketing system before CLIs emerged)

The idea is in part, ~I have 15 minutes right now, what is the most important thing to put attention to? Be routed to the project and go immediately to work with a CLI.

I'm using Claude Code and codex for programming and administrative chores now. For example, managing the process of finding and selecting an arborist.

My main personal project, focuses on making Claude Code and Codex conversations useful (https://Contextify.sh). I use uses pure markdown (TODOS.md) for issue management and it is at its limit.

I'm less concerned about the DB's storage location. I don't think it needs to be stored with each project, but each project does need to be able to access it.

I suspect that I'll ultimately want to host it.

◧◩
27. hasbot+dQ5[view] [source] [discussion] 2026-01-06 08:39:51
>>neuman+YM5
Good question though I expect it'll get buried amongst all the other comments. Maybe create an "Ask HN" post.

I asked Google/Gemini about a tutorial and it responded with several YouTube videos and also produced this subreddit: https://www.reddit.com/r/AI_Agents/

Found this too: https://nitter.net/bcherny/status/2007179832300581177#m

◧◩
31. trivia+yV5[view] [source] [discussion] 2026-01-06 09:36:17
>>skrebb+VT5
you can use https://git-scm.com/docs/git-worktree to have many "views" of a single git repo.

For more complex environments, use multiple VMs (common to have large VMs running in AWS/GCP for development and only use your laptop or phone as a thin client)

32. czottm+yW5[view] [source] 2026-01-06 09:44:07
>>wild_e+(OP)
There's also Beans, doing MD-based ticketing in your project. It's really good. (Disclaimer: I've contributed a few of the agent rules.)

https://github.com/hmans/beans

> Beans is an issue tracker for you, your team, and your coding agents. Instead of tracking tasks in a separate application, Beans stores them right alongside your code. You can use the beans CLI to interact with your tasks, but more importantly, so can your favorite coding agent! > > This gives your robot friends a juicy upgrade: now they get a complete view of your project, make suggestions for what to work on next, track their progress, create bug issues for problems they find, and more.

Much, MUCH less invasive than beads (basically just a CLI tool and a `.beans.yml` & `.beans/` in your project, and a joy to work with. CLI, TUI, labels, status, types (epic, feature, task etc.), GraphQL query interface (agents love that).

It's good.

33. xdange+6Y5[view] [source] 2026-01-06 09:57:05
>>wild_e+(OP)
I've found Backlog.md quite nice

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

has a nice tui/webui for me, and mcp for the agent.

◧◩
40. afro88+446[view] [source] [discussion] 2026-01-06 10:59:38
>>skrebb+VT5
Git worktrees for parallel repo clones on different branches, a worktree setup script that runs when a worktree is created (npm install etc) and vibe-kanban [0] to visually create, monitor and approve parallel work

0 https://www.vibekanban.com/

◧◩
41. rahimn+x46[view] [source] [discussion] 2026-01-06 11:03:42
>>skrebb+VT5
Some people use git worktrees so each agent is working in a separate directory.

Some people have multiple agents working in the same directory, and allow the agents to tell each other what they're doing and which files they're editing: https://github.com/Dicklesworthstone/mcp_agent_mail

[go to top]