Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Bug report
description: Report a problem with TUIKit
labels: ["bug"]
body:
- type: textarea
attributes:
label: Describe the bug
description: A clear description of what the bug is.
validations:
required: true
- type: textarea
attributes:
label: Steps to reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. Run command ...
2. See error ...
validations:
required: true
- type: textarea
attributes:
label: Expected behavior
description: What you expected to happen.
validations:
required: true
- type: input
attributes:
label: TUIKit version or commit
description: Which version or commit SHA are you using?
validations:
required: false
- type: textarea
attributes:
label: Additional context
description: Any other context, screenshots, or logs.
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Feature request
description: Suggest an idea for TUIKit
labels: ["enhancement"]
body:
- type: textarea
attributes:
label: Describe the feature
description: A clear description of what you would like to happen.
validations:
required: true
- type: textarea
attributes:
label: Use case
description: What problem does this solve? Why is this needed?
validations:
required: true
- type: textarea
attributes:
label: Alternatives considered
description: Any alternative solutions or features you have considered.
validations:
required: false
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "bun"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
17 changes: 17 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## Summary

<!-- Brief description of what this PR does -->

## Changes

<!-- List the key changes -->

## Testing

<!-- How was this tested? -->

## Checklist

- [ ] Specs lint passes (`bun run lint`)
- [ ] Tests updated if applicable
- [ ] Documentation updated if applicable
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,3 +300,7 @@ The GitHub Actions workflow (`.github/workflows/specs-ci.yml`) runs on every PR:
For TUI design foundations — color systems, typography, iconography, layout
grids, accessibility patterns, keybinding conventions, and buffer management —
see [`docs/foundations.md`](docs/foundations.md).

## License

This project is licensed under the [MIT License](LICENSE).
Loading