skills/github-issues/SKILL.md
Create GitHub issues in Spanish following project conventions: structured sections, conventional title prefixes, and consistent labeling. Trigger: When creating GitHub issues, reporting bugs, or proposing features via gh CLI.
npx skillsauth add 333-333-333/agents github-issuesInstall 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.
All issue titles and bodies MUST be written in Spanish (Chile). Code references, file paths, and technical terms may remain in English.
Issue titles follow conventional-commit style prefixes:
| Type | When | Example |
|------|------|---------|
| feat: | New functionality | feat: publicar artefactos de contenedor desde main |
| feat(scope): | Scoped feature | feat(ci): pipeline de despliegue a Cloud Run |
| fix: | Bug report | fix: webhook de Discord falla con error 'sender is required' |
| chore: | Maintenance | chore: actualizar dependencias de Node |
| docs: | Documentation | docs: agregar guía de contribución |
| refactor: | Code improvement | refactor: extraer lógica de validación |
Use the appropriate template based on issue type:
See assets/issue-template-feat.md for the feature template.
See assets/issue-template-bug.md for the bug template.
Apply the most appropriate label from the repository's existing labels:
| Label | When |
|-------|------|
| enhancement | feat: issues |
| bug | fix: issues (bugs) |
| documentation | docs: issues |
gh issue create --title "feat: ..." --label enhancement --body "$(cat <<'EOF' ... EOF)"
gh issue create --title "fix: ..." --label bug --body "$(cat <<'EOF' ... EOF)"
gh issue list --limit 10 # review existing issues for style
testing
Review Flutter components and screens for UX/UI compliance. Trigger: When user invokes /ux-review command or requests UX audit.
development
TypeScript strict patterns and best practices. Trigger: When implementing or refactoring TypeScript in .ts/.tsx (types, interfaces, generics, const maps, type guards, removing any, tightening unknown).
testing
Testing philosophy and strategy for every feature: test pyramid, mandatory levels per change type, completion checklist, and skill delegation. Trigger: When planning tests for a feature, reviewing test coverage, defining acceptance criteria, or asking what tests a change needs.
development
Terraform security practices: sensitive variables, secret management, state protection, .gitignore patterns, and CI/CD credential handling. Trigger: When handling secrets in Terraform, configuring state backends, reviewing .gitignore for Terraform, or setting up CI/CD pipelines for infrastructure.