add SKILL

This commit is contained in:
olekhondera
2026-02-14 07:38:50 +02:00
parent 327fa78399
commit 5b28ea675d
58 changed files with 1380 additions and 956 deletions

40
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@@ -0,0 +1,40 @@
---
name: Bug Report
about: Report a bug or unexpected behavior
title: "[Bug] "
labels: bug
assignees: ""
---
## Description
A clear and concise description of the bug.
## Steps to Reproduce
1. Go to '...'
2. Click on '...'
3. See error
## Expected Behavior
What you expected to happen.
## Actual Behavior
What actually happened.
## Environment
- **OS:** [e.g., macOS 15, Ubuntu 24.04]
- **Browser:** [e.g., Chrome 131, Safari 18]
- **Node.js:** [e.g., 20.x]
- **Package manager:** [e.g., pnpm 9.x]
## Screenshots / Logs
If applicable, add screenshots or error logs.
## Additional Context
Any other context about the problem.

5
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Questions & Discussions
url: https://github.com/YOUR_ORG/YOUR_REPO/discussions
about: Use Discussions for general questions instead of opening an issue.

View File

@@ -0,0 +1,23 @@
---
name: Feature Request
about: Suggest a new feature or improvement
title: "[Feature] "
labels: enhancement
assignees: ""
---
## Problem
A clear description of the problem this feature would solve.
## Proposed Solution
How you think this should work.
## Alternatives Considered
Other approaches you've thought about and why they're less suitable.
## Additional Context
Any mockups, references, or related issues.

29
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View File

@@ -0,0 +1,29 @@
## What changed and why
<!-- Brief description of the changes and motivation -->
## Type of change
- [ ] Bug fix
- [ ] New feature
- [ ] Refactoring (no functional changes)
- [ ] Documentation update
- [ ] Configuration / CI change
## Checklist
- [ ] Code follows project conventions (`RULES.md`)
- [ ] Relevant documentation updated (`docs/`, `DOCS.md`)
- [ ] Tests added/updated (if applicable)
- [ ] No secrets or credentials in the diff
- [ ] Breaking changes described below (if any)
## Breaking Changes
<!-- List any breaking changes, or write "None" -->
None
## Related Issues
<!-- Link related issues: Fixes #123, Relates to #456 -->