用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ayutaz/piper-plus --skill precheck命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | precheck |
| description | PR 作成前の lint + format + test 一括実行。引数で scope (python/rust/cs/go/js/cpp/all) を指定可能。未指定なら git diff から自動判定。 |
| argument-hint | [python|rust|cs|go|js|cpp|all] |
| disable-model-invocation | true |
| allowed-tools | Bash(uv run *) Bash(cargo *) Bash(dotnet *) Bash(go test *) Bash(go vet *) Bash(node *) Bash(npm *) Bash(cmake *) Bash(ctest *) Bash(git diff *) Bash(git status *) |
$ARGUMENTS で指定されたスコープに対して、CI が実行するチェックと同等の検査をローカルで実行します。
!git diff --name-only HEAD 2>/dev/null | head -30
引数 $ARGUMENTS:
python → src/python/ + src/python_run/ のみrust → src/rust/ のみcs → src/csharp/ のみgo → src/go/ のみjs → src/wasm/openjtalk-web/ のみcpp → src/cpp/ のみall → 全ランタイムgit diff の結果からスコープを推定 (複数該当ならそれら全て)# Lint
uv run ruff check src/python_run/ src/python/
# Format check
uv run ruff format --check src/python_run/ src/python/
# Unit tests (runtime + g2p)
cd src/python_run && uv run pytest tests/ -o addopts="" --tb=short -q && cd ../..
cd src/rust
cargo fmt --all -- --check
cargo clippy --workspace --all-features -- -D warnings
cargo test -p piper-plus --no-fail-fast
cd ../..
dotnet build src/csharp/PiperPlus.sln -c Release --nologo
dotnet format src/csharp/PiperPlus.sln --verify-no-changes --no-restore
dotnet test src/csharp/PiperPlus.sln -c Release --no-build --nologo --verbosity minimal
cd src/go
go vet ./... ./phonemize/...
go test -race -count=1 ./... ./phonemize/...
cd ../..
cd src/wasm/openjtalk-web
npm run test:npm-package:all
cd ../../..
cmake --build build --config Release
ctest --test-dir build -C Release --output-on-failure
各ステップ完了後、以下の形式で結果を報告:
## Precheck 結果
| ステップ | 結果 | 詳細 |
|---------|------|------|
| Python ruff check | ✅ / ❌ | (失敗時はエラー要約) |
| Python ruff format | ✅ / ❌ | |
| Python pytest | ✅ / ❌ | (passed/failed/skipped カウント) |
| ... | ... | ... |
uv run ruff format src/python_run/ src/python/ で自動修正uv run ruff check --fix src/python_run/ src/python/ で自動修正dotnet format src/csharp/PiperPlus.sln で自動修正--cov が含まれていて pytest-cov が無い環境では -o addopts="" で上書きする (CLAUDE.md memory)set -e 相当)基于 SOC 职业分类