From a2c7afe4f37bae8787fcd73affcd9b28d9da1fc5 Mon Sep 17 00:00:00 2001 From: Julius Brussee Date: Sun, 5 Apr 2026 18:26:22 +0200 Subject: [PATCH] Add contributing guide and issue templates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add GitHub issue templates for bug reports and feature requests tailored to the caveman persona, and add CONTRIBUTING.md describing how to propose changes to skills/caveman/SKILL.md (fork, edit, PR with before/after examples and rationale). These files help standardize contributions and make it easier for maintainers to review small, focused changes; also points contributors to ‘good first issue’ tasks. --- .github/ISSUE_TEMPLATE/bug_report.md | 25 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 17 +++++++++++++++ CONTRIBUTING.md | 18 ++++++++++++++++ 3 files changed, 60 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 CONTRIBUTING.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..a8ecf04 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,25 @@ +--- +name: Bug report +about: Caveman speak wrong or break +labels: bug +--- + +**What happen** + + +**Expected** + + +**Before/after example** +``` +Input: [your prompt] +Got: [what caveman said] +Want: [what caveman should say] +``` + +**Platform** +- [ ] Claude Code +- [ ] Codex +- [ ] Other: ___ + +**Version / install method** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..e8f9d9d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Make caveman better +labels: enhancement +--- + +**What you want** + + +**Before/after example** +``` +Before: [current behavior] +After: [desired behavior] +``` + +**Why good** + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..9d8620a --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,18 @@ +# Contributing + +Improvements to the SKILL.md prompt are welcome — open a PR with before/after examples showing the change. + +## How + +1. Fork repo +2. Edit `skills/caveman/SKILL.md` +3. Open PR with: + - **Before:** what caveman say now + - **After:** what caveman say with change + - One sentence why change better + +Small focused change > big rewrite. Caveman like simple. + +## Ideas + +See [issues labeled `good first issue`](../../issues?q=label%3A%22good+first+issue%22) for starter tasks.