mirror of
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git
synced 2026-08-16 09:48:46 +00:00
- Add SECURITY.md and CODE_OF_CONDUCT.md (community health was at 50%) - Add bug/feature issue templates and a PR template - Wire the existing pytest suite under .claude/skills/*/scripts/tests into a new CI workflow; the test docstrings claimed "the existing pytest CI runs them" but no workflow actually did - Add @playwright/test to cli/ with a smoke test that loads the shipped preview/xiaomaomi-app.html and asserts no console errors - Fix a malformed SVG path (invalid `d` attribute) in preview/xiaomaomi-app.html found by that new test, replacing it with the equivalent valid paw icon path already used elsewhere in the file
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
name: Bug Report
|
|
description: Report something broken in the skill, CLI, or generated design system
|
|
labels: [bug]
|
|
body:
|
|
- type: input
|
|
id: assistant
|
|
attributes:
|
|
label: AI assistant / platform
|
|
description: Claude Code, Cursor, Windsurf, etc.
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: ui-ux-pro-max-cli version
|
|
description: Output of `npm list -g ui-ux-pro-max-cli` or `uipro --version`
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: os
|
|
attributes:
|
|
label: OS
|
|
placeholder: macOS 15 / Windows 11 / Ubuntu 24.04
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: command
|
|
attributes:
|
|
label: Exact command or prompt that triggered the bug
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected behavior
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: actual
|
|
attributes:
|
|
label: Actual behavior
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Error messages / screenshots
|
|
render: shell
|