LICENSE
README.md
pyproject.toml
src/recipe_dsl/__init__.py
src/recipe_dsl/__main__.py
src/recipe_dsl/cli.py
src/recipe_dsl.egg-info/PKG-INFO
src/recipe_dsl.egg-info/SOURCES.txt
src/recipe_dsl.egg-info/dependency_links.txt
src/recipe_dsl.egg-info/entry_points.txt
src/recipe_dsl.egg-info/requires.txt
src/recipe_dsl.egg-info/top_level.txt
src/recipe_dsl/ast/__init__.py
src/recipe_dsl/ast/nodes.py
src/recipe_dsl/ast/visitors.py
src/recipe_dsl/docs/__init__.py
src/recipe_dsl/docs/syntax-guide.md
src/recipe_dsl/errors/__init__.py
src/recipe_dsl/errors/exceptions.py
src/recipe_dsl/examples/__init__.py
src/recipe_dsl/examples/apply_config.rdsl
src/recipe_dsl/examples/cross_db_report.rdsl
src/recipe_dsl/examples/enrich_from_web.rdsl
src/recipe_dsl/examples/fetch_rest.rdsl
src/recipe_dsl/examples/fetch_sql.rdsl
src/recipe_dsl/examples/paginated_api.rdsl
src/recipe_dsl/examples/sales_data.json
src/recipe_dsl/examples/sales_report.rdsl
src/recipe_dsl/examples/validate_and_export.rdsl
src/recipe_dsl/grammar/__init__.py
src/recipe_dsl/grammar/parser.py
src/recipe_dsl/grammar/recipe_dsl.lark
src/recipe_dsl/highlight/__init__.py
src/recipe_dsl/highlight/classifier.py
src/recipe_dsl/highlight/cli.py
src/recipe_dsl/highlight/collector.py
src/recipe_dsl/highlight/emitter.py
src/recipe_dsl/highlight/errors.py
src/recipe_dsl/highlight/generate.py
src/recipe_dsl/highlight/loader.py
src/recipe_dsl/highlight/named_terminals.py
src/recipe_dsl/highlight/regex_translator.py
src/recipe_dsl/highlight/token_entry.py
src/recipe_dsl/runtime/__init__.py
src/recipe_dsl/runtime/interpreter.py
src/recipe_dsl/runtime/backends/__init__.py
src/recipe_dsl/runtime/backends/browser.py
src/recipe_dsl/runtime/backends/http.py
src/recipe_dsl/runtime/backends/sqlalchemy.py
tests/test_browser_ops.py
tests/test_complete_feature_audit.py
tests/test_control_flow.py
tests/test_examples_e2e.py
tests/test_extract.py
tests/test_highlight_class_membership.py
tests/test_highlight_classifier.py
tests/test_highlight_cli.py
tests/test_highlight_collector.py
tests/test_highlight_emitter.py
tests/test_highlight_errors.py
tests/test_highlight_generate.py
tests/test_highlight_join_collision.py
tests/test_highlight_js_stub.py
tests/test_highlight_js_tokenize.py
tests/test_highlight_js_tsc.py
tests/test_highlight_loader.py
tests/test_highlight_named_terminals.py
tests/test_highlight_regex_translator.py
tests/test_highlight_snapshot.py
tests/test_highlight_token_entry.py
tests/test_integration.py
tests/test_interpreter.py
tests/test_navigate.py
tests/test_parser.py
tests/test_rest_api.py
tests/test_sql.py
tests/test_string_ops.py