| name | github |
| description | Strict guidelines for all GitHub operations using the `gh` CLI. Covers pull requests, secrets management, and commit conventions. Applied when working with GitHub repositories, creating PRs, managing secrets, or following commit conventions. |
GitHub Operations
MANDATORY: Always use gh CLI for all GitHub operations. Verify gh auth status before starting.
Critical Patterns
- Use
--draftfor WIP,gh pr readywhen done - Keep PRs <400 lines
- Include Summary + Test plan in PR body
- PR titles: Match branch format with JIRA ticket if present (e.g.,
TICKET-123: Add user authentication) - Provide context in descriptions
- Never commit secrets (use
gh secret set NAME --body "value")