AI4Kanban

Comparison

AI4Kanban vs.
GitHub Issues

AI4Kanban and GitHub Issues solve different coordination problems. AI4Kanban gives a developer and an agent a board inside the repository. GitHub Issues gives a team or community a shared service for tracking and discussing work. Choose based on whether your daily work depends more on fast local execution or coordination across people.

AI4Kanban
your board lives in the reposrc/ app.tsdocs/kanban/ 12-fix-login.md# Fix login- [x] repro the bug- [ ] patch handlerthe agent reads the code and updates the board

A Markdown board stored with the code, where an agent can read and update tasks directly.

GitHub Issues
issues live on a server, your code doesn’tsrc/ app.tsgithub.com/you/repo/issues#14 Fix loginopen#13 Add searchopengreat for a team — you keep the two in sync

A hosted task system for sharing work, discussion, and status across a team or community.

01 · Core comparison

Local workspace or shared service?

The underlying difference is where the board lives. That choice determines the cost of agent access, how concurrent work is coordinated, what history is retained, and how outsiders participate.

Where the work lives
AI4Kanban

The board is stored as Markdown in the repository. An agent can read and update it directly, including offline.

GitHub Issues

Tasks are hosted by GitHub. Agent access requires a network connection and the `gh` CLI or MCP.

Agent overhead
AI4Kanban

Local search can return only the relevant text, keeping context use and response time low.

GitHub Issues

Remote operations also involve tool definitions, JSON responses, and network round trips, which usually use more tokens.

Concurrent collaboration
AI4Kanban

There is no coordinating server, so two people can create the same task number and produce a conflict.

GitHub Issues

The server assigns IDs and synchronizes updates, making concurrent work safe for a team.

What history is kept
AI4Kanban

It retains decisions and outcomes that affect future work, while older detail is summarized.

GitHub Issues

It preserves the full record of comments, edits, cross-references, and activity.

External participation
AI4Kanban

Contributors need repository access and participate by changing Markdown files.

GitHub Issues

On a public repository, anyone can open an issue, comment, or react without submitting code.

02 · How to choose

Which tool fits your workflow?

AI4Kanban is a better fit when

  • You work alone or with one or two regular collaborators.
  • You rely on an agent in the terminal to move tasks forward.
  • You value fast execution and concise decision context over a complete activity log.
  • You want the board to stay in Git, work offline, and move with the repository.

GitHub Issues is a better fit when

  • Several people need to assign and update tasks at the same time.
  • The project is developed in public and process transparency matters.
  • Your workflow depends on pull requests, CI, projects, milestones, or automation.
  • You want outside contributors to file issues and join discussions.
Bottom line

The tools are not direct substitutes. GitHub Issues is a shared task system for a team or community; AI4Kanban is a local working board an agent can operate directly. Choose GitHub Issues when team coordination is the bottleneck. Choose AI4Kanban when the bottleneck is how efficiently you and an agent can move work forward.

They can also work together: use GitHub Issues for team-facing or public work, and AI4Kanban as the agent’s local workspace.