一键导入
cuid-build-install
Build and install cuid from source. Use when: building locally, installing before tests, pre-review build verification, build + install + verify.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build and install cuid from source. Use when: building locally, installing before tests, pre-review build verification, build + install + verify.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Check and generate changelog entries for amd-smi. Use when: reviewing PRs for changelog updates, generating release notes, checking CHANGELOG.md compliance.
Use when writing or restructuring git commits or opening/updating a pull request for amd-smi — composing commit titles, commit message bodies, PR titles, or PR descriptions. Defines the Conventional Commits `type(amdsmi):` title convention enforced by the Systems PR Bot, the rocm-systems PR template sections, the unit-test and JIRA/ISSUE-reference gates, brevity caps, and the rule that JIRA tickets appear only in the PR JIRA ID section, never in code comments or commit bodies.
Use when finishing an amd-smi development branch — consolidating commits into logical groups with clean messages AND deciding how to integrate the work (merge to develop, push and open PR, keep as-is, or discard). Covers commit restructuring plus the merge/PR/cleanup workflow.
Use when an approved spec exists and you need a bite-sized, file-level implementation plan before any code is written. Produces a plan ready for executing-plans or subagent dispatch.
Build and install RDC from source. Use when: building locally, installing before tests, pre-review build verification, build + install + verify. Requires GRPC_ROOT to be set.
Use when writing, planning, or improving unit tests for low-level transport or systems code — especially when reasoning about branch coverage, test gaps, identifying which uncovered paths are worth pursuing, or deciding when a feature's test suite is ready to merge.
基于 SOC 职业分类
| name | cuid-build-install |
| description | Build and install cuid from source. Use when: building locally, installing before tests, pre-review build verification, build + install + verify. |
Builds cuid from source and installs locally. Used by the review agent as a pre-step before dispatching subagents, and can be invoked independently.
sudo access for package installAll commands assume $WORKSPACE is the cuid workspace root (where CMakeLists.txt lives).
cd "$WORKSPACE"
sudo rm -rf build
sudo rm -rf /opt/amdcuid 2>/dev/null || true
mkdir -p build && cd build
cmake ..
make -j "$(nproc)"
sudo make install
/opt/amdcuid/bin/amdcuid_tool --version
For use in scripts or as a single terminal command:
cd "$WORKSPACE" && \
sudo rm -rf build && \
mkdir -p build && cd build && \
sudo apt remove -y amdcuid 2>/dev/null || true && \
cmake .. && \
make -j "$(nproc)" && \
sudo make install && \
/opt/amdcuid/bin/amdcuid_tool --version
On success, capture and report:
/opt/amdcuid/bin/amdcuid_tool --version)On failure, capture and report: