Note
Work in progress.
-
A Sensor input orchestrator that handles source discovery, mode switching, and stream routing. Makes varied camera/input feeds plug-and-play for your selected downstream modules through stable interfaces.
-
For researchers that need one operator surface to test platform behavior, adapter compatibility, mode decisions, and integration outputs across multiple profiles (air, ground, maritime, space, handheld, fixed-site, subsea).
-
A deterministic tracking and interface testing tool for a variety of platforms and contexts. Design is intended for user-created modules and tests with standardized data structuring. You do not need to modify existing source code to run baseline checks.
More
For (but not limited to):
- Engineers validating sensor/mode logic under deterministic conditions.
- Operators/test teams running repeatable platform workbench checks.
- Integrators consuming a stable machine-readable output envelope.
Contact:
- Language: C++17
- Build system: CMake (3.10+)
- Runtime UI: terminal UI (TUI)
- Modules:
airtrace_core: deterministic algorithms and mode logicairtrace_adapters_contract: adapter manifest/allowlist contract validationairtrace_tools: config parsing, policy gates, audit logging, adapter registry loadingairtrace_ui: operator-facing UI module used by app and UI test targetsairtrace_ui_harness: deterministic UI harness module for non-interactive test/integration flowsairtrace_adapters_sdk: adapter SDK/module skeleton targetAirTrace: operator-facing executable that linksairtrace_ui
- Deterministic simulation and test execution (seeded RNG + fixed timestep).
- Mode and fallback ladder evaluation with explicit deny reasons.
- Platform workbench: single session validation for selected/all platform profiles.
- Front-view display workbench scaffolding:
- EO/IR/proximity display families
- deterministic spoofed input path for test environments without physical sensors
- single-mode and cycle-all execution
- front-view telemetry exported in the external I/O envelope
- Adapter manifest/allowlist validation.
- Versioned external I/O envelope for cross-system integration.
- Fail closed by default on invalid/missing data.
- External inputs are validated and schema-checked.
- Authorization/provenance/policy denials are surfaced with recovery guidance.
- Audit logging is required for operationally relevant actions.
- Clone with submodules:
git clone --recurse-submodules https://github.com/denv3rr/AirTrace
- Build:
- Windows:
.\scripts\build.ps1 - Linux/macOS:
./scripts/build.sh
- Windows:
- Run:
- Windows:
.\build\AirTrace.exe - Linux/macOS:
./build/AirTrace - Windows debug-admin launch:
.\scripts\run.ps1 -DebugAdmin - Linux/macOS debug-admin launch:
AIRTRACE_DEBUG_ADMIN=1 ./scripts/run.sh
- Windows:
- Run tests:
- Windows:
.\scripts\test.ps1 - Linux/macOS:
./scripts/test.sh
- Windows:
- Branch from latest
mainusing a traceable name:feature/REQ-XXX-short-namebugfix/V-XXX-short-name
- Keep every change set traceable:
- update
docs/requirements.md,docs/verification_plan.md, anddocs/traceability.mdin the same PR when behavior changes.
- update
- Rebase before opening and merging PRs to reduce agent conflict risk.
- Keep branches short-lived (target <= 5 days); use temporary
integration/*branches only for multi-agent convergence. - Require deterministic green tests before merge:
- Windows:
.\scripts\test.ps1 - Linux/macOS:
./scripts/test.sh
- Windows:
Scenario Mode: run operational-style flow checks.Test Mode: run deterministic mode-specific tests.Platform Workbench: validate one/all platform profiles and adapter status from one UI.Front-View Display Workbench: validate EO/IR/proximity display modes with spoofed data and export front-view telemetry.
- Core logic:
src/core/, headers ininclude/core/ - Tools/parsing/audit:
src/tools/, headers ininclude/tools/ - UI/TUI flows:
src/ui/, headers ininclude/ui/ - Tests:
tests/ - Design and compliance docs:
docs/
- Requirements:
docs/requirements.md - Verification plan:
docs/verification_plan.md - Traceability matrix:
docs/traceability.md - Hazard log:
docs/hazard_log.md - Security threat model:
docs/security_threat_model.md - Configuration schema:
docs/config_schema.md - Operational concepts:
docs/operational_concepts.md - UI standards:
docs/ui_standards.md - Front-view architecture:
docs/front_view_display_architecture.md - Plan and sequencing:
docs/plan.md - Agent abstract and execution intent:
agents_abstract.md
- Main config keys are documented in
docs/config_schema.md. - Front-view scaffolding keys use the
front_view.*namespace. - Unknown keys or invalid values are rejected.
configs/sim_default.cfgis the normal simulation profile.configs/sim_debug_admin.cfgis an explicit test-only launch profile that starts with debug admin active.
- Enable harness:
AIRTRACE_TEST_HARNESS=1AIRTRACE_HARNESS_COMMANDS=configs/harness_commands.txt
- Example command format:
docs/harness_commands.example.txt
- Standards and references list:
sources_menu.md