LICENSE
README.md
pyproject.toml
src/nseg_runtime/__init__.py
src/nseg_runtime/__main__.py
src/nseg_runtime.egg-info/PKG-INFO
src/nseg_runtime.egg-info/SOURCES.txt
src/nseg_runtime.egg-info/dependency_links.txt
src/nseg_runtime.egg-info/entry_points.txt
src/nseg_runtime.egg-info/requires.txt
src/nseg_runtime.egg-info/top_level.txt
src/nseg_runtime/acp/__init__.py
src/nseg_runtime/acp/edit_approval.py
src/nseg_runtime/acp/events.py
src/nseg_runtime/acp/permissions.py
src/nseg_runtime/acp/provenance.py
src/nseg_runtime/acp/server.py
src/nseg_runtime/acp/session.py
src/nseg_runtime/acp/tools.py
src/nseg_runtime/agent/__init__.py
src/nseg_runtime/agent/candidate_generator.py
src/nseg_runtime/agent/context_engine.py
src/nseg_runtime/agent/conversation_loop.py
src/nseg_runtime/agent/final_response.py
src/nseg_runtime/agent/governed_candidate_adapter.py
src/nseg_runtime/agent/governed_loop.py
src/nseg_runtime/agent/iteration_budget.py
src/nseg_runtime/agent/loop.py
src/nseg_runtime/agent/memory_proposal_adapter.py
src/nseg_runtime/agent/observation_handler.py
src/nseg_runtime/agent/prompt_builder.py
src/nseg_runtime/agent/session_store.py
src/nseg_runtime/agent/tool_call_loop.py
src/nseg_runtime/api/__init__.py
src/nseg_runtime/api/app.py
src/nseg_runtime/api/auth.py
src/nseg_runtime/api/dependencies.py
src/nseg_runtime/api/errors.py
src/nseg_runtime/api/operator_panel.py
src/nseg_runtime/api/routes_admin.py
src/nseg_runtime/api/routes_approvals.py
src/nseg_runtime/api/routes_audit.py
src/nseg_runtime/api/routes_consensus.py
src/nseg_runtime/api/routes_dashboard.py
src/nseg_runtime/api/routes_extensions.py
src/nseg_runtime/api/routes_gateway.py
src/nseg_runtime/api/routes_health.py
src/nseg_runtime/api/routes_jobs.py
src/nseg_runtime/api/routes_learning.py
src/nseg_runtime/api/routes_mcp.py
src/nseg_runtime/api/routes_providers.py
src/nseg_runtime/api/routes_requests.py
src/nseg_runtime/api/routes_skills.py
src/nseg_runtime/api/schemas.py
src/nseg_runtime/approvals/__init__.py
src/nseg_runtime/approvals/approval_store.py
src/nseg_runtime/approvals/approval_workflow.py
src/nseg_runtime/approvals/escalation.py
src/nseg_runtime/approvals/operator_actions.py
src/nseg_runtime/async_jobs/__init__.py
src/nseg_runtime/async_jobs/async_job.py
src/nseg_runtime/async_jobs/job_queue.py
src/nseg_runtime/async_jobs/job_receipts.py
src/nseg_runtime/async_jobs/job_states.py
src/nseg_runtime/async_jobs/milestones.py
src/nseg_runtime/async_jobs/notification_targets.py
src/nseg_runtime/billing/__init__.py
src/nseg_runtime/channels/__init__.py
src/nseg_runtime/channels/api_channel.py
src/nseg_runtime/channels/cli_channel.py
src/nseg_runtime/channels/discord.py
src/nseg_runtime/channels/telegram.py
src/nseg_runtime/channels/webhook_channel.py
src/nseg_runtime/channels/worker_channel.py
src/nseg_runtime/channels/platforms/__init__.py
src/nseg_runtime/channels/platforms/dingtalk.py
src/nseg_runtime/channels/platforms/discord.py
src/nseg_runtime/channels/platforms/email_channel.py
src/nseg_runtime/channels/platforms/feishu.py
src/nseg_runtime/channels/platforms/line.py
src/nseg_runtime/channels/platforms/matrix.py
src/nseg_runtime/channels/platforms/platform_capabilities.py
src/nseg_runtime/channels/platforms/relay_adapter.py
src/nseg_runtime/channels/platforms/signal.py
src/nseg_runtime/channels/platforms/slack.py
src/nseg_runtime/channels/platforms/teams.py
src/nseg_runtime/channels/platforms/telegram.py
src/nseg_runtime/channels/platforms/whatsapp.py
src/nseg_runtime/cli/__init__.py
src/nseg_runtime/cli/_main.py
src/nseg_runtime/cli/audit.py
src/nseg_runtime/cli/consensus.py
src/nseg_runtime/cli/dashboard.py
src/nseg_runtime/cli/doctor.py
src/nseg_runtime/cli/evidence.py
src/nseg_runtime/cli/gateway.py
src/nseg_runtime/cli/policy.py
src/nseg_runtime/cli/providers.py
src/nseg_runtime/cli/security.py
src/nseg_runtime/cli/skills.py
src/nseg_runtime/configuration/__init__.py
src/nseg_runtime/configuration/env_config.py
src/nseg_runtime/configuration/runtime_config.py
src/nseg_runtime/consensus/__init__.py
src/nseg_runtime/consensus/consensus_cache.py
src/nseg_runtime/consensus/consensus_router.py
src/nseg_runtime/consensus/cost_budget_controller.py
src/nseg_runtime/consensus/judge_model.py
src/nseg_runtime/consensus/live_panel.py
src/nseg_runtime/consensus/model_panel.py
src/nseg_runtime/consensus/model_route_decision.py
src/nseg_runtime/consensus/prompts.py
src/nseg_runtime/consensus/synth_model.py
src/nseg_runtime/context/__init__.py
src/nseg_runtime/context/cache_pressure.py
src/nseg_runtime/context/coding_context.py
src/nseg_runtime/context/coding_posture.py
src/nseg_runtime/context/compressor.py
src/nseg_runtime/context/context_breakdown.py
src/nseg_runtime/context/conversation_compression.py
src/nseg_runtime/context/progressive_discovery.py
src/nseg_runtime/context/prompt_cache.py
src/nseg_runtime/context/references.py
src/nseg_runtime/context/turn_context.py
src/nseg_runtime/contracts/__init__.py
src/nseg_runtime/contracts/approval_records.py
src/nseg_runtime/contracts/async_job_records.py
src/nseg_runtime/contracts/base.py
src/nseg_runtime/contracts/capability_records.py
src/nseg_runtime/contracts/consensus_records.py
src/nseg_runtime/contracts/constants.py
src/nseg_runtime/contracts/evidence_records.py
src/nseg_runtime/contracts/learning_records.py
src/nseg_runtime/contracts/memory_records.py
src/nseg_runtime/contracts/policy_records.py
src/nseg_runtime/contracts/replay_records.py
src/nseg_runtime/contracts/request_records.py
src/nseg_runtime/contracts/review_records.py
src/nseg_runtime/contracts/tool_records.py
src/nseg_runtime/contracts/validation.py
src/nseg_runtime/cron/__init__.py
src/nseg_runtime/cron/blueprints.py
src/nseg_runtime/cron/scheduler.py
src/nseg_runtime/dashboard/__init__.py
src/nseg_runtime/dashboard/app.py
src/nseg_runtime/dashboard/auth.py
src/nseg_runtime/dashboard/panels.py
src/nseg_runtime/dashboard/plugin_api.py
src/nseg_runtime/dashboard/ws_hub.py
src/nseg_runtime/evaluation/__init__.py
src/nseg_runtime/evaluation/challenge_runner.py
src/nseg_runtime/evaluation/consensus_replay.py
src/nseg_runtime/evaluation/verify_recipes.py
src/nseg_runtime/evaluation/verify_runner.py
src/nseg_runtime/evidence/__init__.py
src/nseg_runtime/evidence/citation_anchors.py
src/nseg_runtime/evidence/content_hash.py
src/nseg_runtime/evidence/evidence_store.py
src/nseg_runtime/evidence/fetch_chain.py
src/nseg_runtime/evidence/fetch_pipeline.py
src/nseg_runtime/evidence/fetch_strategies.py
src/nseg_runtime/evidence/http_fetch.py
src/nseg_runtime/evidence/metadata_extract.py
src/nseg_runtime/evidence/readability.py
src/nseg_runtime/evidence/source_cache.py
src/nseg_runtime/execution/__init__.py
src/nseg_runtime/execution/backend_protocol.py
src/nseg_runtime/execution/backend_router.py
src/nseg_runtime/execution/daytona_backend.py
src/nseg_runtime/execution/docker_backend.py
src/nseg_runtime/execution/local_backend.py
src/nseg_runtime/execution/modal_backend.py
src/nseg_runtime/execution/resource_limits.py
src/nseg_runtime/execution/singularity_backend.py
src/nseg_runtime/execution/ssh_backend.py
src/nseg_runtime/extensions/__init__.py
src/nseg_runtime/extensions/capability_grants.py
src/nseg_runtime/extensions/capability_sandbox.py
src/nseg_runtime/extensions/certification.py
src/nseg_runtime/extensions/extension_loader.py
src/nseg_runtime/extensions/extension_manifest.py
src/nseg_runtime/extensions/extension_registry.py
src/nseg_runtime/extensions/plugin_loader.py
src/nseg_runtime/gateway/__init__.py
src/nseg_runtime/gateway/channel_auth.py
src/nseg_runtime/gateway/delivery.py
src/nseg_runtime/gateway/delivery_ledger.py
src/nseg_runtime/gateway/drain_control.py
src/nseg_runtime/gateway/edit_streamer.py
src/nseg_runtime/gateway/gateway_service.py
src/nseg_runtime/gateway/memory_monitor.py
src/nseg_runtime/gateway/mirror.py
src/nseg_runtime/gateway/notifications.py
src/nseg_runtime/gateway/pairing.py
src/nseg_runtime/gateway/profile_routing.py
src/nseg_runtime/gateway/readiness.py
src/nseg_runtime/gateway/relay.py
src/nseg_runtime/gateway/restart_guard.py
src/nseg_runtime/gateway/scale_to_zero.py
src/nseg_runtime/gateway/session_context.py
src/nseg_runtime/gateway/session_manager.py
src/nseg_runtime/gateway/session_router.py
src/nseg_runtime/gateway/shutdown_watchdog.py
src/nseg_runtime/gateway/slash_commands.py
src/nseg_runtime/gateway/stream_consumer.py
src/nseg_runtime/gateway/stream_delivery.py
src/nseg_runtime/gateway/stream_events.py
src/nseg_runtime/gateway/streaming_tts.py
src/nseg_runtime/gateway/turn_lease.py
src/nseg_runtime/high_assurance/__init__.py
src/nseg_runtime/high_assurance/certified_extensions.py
src/nseg_runtime/high_assurance/fail_closed.py
src/nseg_runtime/high_assurance/local_model_registry.py
src/nseg_runtime/high_assurance/profile.py
src/nseg_runtime/i18n/__init__.py
src/nseg_runtime/integrations/__init__.py
src/nseg_runtime/integrations/mcp_capability_adapter.py
src/nseg_runtime/integrations/provider_client.py
src/nseg_runtime/integrations/webhook_adapter.py
src/nseg_runtime/kanban/__init__.py
src/nseg_runtime/kanban/board.py
src/nseg_runtime/kanban/board_policy.py
src/nseg_runtime/kanban/diagnostics.py
src/nseg_runtime/kanban/isolation.py
src/nseg_runtime/kanban/swarm_coordinator.py
src/nseg_runtime/kanban/task_decomposer.py
src/nseg_runtime/kanban/worker_lifecycle.py
src/nseg_runtime/learning/__init__.py
src/nseg_runtime/learning/correction_ingest.py
src/nseg_runtime/learning/correction_loop.py
src/nseg_runtime/learning/feedback_loop.py
src/nseg_runtime/learning/learning_graph.py
src/nseg_runtime/learning/learning_policy.py
src/nseg_runtime/learning/learning_queue.py
src/nseg_runtime/learning/memory_nudge.py
src/nseg_runtime/learning/memory_promotion.py
src/nseg_runtime/learning/session_search.py
src/nseg_runtime/learning/skill_evolution.py
src/nseg_runtime/learning/skill_genesis.py
src/nseg_runtime/learning/skill_learning.py
src/nseg_runtime/learning/user_modeling.py
src/nseg_runtime/mcp/__init__.py
src/nseg_runtime/mcp/capability_mapper.py
src/nseg_runtime/mcp/catalog.py
src/nseg_runtime/mcp/config_loader.py
src/nseg_runtime/mcp/governed_bridge.py
src/nseg_runtime/mcp/http_transport.py
src/nseg_runtime/mcp/lifecycle.py
src/nseg_runtime/mcp/manifest.py
src/nseg_runtime/mcp/oauth_flow.py
src/nseg_runtime/mcp/policy_boundary.py
src/nseg_runtime/mcp/sandbox.py
src/nseg_runtime/mcp/schema_cache.py
src/nseg_runtime/mcp/security_policy.py
src/nseg_runtime/mcp/server_registry.py
src/nseg_runtime/mcp/stdio_transport.py
src/nseg_runtime/mcp/stdio_watchdog.py
src/nseg_runtime/mcp/tool_bridge.py
src/nseg_runtime/memory/__init__.py
src/nseg_runtime/memory/background_review.py
src/nseg_runtime/memory/curator.py
src/nseg_runtime/memory/fabric.py
src/nseg_runtime/memory/learning_graph.py
src/nseg_runtime/memory/manager.py
src/nseg_runtime/memory/promotion.py
src/nseg_runtime/memory/provider_protocol.py
src/nseg_runtime/memory/skill_bundles.py
src/nseg_runtime/memory/vector_search.py
src/nseg_runtime/observability/__init__.py
src/nseg_runtime/observability/events.py
src/nseg_runtime/observability/insights.py
src/nseg_runtime/observability/metrics.py
src/nseg_runtime/observability/otel_traces.py
src/nseg_runtime/observability/plugin_llm.py
src/nseg_runtime/observability/prometheus.py
src/nseg_runtime/observability/scorecards.py
src/nseg_runtime/observability/structured_logger.py
src/nseg_runtime/observability/trace_export.py
src/nseg_runtime/observability/traces.py
src/nseg_runtime/observability/trajectory.py
src/nseg_runtime/observability/usage_accounting.py
src/nseg_runtime/observability/verification_ledger.py
src/nseg_runtime/operations/__init__.py
src/nseg_runtime/operations/crash_loop.py
src/nseg_runtime/operations/doctor.py
src/nseg_runtime/operations/forensics.py
src/nseg_runtime/operations/heartbeat.py
src/nseg_runtime/operations/recovery.py
src/nseg_runtime/orchestration/__init__.py
src/nseg_runtime/orchestration/credits_tracker.py
src/nseg_runtime/orchestration/moa_engine.py
src/nseg_runtime/orchestration/moa_trace.py
src/nseg_runtime/orchestration/model_registry.py
src/nseg_runtime/orchestration/provider_pool.py
src/nseg_runtime/orchestration/usage_pricing.py
src/nseg_runtime/plugins/__init__.py
src/nseg_runtime/plugins/browser_backends.py
src/nseg_runtime/plugins/image_gen.py
src/nseg_runtime/plugins/memory_providers.py
src/nseg_runtime/plugins/model_providers.py
src/nseg_runtime/plugins/observability_providers.py
src/nseg_runtime/plugins/platform_adapters.py
src/nseg_runtime/plugins/registry.py
src/nseg_runtime/plugins/sandbox.py
src/nseg_runtime/policy/__init__.py
src/nseg_runtime/policy/downgrade_policy.py
src/nseg_runtime/policy/gamma.py
src/nseg_runtime/policy/policy_input.py
src/nseg_runtime/policy/policy_rule_set.py
src/nseg_runtime/policy/reason_codes.py
src/nseg_runtime/policy/risk_router.py
src/nseg_runtime/policy/risk_tiers.py
src/nseg_runtime/policy/route_audit.py
src/nseg_runtime/providers/__init__.py
src/nseg_runtime/providers/anthropic_client.py
src/nseg_runtime/providers/auxiliary_router.py
src/nseg_runtime/providers/capability_registry.py
src/nseg_runtime/providers/catalog.py
src/nseg_runtime/providers/cost_guard.py
src/nseg_runtime/providers/fallback.py
src/nseg_runtime/providers/fallback_chain.py
src/nseg_runtime/providers/local_provider.py
src/nseg_runtime/providers/mock_provider.py
src/nseg_runtime/providers/model_switch.py
src/nseg_runtime/providers/normalization.py
src/nseg_runtime/providers/openai_client.py
src/nseg_runtime/providers/profile_registry.py
src/nseg_runtime/providers/provider_client.py
src/nseg_runtime/providers/provider_protocol.py
src/nseg_runtime/providers/provider_registry.py
src/nseg_runtime/providers/provider_router.py
src/nseg_runtime/providers/rate_limit.py
src/nseg_runtime/providers/streaming.py
src/nseg_runtime/providers/adapters/__init__.py
src/nseg_runtime/providers/adapters/base_adapter.py
src/nseg_runtime/providers/adapters/provider_adapters.py
src/nseg_runtime/proxy/__init__.py
src/nseg_runtime/replay/__init__.py
src/nseg_runtime/replay/agent_state.py
src/nseg_runtime/replay/replay_capsule.py
src/nseg_runtime/replay/replay_class.py
src/nseg_runtime/replay/replay_loader.py
src/nseg_runtime/replay/replay_serializer.py
src/nseg_runtime/resilience/__init__.py
src/nseg_runtime/resilience/credential_pool.py
src/nseg_runtime/resilience/error_classifier.py
src/nseg_runtime/resilience/rate_limiter.py
src/nseg_runtime/resilience/reasoning_timeouts.py
src/nseg_runtime/resilience/retry_engine.py
src/nseg_runtime/resilience/ssl_guard.py
src/nseg_runtime/resilience/stream_diag.py
src/nseg_runtime/review/__init__.py
src/nseg_runtime/review/pipeline.py
src/nseg_runtime/review/reviewer_panel.py
src/nseg_runtime/runtime/__init__.py
src/nseg_runtime/runtime/create_runtime.py
src/nseg_runtime/runtime/lane_selector.py
src/nseg_runtime/runtime/request_pipeline.py
src/nseg_runtime/runtime/response_builder.py
src/nseg_runtime/runtime/runtime_context.py
src/nseg_runtime/runtime/shutdown.py
src/nseg_runtime/security/__init__.py
src/nseg_runtime/security/command_approval.py
src/nseg_runtime/security/content_isolation.py
src/nseg_runtime/security/file_safety.py
src/nseg_runtime/security/hardline_blocklist.py
src/nseg_runtime/security/malware_scan.py
src/nseg_runtime/security/output_validator.py
src/nseg_runtime/security/pre_exec_scan.py
src/nseg_runtime/security/prompt_injection_scanner.py
src/nseg_runtime/security/redaction.py
src/nseg_runtime/security/secret_scanner.py
src/nseg_runtime/security/secret_scope.py
src/nseg_runtime/security/threat_scanner.py
src/nseg_runtime/security/url_safety.py
src/nseg_runtime/security/write_gate.py
src/nseg_runtime/security/secrets/__init__.py
src/nseg_runtime/security/secrets/access_audit.py
src/nseg_runtime/security/secrets/bitwarden_source.py
src/nseg_runtime/security/secrets/command_source.py
src/nseg_runtime/security/secrets/credential_pool.py
src/nseg_runtime/security/secrets/env_source.py
src/nseg_runtime/security/secrets/onepassword_source.py
src/nseg_runtime/security/secrets/secret_protocol.py
src/nseg_runtime/security/secrets/secret_registry.py
src/nseg_runtime/sial/__init__.py
src/nseg_runtime/sial/commit.py
src/nseg_runtime/skills/__init__.py
src/nseg_runtime/skills/ast_audit.py
src/nseg_runtime/skills/blueprint_bridge.py
src/nseg_runtime/skills/ecosystem_health.py
src/nseg_runtime/skills/hub.py
src/nseg_runtime/skills/library.py
src/nseg_runtime/skills/provenance.py
src/nseg_runtime/skills/quarantine.py
src/nseg_runtime/skills/skill_learning.py
src/nseg_runtime/skills/skill_loader.py
src/nseg_runtime/skills/skill_manifest.py
src/nseg_runtime/skills/skill_policy.py
src/nseg_runtime/skills/skill_registry.py
src/nseg_runtime/skills/skill_review.py
src/nseg_runtime/skills/cron/__init__.py
src/nseg_runtime/skills/cron/jobs.py
src/nseg_runtime/skills/cron/lifecycle.py
src/nseg_runtime/skills/cron/scheduler.py
src/nseg_runtime/storage/__init__.py
src/nseg_runtime/storage/in_memory_store.py
src/nseg_runtime/storage/jsonl_audit_store.py
src/nseg_runtime/storage/migrations.py
src/nseg_runtime/storage/record_repository.py
src/nseg_runtime/storage/safe_read.py
src/nseg_runtime/storage/sqlite_store.py
src/nseg_runtime/storage/store_contracts.py
src/nseg_runtime/support/__init__.py
src/nseg_runtime/support/candidate_support.py
src/nseg_runtime/tools/__init__.py
src/nseg_runtime/tools/async_delegate.py
src/nseg_runtime/tools/audit_trail.py
src/nseg_runtime/tools/batch_approval.py
src/nseg_runtime/tools/builtin_tools.py
src/nseg_runtime/tools/checkpoint.py
src/nseg_runtime/tools/clarify.py
src/nseg_runtime/tools/delegate.py
src/nseg_runtime/tools/fuzzy_match.py
src/nseg_runtime/tools/governed_registry.py
src/nseg_runtime/tools/guardrails.py
src/nseg_runtime/tools/hardline_blocklist.py
src/nseg_runtime/tools/mcp_adapter.py
src/nseg_runtime/tools/process_registry.py
src/nseg_runtime/tools/progressive_disclosure.py
src/nseg_runtime/tools/resource_guard.py
src/nseg_runtime/tools/tool_executor.py
src/nseg_runtime/tools/tool_intent_builder.py
src/nseg_runtime/tools/tool_policy.py
src/nseg_runtime/tools/tool_registry.py
src/nseg_runtime/tools/vision.py
src/nseg_runtime/tools/browser/__init__.py
src/nseg_runtime/tools/browser/browser_tool.py
src/nseg_runtime/tools/browser/camofox.py
src/nseg_runtime/tools/browser/cdp_client.py
src/nseg_runtime/tools/browser/cloud_router.py
src/nseg_runtime/tools/browser/console_bridge.py
src/nseg_runtime/tools/browser/lightpanda.py
src/nseg_runtime/tools/browser/secret_exfil_guard.py
src/nseg_runtime/tools/browser/snapshot.py
src/nseg_runtime/tools/browser/ssrf_guard.py
src/nseg_runtime/tools/browser/supervisor.py
src/nseg_runtime/tools/builtin/__init__.py
src/nseg_runtime/tools/builtin/code_exec.py
src/nseg_runtime/tools/builtin/discovery.py
src/nseg_runtime/tools/builtin/file_tools.py
src/nseg_runtime/tools/builtin/lsp.py
src/nseg_runtime/tools/builtin/patch_parser.py
src/nseg_runtime/tools/builtin/read_range.py
src/nseg_runtime/tools/builtin/terminal.py
src/nseg_runtime/tools/builtin/todo.py
src/nseg_runtime/tools/builtin/web_search.py
src/nseg_runtime/tools/builtin/working_diff.py
src/nseg_runtime/tools/computer_use/__init__.py
src/nseg_runtime/tools/computer_use/action_executor.py
src/nseg_runtime/tools/computer_use/capture_router.py
src/nseg_runtime/tools/computer_use/cua_protocol.py
src/nseg_runtime/tools/computer_use/delivery_ladder.py
src/nseg_runtime/tools/computer_use/platform_detect.py
src/nseg_runtime/tools/computer_use/vision_router.py
src/nseg_runtime/tools/voice/__init__.py
src/nseg_runtime/tools/voice/audio_bridge.py
src/nseg_runtime/tools/voice/tts_engine.py
src/nseg_runtime/tools/voice/voice_conversation.py
src/nseg_runtime/tools/voice/voice_input.py
src/nseg_runtime/tools/voice/wakeword.py
src/nseg_runtime/tui/__init__.py
src/nseg_runtime/tui/app.py
src/nseg_runtime/tui/composer.py
src/nseg_runtime/tui/interrupt.py
src/nseg_runtime/tui/session_panel.py
src/nseg_runtime/tui/status_bar.py
src/nseg_runtime/tui/stream_view.py
src/nseg_runtime/worker/__init__.py
src/nseg_runtime/worker/cancel_downgrade.py
src/nseg_runtime/worker/dispatcher.py
src/nseg_runtime/worker/handlers.py
src/nseg_runtime/worker/lease_runner.py
src/nseg_runtime/worker/leases.py
src/nseg_runtime/worker/main.py
src/nseg_runtime/worker/notification_dispatch.py
src/nseg_runtime/worker/persistent_queue.py
src/nseg_runtime/worker/retries.py
tests/test_public_api.py