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/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_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