๐Ÿ—‚๏ธ

Trello

Trello is a simple, visual drag-and-drop Kanban board tool owned by Atlassian, organizing work into boards, lists, and cards that can be moved between columns with a click. It ranks #11 among dev collaboration tools, reported in roughly 13.7% of developer surveys. Small teams and individuals favor it over heavier tools like Jira because there's almost no setup โ€” a new board is usable in seconds, with no workflow configuration required.

Quick facts
Type: Visual Kanban board (boards, lists, cards)
Made by: Atlassian (originally Fog Creek Software / Trello Inc.)
Cost: Freemium โ€” generous free tier for personal use and small teams; paid Standard/Premium tiers add automation (Butler), more power-ups, and admin controls
Best for: Small teams, personal projects, and anyone wanting a lightweight visual board with zero setup
Primary use case: Simple visual task tracking with drag-and-drop cards across customizable board columns
Jump to: ExampleGetting startedBest for

Example

The Trello REST API lets you automate card creation โ€” useful for piping in issues from other systems, forms, or scripts.

# create a new card on a Trello list
curl --request POST \
  --url 'https://api.trello.com/1/cards' \
  --header 'Accept: application/json' \
  -d key=YOUR_API_KEY \
  -d token=YOUR_TOKEN \
  -d idList=63f1a2b9c8d4e1 \
  -d name="Fix broken checkout button" \
  -d desc="Users report checkout fails on mobile Safari"

Getting started

Sign up free at trello.com, create a board, and add lists like "To Do," "Doing," and "Done" โ€” then start dragging cards between them.

1. Go to trello.com and sign up with email or Google/Microsoft account
2. Click "Create new board" and pick a template or start blank
3. Add lists: To Do / Doing / Done
4. Click "+ Add a card" under any list to create a task
5. Drag cards between lists as work progresses
Best for: Small teams, freelancers, and personal projects that want an instantly usable visual board without configuring workflows, permissions, or custom fields first.