mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
Adds the public-facing community engagement infrastructure. CONTRIBUTING.md introduces a three-tier rewards program (sticker / t-shirt / hoodie) gated on merged PRs, with explicit eligibility rules to keep the program sustainable. Fulfillment is handled by emailing support@kaelio.com. The .github/ISSUE_TEMPLATE/ forms give structure to bug reports and feature requests, and config.yml routes questions to the KTX Slack instead of GitHub Discussions (matching the routing established in docs-site/.../support.mdx). The triage-issues workflow applies a needs-triage label only when the issue author isn't OWNER, MEMBER, or COLLABORATOR — so internal issues stay clean while external contributions get queued for maintainer review. The first 14 connector contribution issues (#161-174) have been filed using these labels and reward tiers. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: Feature request
|
|
description: Propose a new feature or improvement
|
|
title: "[feature] "
|
|
labels: ["enhancement"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
For bug reports, use the bug template. For questions, use the
|
|
[KTX Slack](https://join.slack.com/t/ktxcommunity/shared_invite/zt-3y9b44m1x-LVyNNJD5nwaZHq4XS29LMQ).
|
|
- type: textarea
|
|
id: request
|
|
attributes:
|
|
label: What do you want, and why?
|
|
description: Describe the problem and your proposed solution.
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: area
|
|
attributes:
|
|
label: Which area?
|
|
options:
|
|
- CLI / setup
|
|
- Connectors
|
|
- Context engine
|
|
- Python semantic layer
|
|
- Python daemon
|
|
- Docs
|
|
- Other
|
|
validations:
|
|
required: true
|
|
- type: checkboxes
|
|
id: contribute
|
|
attributes:
|
|
label: Want to contribute this?
|
|
options:
|
|
- label: Yes, I'd like to open a PR
|
|
- label: I'd like guidance, then I'll open a PR
|
|
- label: No, just reporting the idea
|