cxx-init
A small personal tool for creating clean, modern C++ projects without repeating the same setup work.
Install
uv tool install cxx-init
Alternatively, use pipx:
pipx install cxx-init
Create a project
cxx init hello
cd hello
cmake --workflow --preset dev
The generated project uses normal C++ tooling directly and does not depend on cxx after creation.
Upgrade or uninstall the tool with:
uv tool upgrade cxx-init
uv tool uninstall cxx-init
Requirements
cxx requires Python 3.10 or newer. Generated projects require CMake 3.25 or newer,
Ninja, and a C++23 compiler.
Generated project workflows
Each workflow configures, builds, and runs CTest:
| Command | Build type | ASan / UBSan | Directory |
|---|---|---|---|
cmake --workflow --preset dev |
Debug | Off | build/dev |
cmake --workflow --preset san |
Debug | On | build/san |
cmake --workflow --preset release |
Release | Off | build/release |
The configure step restores the preset's sanitizer setting even after a manual cache override.
release is a local optimized build, not a packaging or publishing command.
The template fixes the project's editing baseline, including direct-include diagnostics.
clangd always uses build/dev/compile_commands.json; running san or release does not switch it.
Configure dev before editing C++ files.
Choose a compiler before the first configure of each build directory. For example, on macOS:
CXX=/opt/homebrew/opt/llvm/bin/clang++ cmake --workflow --preset dev
CMake caches that choice; changing CXX later does not switch an already configured directory.
Use a separate build directory when comparing compilers. Machine-specific paths or SDK overrides
can be recorded in the ignored CMakeUserPresets.json; no extra config is needed for normal use.
If an explicit compiler experiment uses another compilation database, select it explicitly in
clangd as well. Project style and diagnostic preferences remain fixed in the template.
Design priorities
- Personal developer experience first.
- Small, readable implementation.
- Minimal generated files.
- No hidden host mutation.
- No build-system wrapper.
- No network requirement during project creation.
- Prefer boring, inspectable code over framework-heavy abstractions.
Scope
The current product creates one canonical app project. Additional artifact types remain deferred
until real usage demonstrates a need for them:
lib
header-only
Initial generated projects use:
C++23
Modern target-centric CMake
CMake Presets / Workflow Presets
Ninja
clangd
clang-format
clang-tidy
CTest
ASan / UBSan where supported
compile_commands.json
Dependency managers, C++26, Modules, ROS, CUDA, benchmarking and fuzzing are intentionally deferred.
Repository documents
AGENTS.md— rules for Codex and other coding agents.docs/architecture.md— architecture and boundaries.docs/implementation-plan.md— current implementation sequence.
Development
Build the wheel and source distribution with:
uv build
Run the black-box test suite with:
python3 -m unittest discover -s tests -v
House-style regression
The canonical formatter configuration is the single source of house-style rules; documentation does not keep a second copy. Check the formatting sample against its reviewed expected output with the fixed clang-format 23.1.x baseline:
CLANG_FORMAT=/opt/homebrew/opt/llvm/bin/clang-format python3 tests/check_format.py
CLANG_FORMAT selects the executable; it defaults to clang-format on PATH. The check reports
the actual version, reads the canonical config explicitly, and fails on errors or output differences.
It never rewrites the sample or golden output. Review intentional style changes before updating either.
The sample covers include grouping, pointers/references, access labels, concepts/requires, wrapped parameters/arguments, control flow, lambdas, namespaces, and long string literals. It is formatting-only: the header names are not build dependencies. This explicit check is separate from Python test discovery and wheel acceptance, which do not require a formatter.
Release files for cxx-init 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| cxx_init-0.1.1.tar.gz | 9.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| cxx_init-0.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 21.9 kB
Release files / cxx_init-0.1.1.tar.gz
| Download URL | cxx_init-0.1.1.tar.gz |
|---|---|
| Size | 9.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d60a1966431fc2c99c4c1ab548b28f5e2750bb2eaeadfb7508828a3ca62515d6
|
|
BLAKE2b-256 checksum How to use checksums |
fe9c849cf0a8d013f974ff4df13dd00c40a625409c2dcebc886f399dec8e5d77
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 12, 2026.
Transparency logRelease files / cxx_init-0.1.1-py3-none-any.whl
| Download URL | cxx_init-0.1.1-py3-none-any.whl |
|---|---|
| Size | 12.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
63ea342d8e9c50d5ce2041d6ccc2ae0a9dd1160d3fabe5014644aec5d8c2a2bc
|
|
BLAKE2b-256 checksum How to use checksums |
a1e47abf2334b591bc09fb632eab70123ba9731a724edc5ef7ffe3d340d70f2f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 12, 2026.
Transparency log