Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,19 @@ atl --context prod jira issue transition PROJ-1234 "Done" --field "Resolution=Fi
atl --context prod jira issue comment list PROJ-1234 # List comments
atl --context prod jira issue comment add PROJ-1234 --body "Comment" # Add comment
atl --context prod jira issue comment add PROJ-1234 --body-file msg.md # Add from file (avoids shell escaping)
atl --context prod jira issue comment add PROJ-1234 --reply-to 123 --body "Reply"
atl --context prod jira issue comment edit PROJ-1234 --id 123 --body "Updated"
atl --context prod jira issue comment edit PROJ-1234 --id 123 --body-file msg.md
atl --context prod jira issue comment delete PROJ-1234 --id 123
```

`--reply-to` creates a new flat Jira comment containing a real mention of the
original author and a focused-comment link. It does not quote or duplicate the
original comment. For manually authored bodies, use Markdown links
`[label](https://example.com)` and real mentions `@[Display Name]` or
`@[id:accountId]`. Jira wiki links `[label|url]` remain literal, and plain
`@Display Name` does not notify the user.

### Issue Links

```bash
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func main() {
| Strikethrough | `~~deleted~~` |
| Inline code | `` `code` `` |
| Code blocks | ` ``` ` with optional language |
| Links | `[text](url)` |
| Links | `[text](url)` (Jira wiki `[text|url]` is not supported) |
| Bullet lists | `- item` or `* item` |
| Numbered lists | `1. item` |
| Blockquotes | `> quote` |
Expand Down Expand Up @@ -231,6 +231,11 @@ atl --context prod jira issue attachment <key> --download-all # Download
atl --context prod jira issue attachment <key> --download-all -o ./dir # Download to directory
```

`issue comment add --reply-to` creates a new flat Jira comment, mentions
the original author, and links to the focused original comment. It does not
copy the original body into the reply. For manually authored comments, plain
`@Display Name` is only text; use `@[Display Name]` for a real Jira mention.

### Boards

```bash
Expand Down
97 changes: 0 additions & 97 deletions internal/api/adf_quote.go

This file was deleted.

Loading