-
Notifications
You must be signed in to change notification settings - Fork 0
Learning Cli First Inspection
github-actions[bot] edited this page Jun 23, 2026
·
4 revisions
Beginner to intermediate, with expert tracing prompts.
CAE engineers, Python developers, AI-agent builders, and instructors beginning the CaeReflex curriculum.
By the end, you can:
- run a complete CaeReflex inspection from the command line;
- identify the purpose of full case JSON, agent context JSON, and Markdown reports;
- find inspection warnings and limitations; and
- write a safe summary without claiming validation or certification.
examples/openfoam_cavity_minimal- Quickstart
- CLI Reference
From the repository root:
caereflex examples list
caereflex examples run openfoam_cavity_minimal
caereflex inspect examples/openfoam_cavity_minimal \
--out caereflex.json \
--agent-context agent_context.json \
--report case_report.mdInspect the outputs:
python -m json.tool caereflex.json | head
python -m json.tool agent_context.json | head
sed -n '1,120p' case_report.md-
caereflex.jsonis the full structured record. -
agent_context.jsonis the compact LLM-oriented context. -
case_report.mdis a human-readable report. - Warnings and safe-use statements are part of the learning output, not noise to ignore.
Find the case identifier, detected formats, detected tools, and at least one warning or limitation.
Write a five-sentence case summary that separates detected evidence from what a qualified engineer still needs to review.
Trace the workflow through the architecture:
- CLI command in
caereflex/cli/main.py. - Service orchestration in
caereflex/services.py. - OpenFOAM adapter behavior in
caereflex/adapters/openfoam.py. - Export behavior in
caereflex/exporters.py. - Domain records in
caereflex/core/models.py.
- Commands ran successfully.
- The learner can explain each generated file.
- The learner surfaced at least one limitation.
- The summary avoids claims of correctness, convergence, mesh adequacy, certification, or safety.
- Home
- Architecture
- Developer-Guide
- Learning
- Reference
- Releases
- User-Guide
Synced from /wiki/docs in the main CaeReflex repository.