ソース情報
- リポジトリ
- spiriMirror/libuipc
- ソースの最終更新活動
- 2026年3月6日 07:13
- 検出された SKILL.md の言語
- 英語
- スター
- 309
- フォーク
- 63
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/spiriMirror/libuipc --skill github-prコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Build and test the libuipc project using XMake. Use when building with xmake, running xmake f / xmake build / xmake run commands, selecting release/releasedbg/debug modes, or running Catch2 tests produced by xmake.
Build and test the libuipc project using CMake. Use when building the project, running cmake configure/build commands, compiling with RelWithDebInfo, running Catch2 tests, or when the user asks how to build or test libuipc.
General simulation development best practices for correctness, stability, and debuggability. Use when implementing or modifying simulation systems, solvers, constraints, or GPU kernels, especially for index safety, NaN/Inf issues, and diagnostics.
SOC 職業分類に基づく
SKILL.md を表示中
| name | github-pr |
| description | Create a well-structured pull request with proper description |
| disable-model-invocation | true |
Create a well-structured pull request with proper description, labels, and reviewers.
Follow the commit convention for all commit messages and PR titles.
Prepare branch
# Use 'origin' remote (most common), or specify a different remote if needed
git push -u origin HEAD
Create PR
Write the PR description to a temp file first to avoid shell escaping issues:
# Write description to temp file (output/ is gitignored)
mkdir -p output/.cursor
cat > output/.cursor/pr_body.md << 'EOF'
## Summary
...
EOF
# Create the PR - always target upstream repository
gh pr create --title "<type>(<scope>): <summary>" --body-file output/.cursor/pr_body.md --base main --repo spiriMirror/libuipc
# Clean up
rm -r output/.cursor
Note: Always use --repo spiriMirror/libuipc to create PRs against the upstream repository (works with forks).
PR description should include
Fixes #123)After creating