ソース情報
- リポジトリ
- dartsim/dart
- ソースの最終更新活動
- 2026年9月4日 23:33
- 検出された SKILL.md の言語
- 英語
- スター
- 1,202
- フォーク
- 304
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/dartsim/dart --skill dart-buildコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | dart-build |
| description | DART Build: CMake, pixi, dependencies, and build troubleshooting |
Load this skill when working with DART's build system.
pixi run config # Configure CMake
pixi run build # Build
pixi run test # Run tests
pixi run test-all # Full validation (lint + build + tests)
pixi run -e cuda test-all # CUDA-enabled full validation on Linux CUDA hosts
pixi run lint # Format code
For complete build instructions, read: docs/onboarding/building.md
For build system internals (CMake, dependencies): docs/onboarding/build-system.md
| Issue | Solution |
|---|---|
| CMake not found | pixi install |
| Missing dependency | Check pixi.toml |
| Build failure | pixi run config then pixi run build |
| Linking error | Check CMakeLists.txt in relevant module |
DART_CUDA_ARCHITECTURES; set
DART_CUDA_ARCHITECTURES=<arch> only when overriding that detected list.pixi.lock by hand. Change dependency constraints in
pixi.toml, then run a Pixi command such as pixi install to let Pixi
regenerate the lockfile.pixi.lock changes format or has broad solver churn, keep the generated
output and call it out in the PR rather than attempting to splice lockfile
entries manually.dart-verify-sim. Pair a text correctness oracle with agent-capture, view
assessment, and claim-relevant engine debug layers; inspect the artifact and
sidecar instead of relying only on command success.dartsim app, run pixi run dartsim
and verify the requested interaction or behavior before ending the check.
Then close any application you started solely for verification, unless the
user asked to leave it running.pixi.toml - Package managementCMakeLists.txt - Build configurationcmake/ - CMake modules