hlx 1.2.5

Configuration language designed specifically for ml/ai/data systems
Documentation
# HELIX Compiler - Binary Compilation for .hlx Files
## Send Buddy the Beagle a bitcoin treat for making this page: bc1quct28jtvvuymvkvjfgcedhd7jt0c56975f2fsh

## Overview

The HELIX Compiler (`helix`) transforms human-readable `.hlx` configuration files into optimized binary format (`.hlxb`) for lightning-fast loading and execution. This eliminates the pain of JSON parsing, TOML limitations, and environment variable hell.

## Why HELIX Compiler?

### The Problem
- **JSON/TOML/ENV files are slow**: Parsing text formats at runtime kills performance
- **No validation**: Errors only discovered at runtime
- **No optimization**: Redundant data, repeated strings, inefficient structure
- **No type safety**: Everything is stringly-typed
- **No compression**: Wasteful storage and memory usage

### The Solution
HELIX Compiler provides:
- **10-100x faster loading** through binary format
- **Compile-time validation** catching errors before deployment
- **String interning** eliminating duplicate strings
- **LZ4 compression** reducing file size by 50-80%
- **Optimization levels** (0-3) for different use cases
- **Bytecode instructions** for direct execution

## Architecture

```
.hlx file → [Lexer] → [Parser] → [AST] → [Optimizer] → [Compiler] → .hlxb file
                              [Validator]
```

### Binary Format Structure

```rust
HelixBinary {
    magic: [u8; 4],        // "HLXB" identifier
    version: u32,          // Format version
    flags: BinaryFlags,    // Compression, optimization, etc.
    metadata: Metadata,    // Creation time, compiler version
    symbol_table: Table,   // Interned strings
    data_sections: Vec,    // Actual configuration data
    checksum: u64,        // CRC32 for integrity
}
```

## Installation

### As Standalone Binary
```bash
cd src/helix_compiler
cargo build --release
cp target/release/helix /usr/local/bin/
```

### As Embedded Binary in MSO
```rust
// In main MSO binary
const HELIX_BINARY: &[u8] = include_bytes!("../target/release/helix");
```

## Usage

### Basic Compilation
```bash
# Compile a single .hlx file
helix compile config.hlx

# Output: config.hlxb
```

### With Options
```bash
# Maximum optimization and compression
helix compile config.hlx -O3 --compress

# Custom output location
helix compile config.hlx -o /etc/maestro/config.hlxb

# Bundle multiple files
helix bundle ./configs/ -o bundle.hlxb
```

### Decompilation
```bash
# Convert binary back to .hlx
helix decompile config.hlxb -o config_recovered.hlx
```

### Validation
```bash
# Validate .hlx syntax
helix validate config.hlx --verbose

# Validate binary integrity
helix validate config.hlxb
```

### Information
```bash
# View binary metadata
helix info config.hlxb

# JSON output for tooling
helix info config.hlxb --format json
```

## Optimization Levels

### Level 0 - No Optimization
- Direct translation to binary
- Fastest compilation
- Largest file size
- Use for: Development, debugging

### Level 1 - Basic Optimization
- String deduplication
- Dead code removal
- ~20% size reduction
- Use for: Testing environments

### Level 2 - Standard Optimization (Default)
- String interning
- Constant folding
- Structure reordering
- ~40% size reduction
- Use for: Production

### Level 3 - Aggressive Optimization
- Full pipeline optimization
- Cross-reference elimination
- Maximum compression
- ~60% size reduction
- Use for: Embedded systems, distribution

## Binary Instructions

The compiler generates bytecode for efficient execution:

```rust
enum Instruction {
    // Stack operations
    Push(Value),
    Pop,
    Dup,
    
    // Variable operations
    LoadVar(u32),      // Load from symbol table
    StoreVar(u32),
    
    // Agent operations
    InvokeAgent(u32),  // Direct agent invocation
    InvokeCrew(u32),
    Pipeline(u32),
    
    // Memory operations
    MemStore(u32),     // Store in memory
    MemLoad(u32),
    MemEmbed(u32),     // Generate embedding
}
```

## Performance Benchmarks

| Operation | .hlx (text) | .hlxb (binary) | Speedup |
|-----------|-------------|----------------|---------|
| Parse 1MB config | 45ms | 0.8ms | 56x |
| Load 100 agents | 120ms | 3ms | 40x |
| String lookup | 15μs | 50ns | 300x |
| Memory usage | 12MB | 3MB | 4x reduction |

## Integration with MSO

### Runtime Loading
```rust
use helix_compiler::runtime::HelixLoader;

// Load compiled binary
let loader = HelixLoader::new();
let config = loader.load_binary("config.hlxb")?;

// Access configuration with zero parsing
let agent = config.agents.get("senior-rust-engineer");
```

### Embedded Compiler
```rust
use helix_compiler::Compiler;

// Compile at runtime if needed
let mut compiler = Compiler::new(OptimizationLevel::Two);
let binary = compiler.compile_string(helix_content)?;
```

### Hot Reloading
```rust
// Watch for .hlx changes and recompile
let watcher = HelixWatcher::new("./configs");
watcher.on_change(|path| {
    helix::compile(path, OptimizationLevel::Two)?;
    reload_config(path.with_extension("msob"))?;
});
```

## Advanced Features

### Custom Sections
Add application-specific binary sections:

```rust
compiler.add_custom_section("embeddings", embedding_data);
compiler.add_custom_section("checkpoints", model_weights);
```

### Incremental Compilation
Only recompile changed sections:

```rust
compiler.incremental_compile(changed_files)?;
```

### Cross-Platform Support
Binary format is endian-neutral and platform-independent:

```bash
# Compile on Linux, run on macOS
helix compile --target universal config.hlx
```

## Security

### Signed Binaries
```bash
# Sign compiled binary
helix sign config.hlxb --key private.pem

# Verify signature
helix verify config.hlxb --cert public.pem
```

### Encryption
```bash
# Encrypt sensitive configuration
helix compile config.hlx --encrypt --key secret.key
```

## Troubleshooting

### Common Issues

1. **"Invalid magic bytes"**
   - File is corrupted or not an .hlxb file
   - Solution: Recompile from source .hlx

2. **"Version mismatch"**
   - Binary compiled with different compiler version
   - Solution: Use matching compiler version or recompile

3. **"Checksum failed"**
   - File integrity compromised
   - Solution: Verify file transfer, recompile if needed

4. **"Symbol not found"**
   - Reference to undefined identifier
   - Solution: Check .hlx file for typos

### Debug Mode
```bash
# Enable debug output
RUST_LOG=debug helix compile config.hlx

# Dump symbol table
helix debug symbols config.hlxb

# Show optimization decisions
helix compile config.hlx -O3 --explain
```

## Contributing

### Building from Source
```bash
git clone https://github.com/maestro/helix-compiler
cd helix-compiler
cargo build --release
cargo test
```

### Adding Optimizations
New optimizations go in `src/optimizer/`:

```rust
impl Optimizer {
    fn my_optimization(&mut self, ast: &mut HelixAst) {
        // Transform AST for better performance
    }
}
```

## Future Enhancements

- [ ] WebAssembly target for browser execution
- [ ] Parallel compilation for large projects
- [ ] Profile-guided optimization
- [ ] JIT compilation for hot paths
- [ ] Differential compression for updates
- [ ] Cloud compilation service

## License

MIT - Build, don't destroy.

## Acknowledgments

Send Buddy the Beagle a bitcoin treat for making this page: bc1quct28jtvvuymvkvjfgcedhd7jt0c56975f2fsh - For B, who dreams in binary and builds in hope.