๐Ÿ“– Guide โ€” GTD Fast

โ† back to the board

Privacy statement ยท Terms of service

This board helps you not to forget anything. Everything you have to do goes on it as a card, and you move the cards from left to right until they are finished. What makes it special: Claude (an AI) can join in โ€” you give Claude a task and it carries it out. Under every step there is a yellow block: copy that text and paste it into your own Claude (for example Claude Code or the Claude app) โ€” Claude then checks for you whether the step worked.

๐Ÿ“ฅ Inboxeverything that comes in and still needs sorting out โ–ถ๏ธ Next actionswhat you can get started on right now โณ Waiting forwaiting on someone or something else ๐Ÿ’ค Someday / maybemaybe later, not now โœ… Donefinished!

1Signing in

  1. Go to gtdfast.com.
  2. Click Sign in with Google and pick your Google account. That's it โ€” no password needed.

Your Claude needs a "key" to look at your board with you: click your profile picture at the top right โ†’ Show token โ†’ copy the code that starts with gtd_. You paste that into the yellow blocks in place of <YOUR-TOKEN>. Only give this token to your own Claude, to nobody else.

๐Ÿค– Have your Claude check this
Check whether my GTD account works: fetch https://gtdfast.com/api/me with header "Authorization: Bearer <YOUR-TOKEN>" and tell me which name and which email address come back.

2Your first project

  1. Click ๐Ÿ“ Projects at the top โ†’ New project and give it a name (for example "House move" or "Web shop").
  2. Fill in the Knowledge field: write in plain language what the project is, what matters, and where things live (links, folders, agreements). This is the project's memory โ€” Claude always reads it first before carrying out a task. The better this field, the better Claude works.

๐Ÿ’ก No plan yet? Click ๐Ÿ’ก Brainstorm at the top: throw your idea in, Claude asks along (why do you want this, how do you picture it) and thinks with you without steering. As soon as nothing new comes up, Claude turns it into a complete project โ€” with tasks in the right columns and working documents. (This needs an AI API key in Settings.)

๐Ÿค– Have your Claude check this
Fetch https://gtdfast.com/api/projects with header "Authorization: Bearer <YOUR-TOKEN>". Which projects do I have? For each one, say whether the Knowledge field is filled in and give tips to make it better for an AI assistant.

3Making and moving tasks

  1. Click + add in a column, type what needs to happen, and click Create.
  2. Put what you already know in Notes โ€” Claude reads this too.
  3. Dragging: grab a card with your mouse and drag it to another column when the status changes.
  4. Click a card to open it. Click next to it without changing anything and it closes by itself; if you did change something, the board asks whether you want to save.

Handy inside a card: a checklist (sub-steps, each one can get its own owner and be promoted to a card of its own), a due date, and filters at the top of the board (today / overdue / this week / per person).

๐Ÿค– Have your Claude check this
Fetch https://gtdfast.com/api/tasks with header "Authorization: Bearer <YOUR-TOKEN>". Give me a short overview: how many tasks per column (INBOX/NEXT/WAITING/SOMEDAY/DONE), which ones are past their deadline, and which task would you pick up first?

4Working together with others

  1. Open ๐Ÿ“ Projects, click your project and create an invite link.
  2. Send that link to someone else; they sign in with Google and are straight away in your project.
  3. In a task card you choose under Assignee who is going to do it โ€” you can only choose people who are in that project (or Claude).

๐Ÿ’ถ On your own the board is free. Work with more people in your projects and it is โ‚ฌ5 per person per month (through Settings โ†’ Team plan, payment via Stripe).

๐Ÿค– Have your Claude check this
Fetch https://gtdfast.com/api/projects with header "Authorization: Bearer <YOUR-TOKEN>". For each project, tell me who the members are and who owns it.

5Chatting with your team (and with Claude)

  1. Click ๐Ÿ’ฌ Chat at the top and choose your project. Everyone in the project chats along.
  2. Make channels for topics (for example #planning, #ideas) with + channel.
  3. Tag someone with @name (for example @sven) โ€” the name lights up in the message.
  4. Tag @claude and Claude simply answers in the channel, knowing your project.
๐Ÿค– Have your Claude check this
Fetch https://gtdfast.com/api/claude/chat-queue with header "Authorization: Bearer <YOUR-TOKEN>". Are there chat messages where I tagged @claude that have no answer yet? If so, answer them: POST to /api/channels/{channelId}/messages with {"text":"...","author":"Claude","claudeReplyTo":"<message-id>"}.

6Letting Claude do a task

  1. Open a task card and make sure the title and Notes are clear (write as if you were explaining it to a colleague).
  2. Click โšก Give to Claude now. Claude gets to work and puts the result on the card as a comment; the status jumps to Done (or Waiting if something is needed from you).
  3. Sometimes Claude proposes a follow-up task โ€” it appears with a ๐Ÿ’ก in your Inbox and only counts once you click โœ“ Approve.

๐Ÿงญ Doing it yourself but need a hand? Every card has "Help from Claude": ask a short question (or leave the field empty) and Claude puts a complete answer on the card as a comment โ€” clarification, a plan in small steps, suggestions and pitfalls, useful links, and which parts you can hand to Claude.

Run via in the card decides where Claude works: โš™๏ธ Auto = the board picks the fastest route itself ยท โ˜๏ธ In-app = on the server, can only think and write ยท ๐Ÿ–ฅ๏ธ Claude Code = your own Claude on your computer, which can really do things (files, code, internet). Not sure? Leave it on Auto.

๐Ÿค– Have your Claude check this
Fetch https://gtdfast.com/api/claude/queue with header "Authorization: Bearer <YOUR-TOKEN>". Are there tasks waiting for you (Claude)? If so: for each task read projectKnowledge and the attached files first, carry out the first task, put your result as a comment via POST /api/tasks/{id}/comments with {"text":"...","author":"Claude"} and set the status to DONE via PATCH /api/tasks/{id}.

7Connecting your own Claude (free within your subscription)

There are two ways to put Claude to work for you:

๐Ÿค– Paste this once into your own Claude Code
From now on you are my executor for my GTD board. My token: <YOUR-TOKEN>. How it works: fetch https://gtdfast.com/api/claude/queue with header "Authorization: Bearer <token>". Per task: read projectKnowledge, notes and files first; carry out the task; put the result as a comment (POST /api/tasks/{id}/comments, {"text":"...","author":"Claude"}) and set the status to DONE or WAITING (PATCH /api/tasks/{id}). Skip tasks that are waiting on a human. Make this a recurring task that runs every 30 minutes.

8Files on a task

๐Ÿค– Have your Claude check this
With header "Authorization: Bearer <YOUR-TOKEN>", fetch my tasks via https://gtdfast.com/api/tasks, pick one and fetch the details via /api/tasks/{id}. Are there files attached? Summarize what is in them.

9As an app on your computer + offline

  1. Click โฌ‡ Install app in the top bar (or in Chrome: menu โ‹ฎ โ†’ "Install GTD Fastโ€ฆ"; Safari on Mac: File โ†’ "Add to Dock"; on your phone: Share โ†’ "Add to Home Screen").
  2. The board then opens as its own program with its own icon. Updates happen by themselves โ€” the app is always exactly the same as the website.
  3. No internet? No problem: you see the last known version of your board, and everything you change is sent as soon as you are back online (you see ๐Ÿ“ด and ๐Ÿ”„ in the bar).

10The vault ๐Ÿ” (keeping passwords safe)

  1. Click ๐Ÿ” Vault at the top โ†’ Send a code to my email.
  2. Type the 6-digit code from the email. The vault is then open for 15 minutes; after that it locks by itself.
  3. Keep logins, API keys and other secrets in there. Everything is stored encrypted.

The vault is for people only: AI and programs (including Claude!) cannot get in by design. You can even have that proved: ๐Ÿ‘‡

๐Ÿค– Have your Claude prove the vault is shut
Do a POST to https://gtdfast.com/api/vault/otp with header "Authorization: Bearer <YOUR-TOKEN>". You should get a 403 error saying only browser sessions have access. Confirm to me that you (and every other bot) therefore cannot reach my vault.

11Getting things onto your board from elsewhere

A message, an email, a web page โ€” you do not have to open the board to save it. Whatever you send in, GTD reads the brief of every board, picks the right one, and you confirm with a single tap.

โ†’ GTD

Do not click this button โ€” drag it onto your bookmarks bar. After that it works on every web page.

You always get to see which board was chosen, and why. Wrong guess? Pick another one from the dropdown before you save โ€” nothing is filed behind your back.

Something more technical: any program that can send a webhook (Zapier, Make, n8n, or a CRM of your own) can put tasks on your board too, by posting to /api/capture with your gtd_ token. Ask your Claude about it with the block below.

๐Ÿค– Have your Claude check this
Do a POST to https://gtdfast.com/api/capture?dry=1 with header "Authorization: Bearer <YOUR-TOKEN>" and body {"text":"call the accountant about the quarterly figures before friday"}. Tell me which board it wants to file this on and why, but do not save it yet.