Introduction
is.team is a visual project management tool built around an infinite canvas. Think of it as FigJam meets Kanban — boards, notes, and connections all live side by side on a zoomable surface.
Key Concepts
Before diving in, here are the building blocks you'll work with every day.
Workspace
Your team's home. Each workspace has its own members, boards, and billing plan.
Canvas
An infinite surface where you arrange boards, notes, and connections visually.
Board
A kanban-style board with columns and tasks. Drag it anywhere on the canvas.
Connection
Arrows that link boards and notes together, defining your workflow.
Quick Start
Get up and running in under two minutes.
- 1
Create a workspace
Sign up and create your first workspace. Pick a name and optionally invite teammates right away.
- 2
Add a board
Click the + button in the bottom toolbar and choose Board. Give it a title — your first kanban board is ready.
- 3
Create tasks
Click + inside any column to add a task. Drag tasks between columns to update their status.
- 4
Connect boards
Hover the edge of a board to reveal the connection handle. Drag it to another board to create a workflow link.
Tip
You can also press B to quickly create a board and N for a note, directly on the canvas.
API Access
is.team offers an API for programmatic task management. Generate a token from Account Settings → API, then use it in your requests:
curl -X POST https://is.team/api/llm/{cardId}/comment \
-H "Authorization: Bearer ist_your_token_here" \
-H "Content-Type: application/json" \
-d '{"taskNumber": 1, "text": "Hello from the API!"}'