last commit df471341501680d80b51c6173d24a692120ec6e2
analyzed on Sat, 18 Jul 2026 18:58:21 +0000
total evidence 4
commit signals (2)
AiGenerationPhrase
Tool: claude-codeCommit: df42e6dd871bc7a082d128d87f25a6e9a704492aAuthored: 1 month ago (Wed, 1 Jul 2026 20:16:23 +0000)Match: 🤖 Generated with [Claude Code](https://claude.com/claude-code)
AiGenerationPhrase
Tool: claude-codeCommit: 68692cfee0e58651073eb8eb4dd686e629948af0Authored: 1 month ago (Wed, 1 Jul 2026 20:15:19 +0000)Match: 🤖 Generated with [Claude Code](https://claude.com/claude-code)
source signals (1)
File: AGENTS.mdTool: agents-md
# CLI11 Agent Guide
Header-only C++11 command line parser library. CMake is the primary build
system; Meson and Bazel are also supported.
## Quick Build & Test
```bash
# Default workflow (configure + build + test)
cmake --workflow default
# Or manually
cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build -j4
cmake --build build --target test # or: cd build && ctest --output-on-failure
```
## Running a Single Test
Tests are individual Catch2 executables in `build/tests/`.
```bash
# Run o