Back to skills
SkillHub ClubShip Full StackFull Stack

dart-build

DART build system knowledge - CMake, pixi, dependencies, troubleshooting

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
1,063
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
B84.0

Install command

npx @skill-hub/cli install dartsim-dart-dart-build

Repository

dartsim/dart

Skill path: .codex/skills/dart-build

DART build system knowledge - CMake, pixi, dependencies, troubleshooting

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: dartsim.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install dart-build into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/dartsim/dart before adding dart-build to shared team environments
  • Use dart-build for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: dart-build
description: DART build system knowledge - CMake, pixi, dependencies, troubleshooting
---
<!-- AUTO-GENERATED FILE - DO NOT EDIT MANUALLY -->
<!-- Source: .claude/skills/dart-build/SKILL.md -->
<!-- Sync script: scripts/sync_ai_commands.py -->
<!-- Run `pixi run sync-ai-commands` to update -->

# DART Build System

Load this skill when working with DART's build system.

## Quick Commands

```bash
pixi run configure    # Configure CMake
pixi run build        # Build
pixi run test         # Run tests
pixi run test-all     # Full validation (lint + build + tests)
pixi run lint         # Format code
```

## Full Documentation

For complete build instructions, read: `docs/onboarding/building.md`

For build system internals (CMake, dependencies): `docs/onboarding/build-system.md`

## Common Issues

| Issue              | Solution                                   |
| ------------------ | ------------------------------------------ |
| CMake not found    | `pixi install`                             |
| Missing dependency | Check `pixi.toml`                          |
| Build failure      | `pixi run configure` then `pixi run build` |
| Linking error      | Check CMakeLists.txt in relevant module    |

## Key Files

- `pixi.toml` - Package management
- `CMakeLists.txt` - Build configuration
- `cmake/` - CMake modules