/** * FeaturesKanban Documentation Section * * Covers the Kanban board, feature cards, dependency graph view, * adding/editing features, dependencies, expanding with AI, * and priority ordering. */ import { Badge } from '@/components/ui/badge' export function FeaturesKanban() { return (
{/* Kanban Board Overview */}

Kanban Board Overview

The main view organizes features into three columns representing their current status:

Column Color Meaning
Pending Yellow Waiting to be picked up
In Progress Cyan An agent is actively working on it
Done Green Implemented and passing

Each feature appears as a card showing its name, priority, and category. The board updates in real time as agents work.

{/* Feature Cards */}

Feature Cards

{/* Dependency Graph View */}

Dependency Graph View

An alternative to the Kanban board that visualizes feature relationships as a directed graph.

{/* Adding Features */}

Adding Features

{/* Editing & Deleting Features */}

Editing & Deleting Features

{/* Feature Dependencies */}

Feature Dependencies

Features can declare dependencies on other features, ensuring they are implemented in the correct order.

{/* Expanding Project with AI */}

Expanding Project with AI

{/* Priority & Ordering */}

Priority & Ordering

) }