batuta 0.6.2

Orchestration framework for converting ANY project (Python, C/C++, Shell) to modern Rust
Documentation
# Renacer Performance Assertions for batuta (v0.6.5)
#
# These assertions enforce performance budgets for batuta (orchestration framework for converting projects to Rust).
# Assertions run at build time (via cargo test) and fail CI if violated.
#
# Toyota Way Principle: Andon (stop the line when defects detected)

[[assertion]]
name = "orchestration_latency"
type = "critical_path"
max_duration_ms = 5000  # Orchestration operations should complete in <5s for small projects
fail_on_violation = true
enabled = true

[[assertion]]
name = "max_syscall_budget"
type = "span_count"
max_spans = 10000  # Orchestration may spawn multiple processes
fail_on_violation = true
enabled = true

[[assertion]]
name = "memory_allocation_budget"
type = "memory_usage"
max_bytes = 1073741824  # 1GB maximum for orchestration + transpilation
tracking_mode = "allocations"
fail_on_violation = true
enabled = true

[[assertion]]
name = "prevent_god_process"
type = "anti_pattern"
pattern = "GodProcess"
threshold = 0.8  # 80% confidence threshold
fail_on_violation = false  # Warning only (not blocking)
enabled = true

[[assertion]]
name = "detect_tight_loop"
type = "anti_pattern"
pattern = "TightLoop"
threshold = 0.7  # Detect excessive loop iterations
fail_on_violation = false  # Warning only (orchestration may have intentional loops)
enabled = true

# Disabled assertion (example - can be enabled for stricter checking)
[[assertion]]
name = "ultra_strict_latency"
type = "critical_path"
max_duration_ms = 1000  # <1s (very aggressive for orchestration)
fail_on_violation = true
enabled = false  # Disabled by default

# ==============================================================================
# Golden Trace Performance Validation
# ==============================================================================
# Validates that orchestration operations (backend selection, pipeline execution, transpilation)
# meet performance expectations using golden traces for regression detection.

[semantic_equivalence]
enabled = true
baseline_dir = "golden_traces/baseline"
min_confidence = 0.90  # 90% confidence required for PASS

# Validation checks
check_write_patterns = true          # Output correctness
check_file_operations = true         # File I/O validation
check_output_correctness = true      # Exact output matching
check_memory_allocations = false     # Allocations may vary

# Performance expectations
expected_speedup_min = 1.0           # Baseline comparison
expected_speedup_max = 10.0          # Sanity check for performance improvements

# Lamport clock configuration
[lamport_clock]
enabled = true
propagate_across_fork = true
propagate_across_exec = true
env_var = "RENACER_LAMPORT_CLOCK"

# Trace compression
[compression]
enabled = true
algorithm = "rle"  # Run-length encoding
min_file_size_kb = 100  # Only compress traces >100KB

# OpenTelemetry export (optional - for Jaeger/Grafana integration)
[otlp]
enabled = false  # Enable when observability stack available
endpoint = "http://localhost:4317"
service_name = "batuta"

# CI/CD integration
[ci]
fail_fast = true  # Stop on first assertion failure (Andon principle)
export_format = "json"
export_path = "target/renacer-reports"
compare_with_baseline = true