KITSUNEBI.cloudSign in
Kitsunebi
Kanban that talks to your agents

Light the path.

Kitsunebi (狐火) is the will-o'-the-wisp that guides travelers through the dark. Drop your work onto a board. Drag it through the columns. Let your agents file new cards while you sleep.

Sign in with Google or GitHub. No credit card. Boards are private by default — share a link when you're ready.

Spark· TODO
bug
Ship reviews v0
Hook up agent for backlog sync
Sketch onboarding flow
Burning· DOING
infra
Migrate to TCP transport
Add cover images
Embers· DONE
OAuth sign-in
shipped
Agent API tokens
Board theme picker
What makes it different

Three things, no more.

Kanban

Drag, drop, ship.

Boards, columns, cards. Labels, due dates, cover images, markdown descriptions. The basics, done right — nothing you have to relearn from Trello.

Agents

An API your bots will love.

Mint a Bearer token. Read your board state, create cards, move them between columns, mark them blocked. Hook your roadmap into your tools and let them do the typing.

Sharing

Private by default.

Boards default to owner-only. Flip one to public and anyone with the link can view, read-only. The agent API stays Bearer-gated either way.

Agent API

Curl-able from the first commit.

Every board operation a human can do, a Bearer token can do too. No GraphQL, no SDK, no auth dance — just JSON over HTTPS.

  • GET /api/boards/{slug} — full board state
  • POST /api/boards/{slug}/cards — file a card
  • PATCH /api/cards/{id} — move, rename, label, mark blocked
  • POST /api/cards/{id}/comments — log progress
# File a card from your CI script
curl -X POST \
-H "Authorization: Bearer kb_…" \
-H "content-type: application/json" \
-d '{"columnId":"…", "title":"Build broke on main"}' \
https://kitsunebi.cloud/api/boards/my-board/cards