skills/issue-maker/issue-maker/SKILL.md
Create GitHub issues following Pollinations team conventions. Use when asked to create issues, track work, or plan features.
npx skillsauth add aiagentskills/skills issue-makerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Turn any user request into GitHub issues following team conventions.
pollinations/pollinationsBefore creating any issues:
# Check @eulervoid's PRs for style inspiration (concise, bullet-point format)
gh search prs --repo pollinations/pollinations --author eulervoid --limit 5
# Search existing issues for patterns
gh search issues --repo pollinations/pollinations "KEYWORD" --limit 5
List all planned issues:
gh issue create --repo pollinations/pollinations \
--title "EMOJI Short clear title" \
--body "- Bullet point 1
- Bullet point 2
- Bullet point 3" \
--assignee HANDLE \
--label "LABEL"
Provide Discord-compatible summary:
| Name | GitHub | Domain | | ------ | --------------- | ------------------------- | | Thomas | @voodoohop | General, Models, Infra | | Joshua | @eulervoid | Pollen, Backend, Auth | | Elliot | @elliotetag | Community, Newsletter, UI |
| Label | Use Case |
| ----------------- | -------------------------------------------------- |
| TRACKING | Meta/planning issues that track multiple sub-tasks |
| NEWS | Community announcements and updates |
| ext-issue | External user requests (tier upgrades, etc.) |
| app:review | New project submission (under review) |
| app:info-needed | Submission awaiting user response |
| app:approved | Project approved and merged |
| app:denied | Submission rejected |
- Adds X to Y
- Fix Z by doing W
- Related: #1234
## Overview
Brief description
## Tasks
- [ ] Task 1
- [ ] Task 2
- [ ] Task 3
## Related
- #issue1
- #issue2
- Upgrade @USERNAME to TIER tier
- Qualification: [reason]
- Related: #original_request_issue
repo:pollinations/pollinations author:eulervoidCreate simple issue:
gh issue create --repo pollinations/pollinations \
--title "🔧 Fix caching header for image service" \
--body "- Update cache-control header
- Add proper ETag support
- Related: #4100" \
--assignee voodoohop
Create tracking issue:
gh issue create --repo pollinations/pollinations \
--title "📋 TRACKING: Q4 Model Updates" \
--body "## Overview
Track all model-related updates for Q4
## Tasks
- [ ] Add Claude Sonnet 4.5
- [ ] Update pricing tiers
- [ ] Deprecate old models" \
--label "TRACKING" \
--assignee voodoohop
Comment on issue:
gh issue comment 1234 --repo pollinations/pollinations \
--body "✅ Done! Merged in #5678"
documentation
Guides using bun.sys for system calls and file I/O in Zig. Use when implementing file operations instead of std.fs or std.posix.
development
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas
development
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas
development
Guides writing HMR/Dev Server tests in test/bake/. Use when creating or modifying dev server, hot reloading, or bundling tests.