diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml
new file mode 100644
index 0000000..e257a0f
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug.yml
@@ -0,0 +1,49 @@
+name: 🐛 Bug Report
+description: Create a bug report to help us improve
+title: 'bug:
'
+labels: ["bug"]
+body:
+ - type: input
+ id: version
+ attributes:
+ label: Version
+ description: Which version of Chronos are you using?
+ placeholder: "Example: vX.Y"
+ validations:
+ required: true
+ - type: input
+ id: device
+ attributes:
+ label: Device
+ description: Which device are you using?
+ placeholder: "Example: iPhone 16"
+ validations:
+ required: true
+ - type: input
+ id: os_version
+ attributes:
+ label: OS
+ description: Which iOS/iPadOS version is your device on?
+ placeholder: "Example: iOS vX.Y.Z"
+ validations:
+ required: true
+ - type: textarea
+ id: description
+ attributes:
+ label: Description
+ description: A clear and concise description of what the bug is.
+ validations:
+ required: true
+ - type: textarea
+ id: reproduction_steps
+ attributes:
+ label: Steps to reproduce
+ validations:
+ required: true
+ - type: textarea
+ id: additional_info
+ attributes:
+ label: Additional information
+ description: If applicable, list any other relevant information such as stack traces, related issues, etc.
+ validations:
+ required: false
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000..ec4bb38
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1 @@
+blank_issues_enabled: false
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml
new file mode 100644
index 0000000..e4735f9
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature.yml
@@ -0,0 +1,17 @@
+name: 🚀 Feature Request
+description: Request a feature or enhancement.
+title: 'feat: '
+labels: ['enhancement']
+body:
+ - type: textarea
+ attributes:
+ label: Description
+ description: A description of what the feature does.
+ validations:
+ required: true
+ - type: textarea
+ attributes:
+ label: Motivation
+ description: What problem does this feature solve?
+ validations:
+ required: true