From 610425e66211bba3ea1666433de434434c9ae709 Mon Sep 17 00:00:00 2001 From: Vaishnav Gunjari Date: Sun, 8 Mar 2026 23:03:15 +0530 Subject: [PATCH 1/2] chore: add GitHub community health files --- .github/CODEOWNERS | 8 +++++ .github/FUNDING.yml | 1 + .github/ISSUE_TEMPLATE/bug_report.md | 31 +++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 27 +++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 21 ++++++++++++ .github/workflows/ci.yml | 42 +++++++++++++++++++++++ 6 files changed, 130 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/FUNDING.yml create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/workflows/ci.yml 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/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 000000000..95574fe1a --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: 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..c9013f146 --- /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 and `dist/` is committed +- [ ] `bun test` passes +- [ ] Tested with at least one provider (Cursor / Claude Code / Gemini CLI / Codex) +- [ ] README / DEVELOP.md updated if needed diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..84349a82a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,42 @@ +name: CI + +on: + push: + branches: [main, master] + pull_request: + branches: [main, master] + +jobs: + build-and-test: + name: Build & Test + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Bun + uses: oven-sh/setup-bun@v2 + with: + bun-version: latest + + - name: Install dependencies + run: bun install + + - name: Build all provider formats + run: bun run build + + - name: Run tests + run: bun test + + - name: Verify dist output exists + run: | + echo "Verifying dist directories..." + for dir in cursor claude-code gemini codex; do + if [ -d "dist/$dir" ]; then + echo "✅ dist/$dir OK" + else + echo "❌ dist/$dir is missing!" + exit 1 + fi + done From 38fdc991c5723f63174489ae2db80fea224b2ae7 Mon Sep 17 00:00:00 2001 From: Vaishnav Gunjari Date: Wed, 11 Mar 2026 10:42:54 +0530 Subject: [PATCH 2/2] chore: remove FUNDING.yml and ci.yml, fix PR template checklist --- .github/FUNDING.yml | 1 - .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/ci.yml | 42 -------------------------------- 3 files changed, 1 insertion(+), 44 deletions(-) delete mode 100644 .github/FUNDING.yml delete mode 100644 .github/workflows/ci.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 95574fe1a..000000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -github: paulbakaus diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index c9013f146..187df633c 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -15,7 +15,7 @@ ## Checklist - [ ] Source files updated in `source/` -- [ ] `bun run build` ran successfully and `dist/` is committed +- [ ] `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 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 84349a82a..000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: CI - -on: - push: - branches: [main, master] - pull_request: - branches: [main, master] - -jobs: - build-and-test: - name: Build & Test - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Bun - uses: oven-sh/setup-bun@v2 - with: - bun-version: latest - - - name: Install dependencies - run: bun install - - - name: Build all provider formats - run: bun run build - - - name: Run tests - run: bun test - - - name: Verify dist output exists - run: | - echo "Verifying dist directories..." - for dir in cursor claude-code gemini codex; do - if [ -d "dist/$dir" ]; then - echo "✅ dist/$dir OK" - else - echo "❌ dist/$dir is missing!" - exit 1 - fi - done