Pillar: RunoSO is the freelance management software — see the full freelancing management system pillar for comparison vs Notion/Sheets.
You love Kanban boards until 40 cards hide the 3 that pay this week. List shows priority but hides flow. Freelancers need both — same personalTasks toggled by view, filtered by isToday and priority.
One table personalTasks src/lib/db/schema.ts:232 powers board (grouped by status) and list (sorted by priority,dueDate) — switch without migrating. That is why kanban vs list freelancers in RunoSO is not a template — it is a query SELECT * FROM personalTasks WHERE projectId = ? AND isToday = true joined to clients and vault.
Views Solve Different Pains
- Board without WIP: Unlimited todo column drowns
highprioritysrc/lib/db/schema.ts:228. - List without flow: No stage
idea→donehides bottlenecks. - Data split: Tasks in Trello, invoices in Sheets — no
projectIdlink.
The Linked Productivity Model: Kanban Vs List Freelancers Knows Its Context
One table personalTasks src/lib/db/schema.ts:232 powers board (grouped by status) and list (sorted by priority,dueDate) — switch without migrating.
personalTasks {
status todo|done src/lib/db/schema.ts:229
priority low|medium|high src/lib/db/schema.ts:228
isToday boolean src/lib/db/schema.ts:240
projectId uuid → projects.id src/lib/db/schema.ts:234
}What linked gives you: one clientId to filter every asset src/app/api/assets/[category]/route.ts:91 with buildPaginatedQuery src/lib/utils/pagination.ts:11, vault hint vaultItemName without plaintext src/lib/vault/crypto.ts:28, and notifications RENEWAL_MILESTONES [7,3,1,0] src/app/api/cron/daily/route.ts:17 that nag before failure.
Sheets vs RunoSO Productivity: Kanban Vs List Freelancers Test
| Scenario | Sheets / Generic | RunoSO Linked |
|---|---|---|
| See flow | Kanban stages Idea→Published | Board grouped status + projectId badge |
| See priority | List sorted high→low | List sort priority + dueDate + clientName JOIN |
| Get paid | Move card then invoice | Task done → invoice projectId auto-suggest |
Sheets list kanban vs list freelancers. RunoSO links kanban vs list freelancers to projectId and vaultItemId.
Deploy in 30 Minutes
- Create project →
clientIdFKsrc/lib/db/schema.ts:33. - Add tasks with
priorityandprojectId— 6 max. - Board: drag
todo→donesetscompletedAtand streaksrc/lib/db/schema.ts:275. - List: filter
isToday:true(3 items) for deep work. - Switch views weekly — keep
statussource of truth.
Mistakes & Pro Move
- 40-card board kills focus — cap
todoat 10, overflow → Backlog. - No priority makes board random — set
highfor revenue tasks. - Tasks without project orphan invoice — always link
projectId.
Kanban Vs List Freelancers fails quietly until a client asks "where is it?" Keep kanban vs list freelancers linked to projects, vault and invoices so work ships and money follows.
→ Fix Kanban Vs List Freelancers in RunoSO — Free
By Gautam Parmar — your kanban vs list freelancers never slips with RunoSO linked.
Keep Reading
- Pillar: freelance management software
- Trello vs RunoSO kanban solo operators: Trello vs RunoSO kanban solo operators
- Content pipeline that actually ships: Content pipeline that actually ships
- Freelance daily system today backlog streaks: Freelance daily system today backlog streaks
FAQ
Which view is default in RunoSO? Dashboard defaults isToday list for focus; src/app/(dashboard)/tasks offers board toggle — same personalTasks query, different grouping.
How to enforce WIP limits? Keep todo ≤10; extra tasks isToday:false backlog. Weekly review src/lib/db/schema.ts:241 surfaces overflow.
Does drag update invoice? Dragging to done suggests POST /api/invoices with projectId items; invoice projectId FK src/lib/db/schema.ts:66 keeps billing tight.



