📦 deps(thirdparty): update snapshots
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
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
|
||||
@@ -0,0 +1,29 @@
|
||||
name: Feature Request
|
||||
description: Suggest a new UI style, color palette, industry rule, stack, or CLI feature
|
||||
labels: [enhancement]
|
||||
body:
|
||||
- type: dropdown
|
||||
id: category
|
||||
attributes:
|
||||
label: Category
|
||||
options:
|
||||
- New UI style
|
||||
- New color palette
|
||||
- New industry reasoning rule
|
||||
- New tech stack support
|
||||
- CLI improvement
|
||||
- Other
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: What do you want to see added or changed?
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: motivation
|
||||
attributes:
|
||||
label: Why is this useful? (use case, example project)
|
||||
validations:
|
||||
required: true
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
## What does this PR change?
|
||||
|
||||
<!-- One or two sentences. -->
|
||||
|
||||
## Why?
|
||||
|
||||
<!-- Closes #123, or describe the problem this solves. -->
|
||||
|
||||
## Checklist
|
||||
|
||||
- [ ] Changes were made in `src/ui-ux-pro-max/` (source of truth), not directly in `.claude/` or `.factory/`
|
||||
- [ ] Ran `npm run sync:assets && npm run check:assets` in `cli/` if data/scripts/templates changed
|
||||
- [ ] Added or updated tests if behavior changed (`.claude/skills/*/scripts/tests/`, `cli/tests/e2e/`)
|
||||
- [ ] Commit messages follow [Conventional Commits](https://www.conventionalcommits.org/) (`feat:`, `fix:`, `docs:`, etc.)
|
||||
- [ ] This PR targets a feature branch, not pushed directly to `main`
|
||||
+10
-3
@@ -5,6 +5,8 @@ on:
|
||||
paths:
|
||||
- "src/ui-ux-pro-max/**"
|
||||
- "cli/assets/**"
|
||||
- ".claude/skills/ui-ux-pro-max/data/**"
|
||||
- ".claude/skills/ui-ux-pro-max/scripts/**"
|
||||
- "cli/scripts/sync-assets.mjs"
|
||||
- ".github/workflows/check-asset-sync.yml"
|
||||
push:
|
||||
@@ -12,10 +14,12 @@ on:
|
||||
paths:
|
||||
- "src/ui-ux-pro-max/**"
|
||||
- "cli/assets/**"
|
||||
- ".claude/skills/ui-ux-pro-max/data/**"
|
||||
- ".claude/skills/ui-ux-pro-max/scripts/**"
|
||||
|
||||
jobs:
|
||||
check-assets:
|
||||
name: cli/assets must match src/ui-ux-pro-max
|
||||
name: cli/assets and .claude/skills/ui-ux-pro-max must match src/ui-ux-pro-max
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -24,6 +28,9 @@ jobs:
|
||||
node-version: 20
|
||||
# check:assets runs `node scripts/sync-assets.mjs --check`, which uses only
|
||||
# node builtins (no npm install needed) and normalizes CRLF/LF before
|
||||
# hashing, so it compares content rather than line endings.
|
||||
- name: Check CLI assets are in sync with source of truth
|
||||
# hashing, so it compares content rather than line endings. It checks
|
||||
# both cli/assets/ AND .claude/skills/ui-ux-pro-max/{data,scripts} --
|
||||
# the latter is what Claude Code actually loads when this repo is
|
||||
# installed as a plugin, and previously had no sync check at all.
|
||||
- name: Check assets are in sync with source of truth
|
||||
run: npm --prefix cli run check:assets
|
||||
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
name: Tests
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- '.claude/skills/**'
|
||||
- 'cli/assets/skills/**'
|
||||
- '.github/workflows/tests.yml'
|
||||
push:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
pytest:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: '3.x'
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
|
||||
- name: Install pytest
|
||||
run: pip install pytest
|
||||
|
||||
- name: Run skill regression tests
|
||||
run: python3 -m pytest .claude/skills -v
|
||||
|
||||
- name: Install Playwright deps
|
||||
working-directory: cli
|
||||
run: |
|
||||
npm ci
|
||||
npx playwright install --with-deps chromium
|
||||
|
||||
- name: Run preview e2e smoke tests
|
||||
working-directory: cli
|
||||
run: npx playwright test
|
||||
|
||||
- name: Upload Playwright report
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: playwright-report
|
||||
path: cli/playwright-report/
|
||||
retention-days: 7
|
||||
Reference in New Issue
Block a user