Board Commands
Thegenie board command group manages kanban-style boards with configurable column pipelines. For an overview of how boards, columns, and gates work, see Boards. Boards are project-scoped and replace task types as the primary pipeline mechanism. Each column can have its own gate type and associated action skill.
genie board create
Create a new board.
| Option | Description |
|---|---|
--project <project> | Project name |
--from <template> | Create from template name |
--columns <columns> | Comma-separated column names |
--description <text> | Board description |
genie board list
List all boards.
genie board show
Show board detail with column pipeline and task counts.
genie board edit
Edit board or column properties.
| Option | Description |
|---|---|
--project <project> | Disambiguate by project |
--column <col> | Column name to edit |
--gate <gate> | New gate value (human, agent, human+agent) |
--action <action> | New action skill |
--color <color> | New color hex |
--rename <new> | Rename the column |
--name <new> | Rename the board itself |
--description <text> | Update description |
genie board delete
Delete a board.
genie board columns
Show board column pipeline — displays the ordered list of columns with their gate types and action skills.
genie board use
Set the active board for the current repo. The active board determines which pipeline is used for genie task move operations.
genie board export
Export a board as JSON.
genie board import
Import a board from a JSON file.
genie board archive
Archive a board and its unfinished tasks.
genie board reconcile
Fix orphaned column_id values by matching each task’s stage name to the board’s column names. Useful after renaming columns or switching boards.
Board Templates
Templates are reusable board blueprints. The built-insoftware template defines the default 7-stage pipeline.
genie board template list
List all available templates.
genie board template show
Show template detail with pipeline view.
genie board template create
Create a custom board template.
genie board template edit
Edit a template column.
genie board template rename
Rename a template.
genie board template delete
Delete a template.
Column Gates
Each board column can have a gate that controls whether tasks can auto-advance through it:| Gate | Behavior |
|---|---|
human | Requires human approval to advance |
agent | Agents can auto-advance |
human+agent | Either can advance |