소스 정보
- 저장소
- lablup/backend.ai-webui
- 최근 소스 활동
- 2026년 7월 9일 07:41
- 감지된 SKILL.md 언어
- 영어
- 스타
- 133
- 포크
- 82
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/lablup/backend.ai-webui --skill bump-alpha-version명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Standing rules for fixing a visual or behavioural regression on the Astryx UI: check the tracked issue's assignee before starting (proceed only when it is you or nobody — claim an unassigned one, stop and report when someone else holds it), measure before you fix, theme-defaults-first (with the exact THEME_NAME_REV bump + `astryx theme build` artifact regeneration + wrapper and mirror updates), Astryx-canonical composition over hand-rolled CSS, `astryx component <Name>` discovery over guessing, tokens-only enforced by `scripts/migration-gates/astryx-token-gate.mjs`, the known traps (stale theme artifacts, stale BUI dist, Grid child overflow, Table bleed, Tooltip `display:contents`, MediaTheme leaking into native `<dialog>`), and the verification bar (verify.sh + vitest + live light/dark probe), and shipping the fix through to an open draft PR (branch, scratch cleanup, commit, `Resolves #N (FR-N)` body carrying the measured evidence). Use whenever someone reports a visual or behavioural regression on the Astry
File a UI/UX observation about the Astryx UI into the reporting epic FR-3491 — capture only, never fix. Classifies it as visual (layout/spacing/color drift), behavioral (a component does not work), or discussion (it may be intended, or a better alternative is proposed — needs a team decision), enforces the minimum context (where + observed + expected, or the open question), asks the reporter once for anything missing, does a bounded read-only lookup, scans for duplicates and links related reports. Use when someone reports something wrong with — or questionable about — the UI and wants it recorded rather than fixed: "이거 리포팅해줘", "버그 등록해줘", "이 페이지 UI가 틀어졌어", "이 버튼이 안 눌려", "이거 원래 이런 건가요?", "이게 맞는 동작인지 논의하고 싶어요", "astryx 버그", "file this UI bug", "log this regression", "open a discussion about this UI", "/astryx-bug-report". If the ask is to fix it *now*, use `astryx-fix`.
Manage stacked branches and pull requests with the gh-stack GitHub CLI extension. Use when the user wants to create, push, rebase, sync, navigate, or view stacks of dependent PRs. Triggers on tasks involving stacked diffs, dependent pull requests, branch chains, or incremental code review workflows.
| name | bump-alpha-version |
| description | Bump version to next alpha and update dependencies after release. |
| argument-hint | ["26.1.0-alpha.0"] |
| model | sonnet |
| disable-model-invocation | true |
After a release, this command updates the project to the next alpha version and updates all dependencies within semver-compatible ranges.
$ARGUMENTS specifies the new alpha version (e.g., 26.1.0-alpha.0).
If no version is specified, automatically determine the next version options:
Read current version from root package.json
Parse the version: Extract MAJOR.MINOR.PATCH (ignore any existing prerelease suffix)
Generate three options for the user to choose from:
MAJOR.MINOR.(PATCH+1)-alpha.0 (e.g., 26.1.1-alpha.0)MAJOR.(MINOR+1).0-alpha.0 (e.g., 26.2.0-alpha.0)(MAJOR+1).1.0-alpha.0 (e.g., 27.1.0-alpha.0)Use AskUserQuestion to let the user select:
AskUserQuestion({
questions: [{
question: "Which version bump do you want for the next alpha release?",
header: "Version",
multiSelect: false,
options: [
{
label: "26.1.1-alpha.0 (Patch)",
description: "Patch version bump - for small fixes and updates"
},
{
label: "26.2.0-alpha.0 (Minor)",
description: "Minor version bump - for new features (Recommended)"
},
{
label: "27.1.0-alpha.0 (Major)",
description: "Major version bump - for breaking changes"
}
]
}]
})
Note: If the current version already has -alpha.N suffix, strip it before calculating the next versions.
X.Y.Z-alpha.N26.1.0-alpha.0, 26.2.0-alpha.1version field in the root /package.json to the new alpha versionmake versiontagversion.jsonindex.htmlmanifest.jsonreact/package.jsonpackages/backend.ai-ui/package.jsonelectron-app/package.jsonUpdate dependencies in the following package.json files within semver-compatible ranges:
/packages/backend.ai-ui/package.json/react/package.jsonImportant Rules:
pnpm-workspace.yaml first to check the following settings:
minimumReleaseAge: Minimum age in minutes for package versions (e.g., 10080 = 7 days)minimumReleaseAgeExclude: List of packages exempt from the minimum age rulepnpm update with appropriate flags for semver-compatible updatesRun pnpm install to update the lockfile with new dependency versions.
After updating dependencies, verify everything works correctly:
pnpm install to ensure no errors in dependency resolution# Check TypeScript errors in react package
pnpm --prefix ./react run typecheck
# Check TypeScript errors in backend.ai-ui package
pnpm --prefix ./packages/backend.ai-ui run typecheck
# Or run tsc directly if typecheck script is not available
pnpm --prefix ./react exec tsc --noEmit
pnpm --prefix ./packages/backend.ai-ui exec tsc --noEmit
If TypeScript errors occur, fix them before proceeding:
@types/* packages)Run build to ensure everything compiles:
pnpm run build
# Update root package.json version (use Edit tool)
# Propagate version to all files
make versiontag
# Update dependencies in workspace packages
pnpm update --recursive --latest --workspace
# Or update specific packages
cd react && pnpm update
cd packages/backend.ai-ui && pnpm update
# If engine constraints block:
pnpm update --ignore-engines
# Install to update lockfile
pnpm install
After completion, provide a summary including:
make versiontagUser: /bump-alpha-version 26.1.0-alpha.0
Claude:
1. Updates package.json version to 26.1.0-alpha.0
2. Runs make versiontag
3. Updates dependencies in react/ and packages/backend.ai-ui/
4. Runs pnpm install
5. Runs typecheck + build
6. Provides summary of all changes