Web UI

Visual interface for task and documentation management

3 min read

Web UI Guide

Visual interface for managing tasks and documentation.

Quick Start

knowns browser

Opens the Web UI at http://localhost:6420.

Options

knowns browser --port 8080      # Custom port
knowns browser --no-open        # Don't open browser

Features

Kanban Board

Drag-and-drop task management with columns:

ColumnStatus
To Dotodo
In Progressin-progress
In Reviewin-review
Blockedblocked
Donedone

Actions:

  • Drag tasks between columns to change status
  • Click task to view/edit details
  • Create new tasks with + button

Task Details

Click any task to open the detail panel:

  • View/edit title and description
  • Check/uncheck acceptance criteria
  • Update status and priority
  • Assign to team members
  • View implementation plan and notes
  • See time tracking history

Document Browser

Tree view of all documentation:

docs/
├── patterns/
│   ├── auth.md
│   └── caching.md
├── architecture/
│   └── overview.md
└── guides/
    └── getting-started.md

Features:

  • Click folder to expand/collapse
  • Click document to view content
  • Markdown preview with syntax highlighting
  • Reference badges (@task, @doc) are clickable

Press Cmd+K (Mac) or Ctrl+K (Windows) to open search.

Search across:

  • Task titles and descriptions
  • Document titles and content
  • Acceptance criteria

Dark Mode

Automatically follows system preference. Toggle manually in the UI.

Keyboard Shortcuts

ShortcutAction
Cmd/Ctrl + KOpen search
EscapeClose modal/panel

Real-time Sync

Changes sync in real-time between:

  • Multiple browser tabs
  • CLI and Web UI
  • Team members (same network)

When you run knowns task edit in CLI, the Web UI updates instantly.

Reference Badges

Task and doc references render as clickable badges:

TypeAppearance
@task-42Green badge with task title and status dot
@doc/patterns/authBlue badge with document title

Click any badge to navigate to that item.

URL Routing

Direct links to specific views:

URLView
/#/kanbanKanban board
/#/kanban/42Kanban with task 42 open
/#/docsDocument browser
/#/docs/patterns/auth.mdSpecific document

Architecture

Browser ←→ Express Server ←→ File System (.knowns/)

           WebSocket (real-time sync)

The Web UI connects to a local Express server that reads/writes to your .knowns/ folder. All data stays on your machine.

Troubleshooting

Port in use

knowns browser --port 6421

Browser doesn't open

knowns browser --no-open
# Then manually open http://localhost:6420

Changes not syncing

  1. Check if server is running in terminal
  2. Refresh the browser
  3. Check browser console for WebSocket errors