# Linear Comments

> Manage issue comments - list, create, update, delete. Use when reading or posting comments on issues.

- Skill: `nesszer/linear-comments` (Agent Skill)
- Install (CLI): `npx skillmds@latest add nesszer/linear-comments`
- Raw SKILL.md: https://api.skillmd.com/api/skills/nesszer/linear-comments/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: nesszer (https://skillmd.com/u/nesszer)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/nesszer/linear-comments

---


# Comments

```bash
# List comments on an issue
linear-cli cm list ISSUE_ID
linear-cli cm list SCW-123 --output json

# Create a comment
linear-cli cm create ISSUE_ID -b "Looks good, merging!"

# Update a comment
linear-cli cm update COMMENT_ID -b "Updated text"

# Delete a comment
linear-cli cm delete COMMENT_ID --force
```

## Flags

| Flag | Purpose |
|------|---------|
| `-b BODY` | Comment body text |
| `--output json` | JSON output |
| `--force` | Skip delete confirmation |

## Exit Codes

`0`=Success, `1`=Error, `2`=Not found, `3`=Auth error

