LICENSE
README.md
pyproject.toml
nexus/__init__.py
nexus/cli.py
nexus/adapters/__init__.py
nexus/adapters/registry.py
nexus/adapters/ai/__init__.py
nexus/adapters/ai/base.py
nexus/adapters/ai/codex_provider.py
nexus/adapters/ai/copilot_provider.py
nexus/adapters/ai/gemini_provider.py
nexus/adapters/ai/openai_provider.py
nexus/adapters/ai/registry.py
nexus/adapters/analytics/__init__.py
nexus/adapters/analytics/file_audit_query.py
nexus/adapters/analytics/loki.py
nexus/adapters/git/__init__.py
nexus/adapters/git/base.py
nexus/adapters/git/github.py
nexus/adapters/git/gitlab.py
nexus/adapters/git/utils.py
nexus/adapters/notifications/__init__.py
nexus/adapters/notifications/base.py
nexus/adapters/notifications/discord.py
nexus/adapters/notifications/interactive.py
nexus/adapters/notifications/slack.py
nexus/adapters/storage/__init__.py
nexus/adapters/storage/_workflow_serde.py
nexus/adapters/storage/base.py
nexus/adapters/storage/file.py
nexus/adapters/storage/file_workflow_state.py
nexus/adapters/storage/postgres.py
nexus/adapters/storage/postgres_workflow_state.py
nexus/adapters/storage/structured_log.py
nexus/adapters/storage/workflow_state_adapter.py
nexus/adapters/transcription/__init__.py
nexus/adapters/transcription/base.py
nexus/adapters/transcription/whisper_provider.py
nexus/core/__init__.py
nexus/core/agents.py
nexus/core/analytics.py
nexus/core/approval.py
nexus/core/audit_query.py
nexus/core/chat_agents_schema.py
nexus/core/completion.py
nexus/core/completion_store.py
nexus/core/events.py
nexus/core/execution.py
nexus/core/guards.py
nexus/core/idempotency.py
nexus/core/knowledge_alignment.py
nexus/core/models.py
nexus/core/monitor.py
nexus/core/orchestrator.py
nexus/core/process_orchestrator.py
nexus/core/prompt_budget.py
nexus/core/router.py
nexus/core/workflow.py
nexus/core/workflow_state.py
nexus/core/workspace.py
nexus/core/yaml_loader.py
nexus/core/project/__init__.py
nexus/core/project/repo_utils.py
nexus/core/storage/audit.py
nexus/core/utils/logging_filters.py
nexus/core/utils/task_name.py
nexus/core/workflow_engine/__init__.py
nexus/core/workflow_engine/audit_event_service.py
nexus/core/workflow_engine/completion_service.py
nexus/core/workflow_engine/condition_eval.py
nexus/core/workflow_engine/transition_service.py
nexus/core/workflow_engine/workflow_definition_loader.py
nexus/plugins/__init__.py
nexus/plugins/base.py
nexus/plugins/plugin_runtime.py
nexus/plugins/registry.py
nexus/plugins/builtin/__init__.py
nexus/plugins/builtin/agent_launch_policy_plugin.py
nexus/plugins/builtin/ai_runtime_plugin.py
nexus/plugins/builtin/base_chat_event_handler.py
nexus/plugins/builtin/discord_event_handler_plugin.py
nexus/plugins/builtin/discord_interactive_plugin.py
nexus/plugins/builtin/git_webhook_policy_plugin.py
nexus/plugins/builtin/github_issue_plugin.py
nexus/plugins/builtin/gitlab_issue_plugin.py
nexus/plugins/builtin/json_state_plugin.py
nexus/plugins/builtin/runtime_ops_plugin.py
nexus/plugins/builtin/slack_event_handler_plugin.py
nexus/plugins/builtin/slack_interactive_plugin.py
nexus/plugins/builtin/telegram_event_handler_plugin.py
nexus/plugins/builtin/telegram_interactive_plugin.py
nexus/plugins/builtin/telegram_notification_plugin.py
nexus/plugins/builtin/workflow_monitor_policy_plugin.py
nexus/plugins/builtin/workflow_policy_plugin.py
nexus/plugins/builtin/workflow_state_engine_plugin.py
nexus/plugins/builtin/ai_runtime/__init__.py
nexus/plugins/builtin/ai_runtime/agent_invoke_service.py
nexus/plugins/builtin/ai_runtime/analysis_service.py
nexus/plugins/builtin/ai_runtime/fallback_policy.py
nexus/plugins/builtin/ai_runtime/operation_agent_policy.py
nexus/plugins/builtin/ai_runtime/provider_registry.py
nexus/plugins/builtin/ai_runtime/transcription_service.py
nexus/plugins/builtin/ai_runtime/provider_invokers/__init__.py
nexus/plugins/builtin/ai_runtime/provider_invokers/agent_invokers.py
nexus/plugins/builtin/ai_runtime/provider_invokers/analysis_invokers.py
nexus/plugins/builtin/ai_runtime/provider_invokers/codex_invoker.py
nexus/plugins/builtin/ai_runtime/provider_invokers/subprocess_utils.py
nexus/plugins/builtin/ai_runtime/provider_invokers/transcription_invokers.py
nexus/plugins/builtin/ai_runtime/provider_invokers/whisper_invoker.py
nexus/translators/__init__.py
nexus/translators/to_copilot.py
nexus/translators/to_markdown.py
nexus/translators/to_python.py
nexus_arc.egg-info/PKG-INFO
nexus_arc.egg-info/SOURCES.txt
nexus_arc.egg-info/dependency_links.txt
nexus_arc.egg-info/entry_points.txt
nexus_arc.egg-info/requires.txt
nexus_arc.egg-info/top_level.txt
tests/test_adapters.py
tests/test_agents.py
tests/test_ai_runtime_policy_helpers.py
tests/test_builtin_agent_launch_policy_plugin.py
tests/test_builtin_ai_runtime_plugin.py
tests/test_builtin_git_webhook_policy_plugin.py
tests/test_builtin_github_issue_plugin.py
tests/test_builtin_json_state_plugin.py
tests/test_builtin_runtime_ops_plugin.py
tests/test_builtin_telegram_notification_plugin.py
tests/test_builtin_workflow_monitor_policy_plugin.py
tests/test_builtin_workflow_policy_plugin.py
tests/test_builtin_workflow_state_engine_plugin.py
tests/test_chat_agents_schema.py
tests/test_cli.py
tests/test_complete_step_for_issue.py
tests/test_completion.py
tests/test_conditional_steps.py
tests/test_file_workflow_state.py
tests/test_github_pr_linking.py
tests/test_guards.py
tests/test_knowledge_alignment.py
tests/test_plugins.py
tests/test_postgres_storage_completion_metadata.py
tests/test_postgres_workflow_state.py
tests/test_process_orchestrator.py
tests/test_prompt_budget.py
tests/test_router_steps.py
tests/test_storage_workflow_state_adapter.py
tests/test_transcription_provider.py
tests/test_workflow_callbacks.py
tests/test_workflow_dry_run.py
tests/test_workflow_engine_helpers.py
tests/test_workflow_type.py
tests/test_workspace.py
tests/test_yaml_loader.py