board_create_project
Create a new project to group related tasks and sessions under a shared goal. Use for major initiatives; defaults to active status and medium priority.
Instructions
Create a new project to group tasks and sessions under a shared goal. Projects are the top-level container — every task and session must belong to one. Use sparingly: create a new project for major initiatives (3+ related tasks), not for every piece of work. New projects are created with status='active' and priority='medium' (unless overridden). Returns { id, name, status, priority, message }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Project name — short, human-readable title shown everywhere the project is referenced | |
| description | No | Optional longer description of the project's scope, goals, or context. Omit if the name is self-explanatory. | |
| priority | No | Portfolio-level importance — drives weekly focus and default sort order in board_get_projects. This is DISTINCT from task.priority, which orders execution within a single project. Use critical/high for projects that should dominate the coming week; medium for steady-state work (default); low for back-burner initiatives you want visible but not pressing. Defaults to 'medium' when omitted. | |
| metadata | No | Optional key/value metadata (e.g., linked doc paths, deadlines, stakeholder names). Merged shallowly on board_update_project. |