ワンクリックで
build
Compile OpenFirma to verify changes build successfully. Use this after code changes and before running broader verification.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Compile OpenFirma to verify changes build successfully. Use this after code changes and before running broader verification.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Review Rust changes for correctness, robustness, documentation quality, and test coverage.
Guidelines for writing Rust tests in OpenFirma.
Write Rust tests for OpenFirma crates while avoiding redundant coverage.
Review changes ahead of opening a new PR, modifying an existing one or on demand by the user.
Edit a pre-existing GitHub pull request for OpenFirma. Use whenever you are asked to make changes to commits, branches or bookmarks that would affect an open GitHub PR.
Open a GitHub pull request for OpenFirma. Use whenever you are asked to open a PR.
| name | build |
| description | Compile OpenFirma to verify changes build successfully. Use this after code changes and before running broader verification. |
Compile OpenFirma to verify changes build successfully.
Run this skill after making code changes to ensure the workspace still compiles.
just build
For focused iteration on one crate:
cargo build -p <crate-name> --all-features
Examples:
cargo build -p firma-sidecar --all-features
cargo build -p firma-run --all-features
protoc is installed..proto and build.rs inputs.just check already includes just build, so a full PR validation does not need a separate build step.just build over ad hoc cargo invocations unless you are intentionally narrowing scope.