Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tryvoss.dev/llms.txt

Use this file to discover all available pages before exploring further.

The .voss pipeline emits readable Python.
.voss source
  -> parser
  -> AST
  -> analyzer
  -> codegen
  -> Python + voss_runtime

Pipeline stages

StagePurpose
ParserTurn .voss syntax into AST dataclasses
AnalyzerCheck language semantics such as confidence gates and budgets
CodegenEmit readable Python
RuntimeProvide primitives used by generated Python

CLI commands

voss check samples/support.voss
voss compile samples/support.voss
voss run samples/support.voss

Generated Python

Generated Python should be readable, diffable, and debuggable. Voss should not hide behavior in an opaque runtime.

Harness connection

The harness command surface shares the voss binary, but it is separate from compiler commands. Use voss do for agent tasks and voss run for .voss programs.