mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-17 08:36:25 +03:00
chore: add GitHub community health files
This commit is contained in:
@@ -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
|
||||
@@ -0,0 +1 @@
|
||||
github: paulbakaus
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Something isn't working as expected
|
||||
title: "[Bug] "
|
||||
labels: bug
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
## What happened?
|
||||
|
||||
<!-- A clear description of the bug. -->
|
||||
|
||||
## Steps to reproduce
|
||||
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
|
||||
## Expected behavior
|
||||
|
||||
<!-- What did you expect to happen? -->
|
||||
|
||||
## Provider & environment
|
||||
|
||||
- **Provider** (Cursor / Claude Code / Gemini CLI / Codex):
|
||||
- **Provider version**:
|
||||
- **OS**:
|
||||
|
||||
## Additional context
|
||||
|
||||
<!-- Paste relevant command output, screenshots, or config snippets here. -->
|
||||
@@ -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?
|
||||
|
||||
<!-- Describe the design/UX problem you keep running into. -->
|
||||
|
||||
## Proposed solution
|
||||
|
||||
<!-- What command, skill update, or anti-pattern guidance would help? -->
|
||||
|
||||
## Provider(s) this applies to
|
||||
|
||||
- [ ] Cursor
|
||||
- [ ] Claude Code
|
||||
- [ ] Gemini CLI
|
||||
- [ ] Codex CLI
|
||||
- [ ] All providers
|
||||
|
||||
## Alternatives considered
|
||||
|
||||
<!-- Any other approaches you thought about? -->
|
||||
@@ -0,0 +1,21 @@
|
||||
## Summary
|
||||
|
||||
<!-- What does this PR change and why? -->
|
||||
|
||||
## 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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user