来源信息
- 仓库
- duobaseio/forui
- 最近来源活动
- 2026年8月24日 10:29
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 2,352
- 分支
- 134
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- release-all
- description
- Prepare, PR, and release all packages at the same version
- argument-hint
- <version>
- disable-model-invocation
- true
Release all packages (forui_lucide, forui_phosphor, forui, forui_hooks) at version $0.
## Step 1: Prepare
Run `make prepare-all v=$0`. If it fails, report the error and stop.
## Step 2: Commit & PR
1. Create a release branch: `git checkout -b release/$0`
2. Stage and commit all changes: `git add -A && git commit -m "Prepare to release $0"`
3. Push and create a PR:
```
git push -u origin release/$0
gh pr create --title "Prepare to release $0" --body "Prepare to release forui_lucide, forui_phosphor, forui, and forui_hooks $0."
```
## Step 3: Wait for CI
Run `gh pr checks --watch`. If any check fails, report which checks failed and stop.
## Step 4: Merge
Tell me that CI passed and ask for approval to merge. Once I approve, run:
```
gh pr merge --squash --admin --delete-branch
git checkout main && git pull
```
## Step 5: Release
Run `make release-all v=$0 force=true`.
在 GitHub 查看