LICENSE
README.md
pyproject.toml
src/nodus/__init__.py
src/nodus/__main__.py
src/nodus/result.py
src/nodus/builtins/__init__.py
src/nodus/builtins/collections.py
src/nodus/builtins/coroutine.py
src/nodus/builtins/io.py
src/nodus/builtins/math.py
src/nodus/builtins/nodus_builtins.py
src/nodus/cli/__init__.py
src/nodus/cli/cli.py
src/nodus/compiler/__init__.py
src/nodus/compiler/compiler.py
src/nodus/compiler/optimizer.py
src/nodus/compiler/symbol_table.py
src/nodus/dap/__init__.py
src/nodus/dap/server.py
src/nodus/frontend/__init__.py
src/nodus/frontend/lexer.py
src/nodus/frontend/parser.py
src/nodus/frontend/type_system.py
src/nodus/frontend/types.py
src/nodus/frontend/visitor.py
src/nodus/frontend/ast/__init__.py
src/nodus/frontend/ast/ast_nodes.py
src/nodus/frontend/ast/ast_printer.py
src/nodus/frontend/ast/ast_serializer.py
src/nodus/lsp/__init__.py
src/nodus/lsp/server.py
src/nodus/main/__init__.py
src/nodus/main/language.py
src/nodus/main/nodus.py
src/nodus/orchestration/__init__.py
src/nodus/orchestration/task_graph.py
src/nodus/orchestration/workflow_lowering.py
src/nodus/orchestration/workflow_state.py
src/nodus/runtime/__init__.py
src/nodus/runtime/bytecode_cache.py
src/nodus/runtime/channel.py
src/nodus/runtime/coroutine.py
src/nodus/runtime/debugger.py
src/nodus/runtime/dependency_graph.py
src/nodus/runtime/diagnostics.py
src/nodus/runtime/embedding.py
src/nodus/runtime/errors.py
src/nodus/runtime/module.py
src/nodus/runtime/module_loader.py
src/nodus/runtime/profiler.py
src/nodus/runtime/project.py
src/nodus/runtime/runtime_events.py
src/nodus/runtime/runtime_stats.py
src/nodus/runtime/scheduler.py
src/nodus/runtime/semver.py
src/nodus/runtime/sessions.py
src/nodus/runtime/snapshots.py
src/nodus/services/__init__.py
src/nodus/services/agent_runtime.py
src/nodus/services/api.py
src/nodus/services/memory_runtime.py
src/nodus/services/server.py
src/nodus/services/tool_runtime.py
src/nodus/stdlib/__init__.py
src/nodus/support/__init__.py
src/nodus/support/config.py
src/nodus/support/version.py
src/nodus/tooling/__init__.py
src/nodus/tooling/analyzer.py
src/nodus/tooling/debugger.py
src/nodus/tooling/diagnostics.py
src/nodus/tooling/formatter.py
src/nodus/tooling/installer.py
src/nodus/tooling/loader.py
src/nodus/tooling/package_manager.py
src/nodus/tooling/project.py
src/nodus/tooling/registry.py
src/nodus/tooling/registry_client.py
src/nodus/tooling/repl.py
src/nodus/tooling/resolver.py
src/nodus/tooling/runner.py
src/nodus/tooling/sandbox.py
src/nodus/tooling/semver.py
src/nodus/tooling/tiny_vm_lang_functions.py
src/nodus/tooling/user_config.py
src/nodus/tools/__init__.py
src/nodus/tools/ast_tool.py
src/nodus/tools/check_tool.py
src/nodus/tools/dis_tool.py
src/nodus/tools/execute_tool.py
src/nodus/vm/__init__.py
src/nodus/vm/runtime_values.py
src/nodus/vm/vm.py
src/nodus_lang.egg-info/PKG-INFO
src/nodus_lang.egg-info/SOURCES.txt
src/nodus_lang.egg-info/dependency_links.txt
src/nodus_lang.egg-info/entry_points.txt
src/nodus_lang.egg-info/top_level.txt
tests/test_agent_runtime.py
tests/test_api_endpoints.py
tests/test_ast_serialization.py
tests/test_bytecode_cache.py
tests/test_bytecode_version.py
tests/test_channels.py
tests/test_cli_allowed_paths.py
tests/test_cli_compatibility.py
tests/test_closures.py
tests/test_coroutines.py
tests/test_dap_server.py
tests/test_debugger.py
tests/test_dependency_resolution.py
tests/test_destructuring.py
tests/test_dis_serialization.py
tests/test_embedding.py
tests/test_embedding_input.py
tests/test_exceptions.py
tests/test_finally.py
tests/test_formatter_coverage.py
tests/test_formatter_fixtures.py
tests/test_formatter_fnexpr.py
tests/test_formatter_foreach.py
tests/test_goal_dsl.py
tests/test_import_containment.py
tests/test_incremental_compilation.py
tests/test_install_command.py
tests/test_installer.py
tests/test_iteration.py
tests/test_lexer.py
tests/test_load_local.py
tests/test_lockfile.py
tests/test_lsp_diagnostics.py
tests/test_lsp_server.py
tests/test_manifest.py
tests/test_methods.py
tests/test_module_isolation.py
tests/test_module_loader.py
tests/test_module_runtime_objects.py
tests/test_nodus.py
tests/test_optimizer.py
tests/test_packages.py
tests/test_profiler.py
tests/test_project_manifest.py
tests/test_records.py
tests/test_registry_client.py
tests/test_repl_commands.py
tests/test_resolver.py
tests/test_runner_results.py
tests/test_runtime_events.py
tests/test_runtime_limits.py
tests/test_runtime_reflection.py
tests/test_runtime_stats.py
tests/test_sandbox_filesystem.py
tests/test_sandbox_limits.py
tests/test_scheduler.py
tests/test_scheduler_fairness.py
tests/test_scope.py
tests/test_semver.py
tests/test_server.py
tests/test_sessions.py
tests/test_snapshots.py
tests/test_stdlib.py
tests/test_task_graph.py
tests/test_tools.py
tests/test_types.py
tests/test_vm_errors.py
tests/test_workflow_dsl.py
tests/test_workflow_persistence.py