GPT-5 finding
Dedup check example omits the required 7-day time window filter
mediumdocs-gaphigh
- skills/pr-triage/SKILL.md:78-81
The text requires skipping only if a triage comment was posted within the last 7 days, but the provided gh/jq example returns all triage comment timestamps without date filtering. This invites incorrect implementations that over-skip older PRs.
Recommendation
Amend the example to demonstrate date filtering or make explicit that the timestamp must be compared to now-7d in code. For example: pipe to jq with a comparison against (now-7d) or document that the CLI output must be post-filtered by the client.