Agent skill
GitHub Issues
Check all your repos for new open issues in the last 24 hours
Install this agent skill to your Project
npx add-skill https://github.com/aaronjmars/aeon/tree/main/skills/github-issues
SKILL.md
${var} — Specific repo (owner/repo) to check. If empty, checks all repos.
Read memory/MEMORY.md for context. Read the last 2 days of memory/logs/ to avoid repeating items.
Steps
-
Get repos to check:
- If
${var}is set, use that repo directly (e.g.owner/repo). - Otherwise, get all repos for the authenticated user:
bashgh repo list --limit 100 --json nameWithOwner,hasIssuesEnabled --jq '.[] | select(.hasIssuesEnabled) | .nameWithOwner' - If
-
For each repo with issues enabled, check for issues opened in the last 24 hours:
bashYESTERDAY=$(date -u -d "yesterday" +%Y-%m-%dT00:00:00Z 2>/dev/null || date -u -v-1d +%Y-%m-%dT00:00:00Z) gh issue list -R OWNER/REPO --state open --json number,title,createdAt,author,labels \ --jq '.[] | select(.createdAt > "'"$YESTERDAY"'")' -
Deduplicate against recent logs — never alert on the same issue twice.
-
Send via
./notify:*GitHub Issues — ${today}* repo-name: #N Issue title (@author) repo-name: #M Another issue (@author)If no new issues across any repo, skip the notification entirely — do not send anything.
-
Log to memory/logs/${today}.md. If no new issues, log "GITHUB_ISSUES_OK" and end.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
Polymarket
Trending and top markets on Polymarket — volume, new markets, biggest movers
Daily Article
Research trending topics and write a publication-ready article
DeFi Monitor
Check pool health, positions, and yield rates for tracked protocols
Skill Evals
Evaluate skill output quality against assertion manifests — detects regressions before users notice
Monitor Polymarket
Monitor specific prediction markets for 24h price moves, volume changes, and fresh comments
Self Review
Weekly audit of what Aeon did, what failed, and what to improve
Didn't find tool you were looking for?