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 notification

Manage per-user notifications. Notifications are emitted when an issue is assigned to you, a mission you’re part of changes state, an escalation is raised on your crew, and similar events.
crewship notification <subcommand> [flags]

Subcommands

CommandDescription
listList notifications for the current user.
countShow the number of unread notifications.
readMark a single notification as read.
read-allMark every notification as read.
deleteDelete a notification.

crewship notification list

crewship notification list
crewship notification list --unread
crewship notification list --limit 20
FlagTypeDefaultDescription
--unreadboolfalseShow only unread notifications.
--limitint(server default)Maximum number of rows to return. 0 uses the server default.

crewship notification count

Return the number of unread notifications for the current user — used as a status-bar ping in scripts.
crewship notification count

crewship notification read

Mark one notification as read.
crewship notification read <id>

crewship notification read-all

Mark every notification for the current user as read.
crewship notification read-all

crewship notification delete

Delete a single notification. The action is immediate — there is no confirmation prompt — so wrap in --dry-run upstream tooling if you need a check before commit.
crewship notification delete <id>
crewship notification delete <id>  # alias: remove, rm
Aliases: remove, rm.