diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..3f05027f0 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,8 @@ +# Global ownership — auto-request review from Paul on every PR +* @paulbakaus + +# Build system +scripts/ @paulbakaus + +# Source content (skills & commands) +source/ @paulbakaus diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..c9b948840 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Something isn't working as expected +title: "[Bug] " +labels: bug +assignees: '' +--- + +## What happened? + + + +## Steps to reproduce + +1. +2. +3. + +## Expected behavior + + + +## Provider & environment + +- **Provider** (Cursor / Claude Code / Gemini CLI / Codex): +- **Provider version**: +- **OS**: + +## Additional context + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..c944acf08 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,27 @@ +--- +name: Feature request +about: Suggest a new command, skill reference, or improvement +title: "[Feature] " +labels: enhancement +assignees: '' +--- + +## What problem does this solve? + + + +## Proposed solution + + + +## Provider(s) this applies to + +- [ ] Cursor +- [ ] Claude Code +- [ ] Gemini CLI +- [ ] Codex CLI +- [ ] All providers + +## Alternatives considered + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..187df633c --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,21 @@ +## Summary + + + +## Type of change + +- [ ] New command +- [ ] New / updated skill reference +- [ ] New anti-pattern guidance +- [ ] Bug fix +- [ ] Documentation update +- [ ] Build system / tooling +- [ ] Other: + +## Checklist + +- [ ] Source files updated in `source/` +- [ ] `bun run build` ran successfully +- [ ] `bun test` passes +- [ ] Tested with at least one provider (Cursor / Claude Code / Gemini CLI / Codex) +- [ ] README / DEVELOP.md updated if needed