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
77 changes: 77 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: 🐛 Bug Report
description: Report a bug or unexpected behavior
title: "[Bug]: "
labels: ["bug", "triage"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to report a bug! Please fill out the form below.

- type: textarea
id: description
attributes:
label: Description
description: A clear description of what the bug is.
placeholder: What happened?
validations:
required: true

- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. Run `git-msg generate --dry-run`
2. See error...
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What did you expect to happen?
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened?
validations:
required: true

- type: input
id: version
attributes:
label: git-msg Version
description: Output of `git-msg --version`
placeholder: "v0.1.0"
validations:
required: true

- type: dropdown
id: os
attributes:
label: Operating System
options:
- macOS
- Linux
validations:
required: true

- type: textarea
id: logs
attributes:
label: Logs / Error Output
description: Any relevant error messages or logs.
render: shell

- type: textarea
id: additional
attributes:
label: Additional Context
description: Any other context about the problem.
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: 💬 Discussions
url: https://github.com/madstone-tech/git-msg/discussions
about: Ask questions and discuss ideas
- name: 📖 Documentation
url: https://github.com/madstone-tech/git-msg#readme
about: Read the documentation
53 changes: 53 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: ✨ Feature Request
description: Suggest a new feature or enhancement
title: "[Feature]: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thanks for suggesting a feature! Please describe your idea below.

- type: textarea
id: problem
attributes:
label: Problem Statement
description: What problem does this feature solve?
placeholder: I'm always frustrated when...
validations:
required: true

- type: textarea
id: solution
attributes:
label: Proposed Solution
description: Describe the solution you'd like.
placeholder: It would be great if git-msg could...
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Alternatives Considered
description: Any alternative solutions or workarounds you've considered?

- type: dropdown
id: interface
attributes:
label: Which area would this affect?
multiple: true
options:
- generate (commit message generation)
- config (configuration management)
- prompt (template management)
- hook (git hook lifecycle)
- LLM provider (new provider or provider behaviour)
- Setup wizard
- Other

- type: textarea
id: additional
attributes:
label: Additional Context
description: Any other context, mockups, or examples.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.5.0
version: v2.11.3

constitution:
name: Constitution Audit
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,9 @@ Thumbs.db

# Logs
*.log

# Internal development tooling (local only)
.opencode/
.specify/
specs/
.claude/
1 change: 0 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ version: "2"

run:
timeout: 5m
go: "1.26"
tests: false

linters:
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ release:
sudo mv git-msg /usr/local/bin/

# Or using Go
go install github.com/madstone0-0/git-msg@{{ .Tag }}
go install github.com/madstone-tech/git-msg@{{ .Tag }}

# Or using Homebrew
brew tap madstone-tech/tap
Expand Down
184 changes: 0 additions & 184 deletions .opencode/command/speckit.analyze.md

This file was deleted.

Loading
Loading