Markdown tasks
Every piece of work is a _tasks/NNN-*.md file with YAML
frontmatter. Plain files, versioned with your code.
You are now the CTO, not a developer
Keep track of multiple projects running at once.
$ npx cogyard serve
The LLM is the new compiler. Think at product level not code level.
Each product is a stack of tasks. You assign the work, set priorities,
and sequence the merges — one person running several products at once.
cogyard keeps every one of them on track.
_tasks/NNN-*.md file, the source
of truth. No database, no lock-in. Readable by you, your agents, and git;
versioned alongside the code it describes.
# install the CLI
$ npm i -g cogyard
# set up the task store in your project
$ cogyard tasks init
# reserve a task file, then write the spec
$ cogyard tasks next-id add-auth → _tasks/001-add-auth.md
# run the portal: every project, agent, and worktree in one view
$ cogyard serve # http://localhost:7440
Driving it with Claude Code? cogyard claude install wires in the
skills and hooks so agents claim tasks and get their own worktree
automatically. Any agent (or human) that can call the CLI works the same way.
The machinery that lets you run several products at once and never lose track of where each one is.
Every piece of work is a _tasks/NNN-*.md file with YAML
frontmatter. Plain files, versioned with your code.
One session claims a task atomically. The next agent is refused, not doubled up. Works across a team too: claims carry your name and sync over a git remote.
Every task runs in its own git worktree, named after the task. Isolated, ready to merge on your call.
Each worktree reserves its own port pair, so parallel dev servers never fight. The portal tracks who owns what.
A git-tree graph and every live worktree, across every project, in a single always-on view.
Claude, Codex, or a human all drive the same CLI. The engine doesn’t care who’s at the keyboard.
Ask which chats created, built, or mentioned any task — then read the transcript, right in the portal. Survives archiving and deleted worktrees.
Tasks live in your repo as plain markdown. Nothing to export, nothing to migrate.
---
id: 1
slug: add-auth
title: Add email + password auth
status: OPEN
depends_on: []
claimed_by_session: null
---
# 001: Add email + password auth
## Scope
- [ ] signup + login routes
- [ ] session cookies
- [ ] password reset email