LICENSE
README.md
pyproject.toml
quantum/__init__.py
quantum/cli/__init__.py
quantum/cli/deploy.py
quantum/cli/hot_reload.py
quantum/cli/jobs.py
quantum/cli/mq.py
quantum/cli/pkg.py
quantum/cli/runner.py
quantum/cli/server_process.py
quantum/cli/utils.py
quantum/cli/commands/__init__.py
quantum/cli/commands/build.py
quantum/cli/commands/dev.py
quantum/cli/commands/docs.py
quantum/cli/commands/lint.py
quantum/cli/commands/migrate.py
quantum/cli/commands/new.py
quantum/cli/commands/serve.py
quantum/cli/commands/test.py
quantum/compiler/__init__.py
quantum/compiler/base_generator.py
quantum/compiler/cli.py
quantum/compiler/expression_transformer.py
quantum/compiler/optimizer.py
quantum/compiler/transpiler.py
quantum/compiler/javascript/__init__.py
quantum/compiler/javascript/generator.py
quantum/compiler/python/__init__.py
quantum/compiler/python/generator.py
quantum/compiler/python/runtime.py
quantum/core/__init__.py
quantum/core/ast_nodes.py
quantum/core/config_env.py
quantum/core/expression_diagnostics.py
quantum/core/expression_stdlib.py
quantum/core/expressions.py
quantum/core/html_compat.py
quantum/core/parser.py
quantum/core/parser_registry.py
quantum/core/tiers.py
quantum/core/features/agents/src/__init__.py
quantum/core/features/agents/src/ast_node.py
quantum/core/features/conditionals/src/__init__.py
quantum/core/features/conditionals/src/ast_node.py
quantum/core/features/data_import/src/__init__.py
quantum/core/features/data_import/src/ast_node.py
quantum/core/features/data_import/src/runtime.py
quantum/core/features/dump/src/__init__.py
quantum/core/features/dump/src/ast_node.py
quantum/core/features/dump/src/parser.py
quantum/core/features/dump/src/runtime.py
quantum/core/features/functions/src/__init__.py
quantum/core/features/functions/src/ast_node.py
quantum/core/features/game_engine_2d/src/__init__.py
quantum/core/features/game_engine_2d/src/ast_nodes.py
quantum/core/features/game_engine_2d/src/parser.py
quantum/core/features/invocation/src/__init__.py
quantum/core/features/invocation/src/ast_node.py
quantum/core/features/invocation/src/runtime.py
quantum/core/features/knowledge_base/src/__init__.py
quantum/core/features/knowledge_base/src/ast_node.py
quantum/core/features/knowledge_base/src/parser.py
quantum/core/features/logging/src/__init__.py
quantum/core/features/logging/src/ast_node.py
quantum/core/features/logging/src/parser.py
quantum/core/features/logging/src/runtime.py
quantum/core/features/loops/src/__init__.py
quantum/core/features/loops/src/ast_node.py
quantum/core/features/query/src/__init__.py
quantum/core/features/query/src/database_service.py
quantum/core/features/query/src/query_validators.py
quantum/core/features/state_management/src/__init__.py
quantum/core/features/state_management/src/ast_node.py
quantum/core/features/terminal_engine/src/__init__.py
quantum/core/features/terminal_engine/src/ast_nodes.py
quantum/core/features/terminal_engine/src/parser.py
quantum/core/features/testing_engine/src/__init__.py
quantum/core/features/testing_engine/src/ast_nodes.py
quantum/core/features/testing_engine/src/parser.py
quantum/core/features/theming/src/__init__.py
quantum/core/features/theming/src/ast_node.py
quantum/core/features/theming/src/presets.py
quantum/core/features/ui_engine/src/__init__.py
quantum/core/features/ui_engine/src/ast_nodes.py
quantum/core/features/ui_engine/src/parser.py
quantum/core/features/websocket/src/__init__.py
quantum/core/features/websocket/src/ast_node.py
quantum/core/parsers/__init__.py
quantum/core/parsers/base.py
quantum/core/parsers/ai/__init__.py
quantum/core/parsers/ai/agent_parser.py
quantum/core/parsers/ai/knowledge_parser.py
quantum/core/parsers/ai/llm_parser.py
quantum/core/parsers/ai/team_parser.py
quantum/core/parsers/composition/__init__.py
quantum/core/parsers/composition/import_parser.py
quantum/core/parsers/composition/slot_parser.py
quantum/core/parsers/control_flow/__init__.py
quantum/core/parsers/control_flow/if_parser.py
quantum/core/parsers/control_flow/loop_parser.py
quantum/core/parsers/control_flow/set_parser.py
quantum/core/parsers/data/__init__.py
quantum/core/parsers/data/data_parser.py
quantum/core/parsers/data/invoke_parser.py
quantum/core/parsers/data/query_parser.py
quantum/core/parsers/data/transaction_parser.py
quantum/core/parsers/events/__init__.py
quantum/core/parsers/events/dispatch_event_parser.py
quantum/core/parsers/forms/__init__.py
quantum/core/parsers/forms/action_parser.py
quantum/core/parsers/forms/flash_parser.py
quantum/core/parsers/forms/redirect_parser.py
quantum/core/parsers/functions/__init__.py
quantum/core/parsers/functions/function_parser.py
quantum/core/parsers/functions/param_parser.py
quantum/core/parsers/functions/return_parser.py
quantum/core/parsers/html/__init__.py
quantum/core/parsers/html/component_call_parser.py
quantum/core/parsers/html/html_parser.py
quantum/core/parsers/jobs/__init__.py
quantum/core/parsers/jobs/job_parser.py
quantum/core/parsers/jobs/schedule_parser.py
quantum/core/parsers/jobs/thread_parser.py
quantum/core/parsers/messaging/__init__.py
quantum/core/parsers/messaging/message_ack_parser.py
quantum/core/parsers/messaging/message_nack_parser.py
quantum/core/parsers/messaging/message_parser.py
quantum/core/parsers/messaging/queue_parser.py
quantum/core/parsers/messaging/websocket_parser.py
quantum/core/parsers/persistence/__init__.py
quantum/core/parsers/persistence/persist_parser.py
quantum/core/parsers/routing/__init__.py
quantum/core/parsers/routing/route_parser.py
quantum/core/parsers/scripting/__init__.py
quantum/core/parsers/scripting/pyclass_parser.py
quantum/core/parsers/scripting/pydecorator_parser.py
quantum/core/parsers/scripting/pyimport_parser.py
quantum/core/parsers/scripting/python_parser.py
quantum/core/parsers/services/__init__.py
quantum/core/parsers/services/dump_parser.py
quantum/core/parsers/services/file_parser.py
quantum/core/parsers/services/log_parser.py
quantum/core/parsers/services/mail_parser.py
quantum/packages/__init__.py
quantum/packages/manager.py
quantum/packages/manifest.py
quantum/packages/registry.py
quantum/packages/resolver.py
quantum/plugins/__init__.py
quantum/plugins/hooks.py
quantum/plugins/loader.py
quantum/plugins/manifest.py
quantum/plugins/registry.py
quantum/runtime/__init__.py
quantum/runtime/action_handler.py
quantum/runtime/agent_service.py
quantum/runtime/ast_cache.py
quantum/runtime/auth_service.py
quantum/runtime/component.py
quantum/runtime/component_composer.py
quantum/runtime/component_resolver.py
quantum/runtime/database_service.py
quantum/runtime/email_service.py
quantum/runtime/error_handler.py
quantum/runtime/execution_context.py
quantum/runtime/executor_registry.py
quantum/runtime/expression_cache.py
quantum/runtime/file_upload_service.py
quantum/runtime/function_registry.py
quantum/runtime/game_builder.py
quantum/runtime/game_code_generator.py
quantum/runtime/game_templates.py
quantum/runtime/godot_code_generator.py
quantum/runtime/godot_templates.py
quantum/runtime/job_executor.py
quantum/runtime/knowledge_service.py
quantum/runtime/llm_cache.py
quantum/runtime/llm_providers.py
quantum/runtime/llm_service.py
quantum/runtime/logging_setup.py
quantum/runtime/message_broker.py
quantum/runtime/message_queue_service.py
quantum/runtime/param_validation.py
quantum/runtime/pypy_compat.py
quantum/runtime/python_bridge.py
quantum/runtime/query_validators.py
quantum/runtime/renderer.py
quantum/runtime/service_container.py
quantum/runtime/terminal_builder.py
quantum/runtime/terminal_code_generator.py
quantum/runtime/terminal_templates.py
quantum/runtime/testing_builder.py
quantum/runtime/testing_code_generator.py
quantum/runtime/testing_templates.py
quantum/runtime/ui_builder.py
quantum/runtime/ui_desktop_adapter.py
quantum/runtime/ui_desktop_templates.py
quantum/runtime/ui_html_adapter.py
quantum/runtime/ui_html_templates.py
quantum/runtime/ui_mobile_adapter.py
quantum/runtime/ui_mobile_templates.py
quantum/runtime/ui_textual_adapter.py
quantum/runtime/ui_textual_templates.py
quantum/runtime/ui_tokens.py
quantum/runtime/ui_validator.py
quantum/runtime/validators.py
quantum/runtime/web_server.py
quantum/runtime/websocket_adapter.py
quantum/runtime/websocket_service.py
quantum/runtime/websocket_transport.py
quantum/runtime/wsgi.py
quantum/runtime/adapters/__init__.py
quantum/runtime/adapters/memory_adapter.py
quantum/runtime/adapters/rabbitmq_adapter.py
quantum/runtime/adapters/redis_adapter.py
quantum/runtime/adapters/sqlite_adapter.py
quantum/runtime/executors/__init__.py
quantum/runtime/executors/base.py
quantum/runtime/executors/ai/__init__.py
quantum/runtime/executors/ai/agent_executor.py
quantum/runtime/executors/ai/knowledge_executor.py
quantum/runtime/executors/ai/llm_executor.py
quantum/runtime/executors/ai/team_executor.py
quantum/runtime/executors/control_flow/__init__.py
quantum/runtime/executors/control_flow/if_executor.py
quantum/runtime/executors/control_flow/loop_executor.py
quantum/runtime/executors/control_flow/set_executor.py
quantum/runtime/executors/data/__init__.py
quantum/runtime/executors/data/data_executor.py
quantum/runtime/executors/data/invoke_executor.py
quantum/runtime/executors/data/query_executor.py
quantum/runtime/executors/data/transaction_executor.py
quantum/runtime/executors/jobs/__init__.py
quantum/runtime/executors/jobs/job_executor.py
quantum/runtime/executors/jobs/schedule_executor.py
quantum/runtime/executors/jobs/thread_executor.py
quantum/runtime/executors/messaging/__init__.py
quantum/runtime/executors/messaging/message_ack_executor.py
quantum/runtime/executors/messaging/message_executor.py
quantum/runtime/executors/messaging/queue_executor.py
quantum/runtime/executors/messaging/websocket_executor.py
quantum/runtime/executors/scripting/__init__.py
quantum/runtime/executors/scripting/pyclass_executor.py
quantum/runtime/executors/scripting/pyimport_executor.py
quantum/runtime/executors/scripting/python_executor.py
quantum/runtime/executors/services/__init__.py
quantum/runtime/executors/services/dump_executor.py
quantum/runtime/executors/services/file_executor.py
quantum/runtime/executors/services/log_executor.py
quantum/runtime/executors/services/mail_executor.py
quantum/utils/__init__.py
quantum_framework.egg-info/PKG-INFO
quantum_framework.egg-info/SOURCES.txt
quantum_framework.egg-info/dependency_links.txt
quantum_framework.egg-info/entry_points.txt
quantum_framework.egg-info/requires.txt
quantum_framework.egg-info/top_level.txt
tests/test_agent.py
tests/test_animations.py
tests/test_ast_cache.py
tests/test_cli_commands.py
tests/test_component_library.py
tests/test_desktop_bridge.py
tests/test_expression_cache.py
tests/test_form_validation.py
tests/test_game_codegen.py
tests/test_game_e2e.py
tests/test_game_engine.py
tests/test_game_parser.py
tests/test_godot_codegen.py
tests/test_job_executor.py
tests/test_llm_providers.py
tests/test_message_broker.py
tests/test_message_queue.py
tests/test_mobile_target.py
tests/test_multi_agent.py
tests/test_packages.py
tests/test_plugins.py
tests/test_projects_blog_components_admin.py
tests/test_pypy_compat.py
tests/test_python_scripting.py
tests/test_state_persistence.py
tests/test_terminal_codegen.py
tests/test_terminal_parser.py
tests/test_testing_codegen.py
tests/test_testing_parser.py
tests/test_theming.py
tests/test_ui_html_adapter.py
tests/test_ui_parity.py
tests/test_ui_parser.py
tests/test_ui_textual_adapter.py
tests/test_websocket.py