Our review
Builds the C++ backend using CMake, with ANTLR dependency management and build options.
Strengths
- Full automation of CMake configuration and compilation
- Support for tests and clean rebuilds
- Automatic handling of ANTLR-generated files
Limitations
- Requires preconfigured environment variables
- Does not handle protobuf or external dependency errors
- No support for advanced cross-platform builds
When the user asks to compile the C++ backend or fix compilation/linking errors.
For simple single-file builds or projects without CMake.
Security analysis
SafeThe skill uses standard CMake build commands and a scoped 'rm -rf build' for clean rebuilds. No exfiltration, token handling, or destructive actions outside the build directory.
No concerns found
Examples
Build the C++ backend using CMake.Build the project with tests enabled using CMake.Perform a clean rebuild of the C++ project.name: build description: Build the C++ backend using CMake. Use when user asks to compile, build, rebuild, or mentions CMake, compilation errors, or linking issues. allowed-tools: Bash, Read
Build Project Skill
Build the OrderParserProcessor C++ backend using CMake.
Prerequisites
Ensure required environment variables are set:
ORDER_PARSER_PROCESSOR_ROOT: Project root directoryANTLR_VERSION: ANTLR version (e.g., antlr-4.13.0)
Check with:
echo $ORDER_PARSER_PROCESSOR_ROOT
echo $ANTLR_VERSION
Instructions
- Verify environment variables are set
- Check if build directory exists, if not it will be created by CMake
- Run CMake configuration:
cmake -B build - Run CMake build:
cmake --build build - Report any compilation or linking errors found
- If successful, confirm the build completed and show executable location
Build Options
Standard Build
cmake -B build
cmake --build build
Build with Tests
cmake -B build -DBUILD_TESTS=ON
cmake --build build
Clean Rebuild
rm -rf build
cmake -B build
cmake --build build
Parallel Build (faster)
cmake --build build -j4
ANTLR Handling
CMake automatically handles ANTLR file generation from .g4 grammar files.
Important: For significant grammar modifications, it's better to work directly with antlr4 command to avoid recompiling every time:
# Generate parser from grammar (for testing)
antlr4 -Dlanguage=Cpp -visitor rules/parser/FiScript.g4
# Test grammar with input
grun FiScript <start_rule> -gui < input.txt
Common Issues
- ANTLR not found: Check
ANTLR_VERSIONenvironment variable is set - Protobuf errors: Ensure proto files are generated in
generated/cpp/(use proto-gen skill) - Link errors: Check library dependency order in CMakeLists.txt
- ORDER_PARSER_PROCESSOR_ROOT not set: Export it in your shell profile
Success Criteria
- CMake configuration completes without errors
- All targets compile successfully
- Executable
OrderParserProcessoris created inbuild/backend/directory
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.