(body)
| 379 | } |
| 380 | |
| 381 | function looksLikeCodexReviewItem(item, authorHint = 'codex') { |
| 382 | const author = String(itemAuthor(item)).toLowerCase(); |
| 383 | const body = String(itemBody(item)).toLowerCase(); |
| 384 | const hint = String(authorHint || 'codex').toLowerCase(); |
| 385 | return author.includes(hint) || body.includes('@codex') || body.includes('codex review'); |
| 386 | } |
| 387 |