Skip to main content

Projects

project list

List projects, optionally filtered by accessible team.

linear-cli project list --team ENG --limit 50 --cursor "$CURSOR"
FlagDefaultDescription
--team <key>Team key filter
--limit <n>50Maximum result count
--cursor <cursor>Cursor from the previous response

project get <project-id>

Return project details including lead, members, teams, and issue summaries.

linear-cli project get abc-123

project create

--name is required. --team falls back to default_team; it is a usage error if neither is set. --description-file replaces --description.

linear-cli project create --name "Q2 Roadmap" --team ENG --description-file ./plan.md
FlagRequiredDescription
--name <name>YesProject name
--team <key>NoTeam key or default_team fallback
--description <markdown>NoProject description
--description-file <path>NoRead description from a file

project update <project-id>

Supply at least one update field.

linear-cli project update abc-123 --state completed
FlagDescription
--name <name>New project name
--description <markdown>New description
--state <state>planned, started, paused, completed, or cancelled