ワンクリックで
deploy-check
Pre-release verification workflow - version, security audit, performance, cross-platform builds, documentation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Pre-release verification workflow - version, security audit, performance, cross-platform builds, documentation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | deploy-check |
| description | Pre-release verification workflow - version, security audit, performance, cross-platform builds, documentation. |
| disable-model-invocation | true |
| argument-hint | [security|perf|docs|release] |
Run pre-release verification. Focus area: $ARGUMENTS
grep version Cargo.toml
cargo audit
cargo outdated --exit-code 1
cargo build --release
ls -lh target/release/claudelytics
cargo bench
cargo build --release --target x86_64-unknown-linux-gnu
cargo build --release --target x86_64-unknown-linux-musl
cargo build --release --target x86_64-pc-windows-msvc
cargo build --release --target x86_64-apple-darwin
cargo build --release --target aarch64-apple-darwin
cargo doc --no-deps succeedsshasum -a 256 target/release/claudelytics-*
cargo test --release)Run full quality gate before release — fmt, clippy, test, mutants, similarity, coupling.
Run cargo-coupling and similarity-rs to identify refactoring targets, then create a prioritized plan.
Systematic bug investigation and fix workflow. Use when fixing bugs, investigating issues, or debugging test failures.
Development environment setup - Rust toolchain, cross-compilation targets, dependencies, git hooks, IDE config.
Split complex tasks into sequential steps with parallel subtasks. Use for multi-step workflows needing dependency ordering and adaptive planning.
Comprehensive quality assurance - tests, linting, formatting, code analysis, and release build verification.