소스 정보
- 저장소
- fabioc-aloha/ai-wallpaper-generator
- 최근 소스 활동
- 2026년 2월 21일 01:22
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/fabioc-aloha/ai-wallpaper-generator --skill release-preflight-skill명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Defense-in-depth, PII protection, secrets scanning, and secure packaging for distributed software
Systematic testing for confidence without over-testing — the right test at the right level
Generate consistent visual character references across multiple scenarios using Flux and nano-banana-pro on Replicate
SOC 직업 분류 기준
SKILL.md 표시 중
| name | Release Preflight Skill |
| description | Pre-checks, version consistency, and deployment discipline. |
| applyTo | **/*release*,**/*publish*,**/*deploy*,**/*version*,**/package.json,**/CHANGELOG* |
Pre-checks, version consistency, and deployment discipline.
NEVER publish without running the preflight checklist.
# Full preflight check
scripts/release-preflight.ps1
# With packaging test
scripts/release-preflight.ps1 -Package
# Skip time-consuming tests
scripts/release-preflight.ps1 -SkipTests
| # | Location | Field | Example |
|---|---|---|---|
| 1 | platforms/vscode-extension/package.json | version | "5.1.0" |
| 2 | CHANGELOG.md | Latest heading | ## [5.1.0] - 2026-02-07 |
| 3 | .github/copilot-instructions.md | **Version**: line | **Version**: 5.1.0 |
| 4 | platforms/vscode-extension/.github/copilot-instructions.md | Same as #3 | |
| 5 | docs/index.html | Footer version | v5.1.0 |
| 6 | ROADMAP-UNIFIED.md | Quick Status table | Master 5.1.0 row |
| 7 | Git tag | Tag name | v5.1.0 |
| Gate | Check | Script Flag |
|---|---|---|
| 0 | PAT configured | Always |
| 1 | Version sync (all 7 locations) | Always |
| 2 | Build passes | Always |
| 3 | Lint passes | Always |
| 4 | Tests pass | -SkipTests to skip |
| 5 | Package creates | -Package to include |
| 6 | Human review | Manual |
# VS Code Extension release
scripts/release-vscode.ps1 -BumpType minor
# M365 Agent release
scripts/release-m365.ps1 -Validate
# 1. Bump
npm version patch --no-git-tag-version
# 2. Get version
$v = (Get-Content package.json | ConvertFrom-Json).version
# 3. Update CHANGELOG, commit, tag, push
git add -A; git commit -m "release: v$v"; git tag "v$v"; git push --tags
| Mistake | Prevention |
|---|---|
| Published without version bump | Run preflight first |
| CHANGELOG not updated | Script checks this |
| Forgot to push tags | Script does this |
| Version mismatch | Grep entire repo for old version |
| PAT 401 error | Refresh PAT before release |
| Script | Purpose |
|---|---|
scripts/release-preflight.ps1 | Pre-release validation |
scripts/release-vscode.ps1 | Full VS Code release |
scripts/release-m365.ps1 | M365 agent packaging |
.github/muscles/build-extension-package.ps1 | Full build (sync + compile + PII scan) |
.github/muscles/sync-architecture.js | Canonical Master → Heir sync |
Scripts: scripts/release-preflight.ps1, scripts/release-vscode.ps1