Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.crewship.ai/llms.txt

Use this file to discover all available pages before exploring further.

crewship issue

Manage issues — Linear-style issue tracking integrated with agent dispatch.
crewship issue <subcommand> [flags]
Alias: crewship issues

Subcommands

CommandDescription
listList issues in the workspace
getShow issue details
createCreate a new issue
updateUpdate an issue
deleteDelete an issue
commentAdd a comment to an issue
labelsList workspace labels
startStart an issue (dispatch to assigned agent)
stopStop an issue (cancel running tasks)
reviewReview an issue (approve or request changes)

crewship issue list

List issues in the workspace with optional filters.
crewship issue list
crewship issue list --status IN_PROGRESS --crew backend-team
crewship issue list --priority high --label bug
crewship issue list --search "auth flow"
FlagTypeDefaultDescription
--statusstringFilter by status: BACKLOG, TODO, IN_PROGRESS, REVIEW, DONE, FAILED, CANCELLED, DUPLICATE.
--prioritystringFilter by priority: none, low, medium, high, urgent.
--crewstringFilter by crew slug or ID.
--assigneestringFilter by assignee ID.
--labelstringFilter by label name.
--searchstringSearch issues by title or description.
--limitint50Maximum number of issues to return.
Output columns: ID, TITLE, STATUS, PRIORITY, ASSIGNEE, CREW, LABELS, UPDATED

crewship issue get

Show issue details including comments.
crewship issue get <identifier>
crewship issue get BE-42
The identifier can be the issue identifier (e.g., BE-42) or the full ID. Output fields: Identifier, Title, Status, Priority, Crew, Assignee, Assignee Type, Description, Due Date, Mission Type, Labels, Comments count, Created, Updated, ID. Comments are displayed below the detail section.

crewship issue create

Create a new issue.
crewship issue create --crew backend-team --title "Fix login bug" --priority high
crewship issue create --crew backend-team --title "Add caching" --assignee viktor --labels <label-id>
FlagTypeDefaultDescription
--crewstring(required)Crew slug or ID.
--titlestring(required)Issue title.
--descriptionstringIssue description.
--prioritystringnonePriority: none, low, medium, high, urgent.
--assigneestringAssignee agent slug or user email.
--assignee-typestringagentAssignee type: agent or user.
--labelsstringComma-separated label IDs.
--due-datestringDue date in ISO 8601 format.

crewship issue update

Update an issue. Only changed flags are sent.
crewship issue update <identifier> --status IN_PROGRESS
crewship issue update BE-42 --priority urgent --assignee franta
FlagTypeDefaultDescription
--titlestringNew title.
--descriptionstringNew description.
--statusstringNew status: BACKLOG, TODO, IN_PROGRESS, REVIEW, DONE, FAILED, CANCELLED, DUPLICATE.
--prioritystringNew priority: none, low, medium, high, urgent.
--assigneestringNew assignee (agent slug).
--assignee-typestringAssignee type: agent or user.
--due-datestringDue date (ISO 8601).

crewship issue delete

Delete an issue. Prompts for confirmation.
crewship issue delete <identifier>
crewship issue delete BE-42 --yes
FlagShortTypeDefaultDescription
--yes-yboolfalseSkip confirmation prompt.

crewship issue comment

Add a comment to an issue.
crewship issue comment <identifier> This is a comment
crewship issue comment BE-42 --body "Detailed comment here"
The comment body can be passed as positional arguments after the identifier, or via the --body flag (which takes precedence).
FlagTypeDefaultDescription
--bodystringComment body (alternative to positional args).

crewship issue labels

List all workspace labels.
crewship issue labels
Output columns: NAME, COLOR, GROUP

crewship issue start

Start an issue — dispatches work to the assigned agent.
crewship issue start <identifier>
crewship issue start BE-42

crewship issue stop

Stop an issue — cancels running tasks.
crewship issue stop <identifier>
crewship issue stop BE-42

crewship issue review

Review an issue — approve or request changes.
crewship issue review BE-42 --action approve
crewship issue review BE-42 --action request_changes --comment "Needs more tests" --reassign franta
FlagTypeDefaultDescription
--actionstring(required)Review action: approve or request_changes.
--commentstringReview comment.
--reassignstringAgent slug to reassign to (for request_changes).