magnet issues command group works with issues in your workspace. Content is exchanged as markdown.
magnet issues list
List issues, optionally filtered by a search query.| Option | Description |
|---|---|
--search <query> | Search query. |
--limit <n> | Page size (default from API). Use with --cursor for pagination. |
--cursor <c> | Pagination cursor (use pagination.nextCursor from the previous response). |
magnet issues get
Get an issue by ID. Returns the issue with its content as markdown (docContent).
| Option | Description |
|---|---|
--preview-only | Return a truncated markdownPreview instead of the full body. |
magnet issues create
Create an issue from markdown.| Option | Description |
|---|---|
--description <text> | Issue description (markdown). Required. |
--title <text> | Issue title. |
--base-branch <branch> | Base branch name. Defaults to main. |
magnet issues update
Update an issue’s title, status, or assignee.| Option | Description |
|---|---|
--title <text> | New title. |
--status <status> | One of todo, in_progress, done, blocked. |
--assignee-clerk-id <id> | Clerk user ID to assign. |
--skip-yjs-sync | Skip syncing to Yjs (e.g. for bulk updates). |