feat: Add continuous refactoring service and GitHub issue templates

- Add refactor.sh: Continuous service that spawns Claude Code agent teams
- Team roles: security-auditor, ux-engineer, complexity-hunter, test-engineer, issue-triager
- Focus on security, UX, complexity reduction, testing, and GitHub issue response
- Add GitHub issue template for bug reports (focused on error logs)
- Auto-triages and responds to issues within 1 hour

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Sprite 2026-02-08 05:53:31 +00:00
parent a760831d8c
commit 2c7ed48560
8 changed files with 877 additions and 0 deletions

54
.github/ISSUE_TEMPLATE/bug_report.yml vendored Normal file
View file

@ -0,0 +1,54 @@
name: Bug Report
description: Report an error or unexpected behavior
title: "[Bug]: "
labels: ["bug", "needs-triage"]
body:
- type: markdown
attributes:
value: |
Thanks for reporting! Please paste the full error log or run output below.
- type: textarea
id: error-log
attributes:
label: Error Log / Run Output
description: Paste the complete terminal output showing the error
placeholder: |
$ spawn claude sprite
[error output here...]
render: shell
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What did you expect to happen?
placeholder: I expected the agent to launch successfully
validations:
required: false
- type: textarea
id: environment
attributes:
label: Environment
description: |
Run these commands and paste the output:
- spawn version
- uname -a
placeholder: |
spawn v1.0.0
Darwin 23.1.0
render: shell
validations:
required: false
- type: textarea
id: additional
attributes:
label: Additional Context
description: Any other details that might help
placeholder: This only happens when using --prompt flag
validations:
required: false