├── .devcontainer ├── .vscode │ └── settings.json ├── OPTIMIZING_FOR_CODESPACES.md ├── POST_SETUP_README.md ├── README.md └── devcontainer.json ├── .dockerignore ├── .gitattributes ├── .github ├── policheck.yml └── workflows │ ├── assistants-codespace-assistant.yml │ ├── assistants-document-assistant.yml │ ├── assistants-explorer-assistant.yml │ ├── assistants-guided-conversation-assistant.yml │ ├── assistants-knowledge-transfer-assistant.yml │ ├── assistants-navigator-assistant.yml │ ├── assistants-project-assistant.yml │ ├── assistants-prospector-assistant.yml │ ├── assistants-skill-assistant.yml │ ├── libraries.yml │ ├── mcp-server-giphy.yml │ ├── mcp-server-memory-filesystem-edit.yml │ ├── mcp-server-memory-user-bio.yml │ ├── mcp-server-memory-whiteboard.yml │ ├── mcp-server-open-deep-research-clone.yml │ ├── mcp-server-web-research.yml │ ├── workbench-app.yml │ └── workbench-service.yml ├── .gitignore ├── .multi-root-tools ├── Makefile └── README.md ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── KNOWN_ISSUES.md ├── LICENSE ├── Makefile ├── README.md ├── RESPONSIBLE_AI_FAQ.md ├── SECURITY.md ├── SUPPORT.md ├── ai_context └── generated │ ├── ASPIRE_ORCHESTRATOR.md │ ├── ASSISTANTS_OTHER.md │ ├── ASSISTANTS_OVERVIEW.md │ ├── ASSISTANT_CODESPACE.md │ ├── ASSISTANT_DOCUMENT.md │ ├── ASSISTANT_NAVIGATOR.md │ ├── ASSISTANT_PROJECT.md │ ├── ASSISTANT_PROSPECTOR.md │ ├── CONFIGURATION.md │ ├── DOTNET_LIBRARIES.md │ ├── EXAMPLES.md │ ├── MCP_SERVERS.md │ ├── PYTHON_LIBRARIES_AI_CLIENTS.md │ ├── PYTHON_LIBRARIES_CORE.md │ ├── PYTHON_LIBRARIES_EXTENSIONS.md │ ├── PYTHON_LIBRARIES_SKILLS.md │ ├── PYTHON_LIBRARIES_SPECIALIZED.md │ ├── TOOLS.md │ ├── WORKBENCH_FRONTEND.md │ └── WORKBENCH_SERVICE.md ├── aspire-orchestrator ├── .editorconfig ├── Aspire.AppHost │ ├── .gitignore │ ├── Aspire.AppHost.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Aspire.Extensions │ ├── Aspire.Extensions.csproj │ ├── Dashboard.cs │ ├── DockerFileExtensions.cs │ ├── PathNormalizer.cs │ ├── UvAppHostingExtensions.cs │ ├── UvAppResource.cs │ ├── VirtualEnvironment.cs │ └── WorkbenchServiceHostingExtensions.cs ├── Aspire.ServiceDefaults │ ├── Aspire.ServiceDefaults.csproj │ └── Extensions.cs ├── README.md ├── SemanticWorkbench.Aspire.sln ├── SemanticWorkbench.Aspire.sln.DotSettings └── run.sh ├── assistants ├── Makefile ├── codespace-assistant │ ├── .claude │ │ └── settings.local.json │ ├── .env.example │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant.code-workspace │ ├── assistant │ │ ├── __init__.py │ │ ├── assets │ │ │ ├── icon.svg │ │ │ └── icon_context_transfer.svg │ │ ├── chat.py │ │ ├── config.py │ │ ├── helpers.py │ │ ├── response │ │ │ ├── __init__.py │ │ │ ├── completion_handler.py │ │ │ ├── models.py │ │ │ ├── request_builder.py │ │ │ ├── response.py │ │ │ ├── step_handler.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── abbreviations.py │ │ │ │ ├── formatting_utils.py │ │ │ │ ├── message_utils.py │ │ │ │ └── openai_utils.py │ │ ├── text_includes │ │ │ ├── card_content.md │ │ │ ├── card_content_context_transfer.md │ │ │ ├── codespace_assistant_info.md │ │ │ ├── context_transfer_assistant_info.md │ │ │ ├── guardrails_prompt.txt │ │ │ ├── guidance_prompt.txt │ │ │ ├── guidance_prompt_context_transfer.txt │ │ │ ├── instruction_prompt.txt │ │ │ └── instruction_prompt_context_transfer.txt │ │ └── whiteboard │ │ │ ├── __init__.py │ │ │ ├── _inspector.py │ │ │ └── _whiteboard.py │ ├── pyproject.toml │ └── uv.lock ├── document-assistant │ ├── .env.example │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── CLAUDE.md │ ├── Makefile │ ├── README.md │ ├── assistant.code-workspace │ ├── assistant │ │ ├── __init__.py │ │ ├── assets │ │ │ └── icon.svg │ │ ├── chat.py │ │ ├── config.py │ │ ├── context_management │ │ │ ├── __init__.py │ │ │ └── inspector.py │ │ ├── filesystem │ │ │ ├── __init__.py │ │ │ ├── _convert.py │ │ │ ├── _file_sources.py │ │ │ ├── _filesystem.py │ │ │ ├── _inspector.py │ │ │ ├── _model.py │ │ │ ├── _prompts.py │ │ │ └── _tasks.py │ │ ├── guidance │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── dynamic_ui_inspector.py │ │ │ ├── guidance_config.py │ │ │ └── guidance_prompts.py │ │ ├── response │ │ │ ├── __init__.py │ │ │ ├── completion_handler.py │ │ │ ├── models.py │ │ │ ├── prompts.py │ │ │ ├── responder.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── formatting_utils.py │ │ │ │ ├── message_utils.py │ │ │ │ ├── openai_utils.py │ │ │ │ ├── tokens_tiktoken.py │ │ │ │ └── workbench_messages.py │ │ ├── text_includes │ │ │ └── document_assistant_info.md │ │ ├── types.py │ │ └── whiteboard │ │ │ ├── __init__.py │ │ │ ├── _inspector.py │ │ │ └── _whiteboard.py │ ├── pyproject.toml │ ├── tests │ │ ├── __init__.py │ │ ├── test_convert.py │ │ └── test_data │ │ │ ├── Formatting Test.docx │ │ │ ├── blank_image.png │ │ │ ├── sample_data.csv │ │ │ ├── sample_data.xlsx │ │ │ ├── sample_page.html │ │ │ ├── sample_presentation.pptx │ │ │ └── simple_pdf.pdf │ └── uv.lock ├── explorer-assistant │ ├── .env.example │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant.code-workspace │ ├── assistant │ │ ├── __init__.py │ │ ├── chat.py │ │ ├── config.py │ │ ├── helpers.py │ │ ├── response │ │ │ ├── __init__.py │ │ │ ├── model.py │ │ │ ├── response.py │ │ │ ├── response_anthropic.py │ │ │ └── response_openai.py │ │ └── text_includes │ │ │ └── guardrails_prompt.txt │ ├── pyproject.toml │ └── uv.lock ├── guided-conversation-assistant │ ├── .env.example │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant.code-workspace │ ├── assistant │ │ ├── __init__.py │ │ ├── agents │ │ │ ├── guided_conversation │ │ │ │ ├── config.py │ │ │ │ ├── definition.py │ │ │ │ └── definitions │ │ │ │ │ ├── er_triage.py │ │ │ │ │ ├── interview.py │ │ │ │ │ ├── patient_intake.py │ │ │ │ │ └── poem_feedback.py │ │ │ └── guided_conversation_agent.py │ │ ├── chat.py │ │ ├── config.py │ │ └── text_includes │ │ │ └── guardrails_prompt.txt │ ├── pyproject.toml │ └── uv.lock ├── knowledge-transfer-assistant │ ├── .claude │ │ └── settings.local.json │ ├── .env.example │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── CLAUDE.md │ ├── Makefile │ ├── README.md │ ├── assistant │ │ ├── __init__.py │ │ ├── agentic │ │ │ ├── __init__.py │ │ │ ├── analysis.py │ │ │ ├── coordinator_support.py │ │ │ └── team_welcome.py │ │ ├── assets │ │ │ ├── icon-knowledge-transfer.svg │ │ │ └── icon.svg │ │ ├── assistant.py │ │ ├── common.py │ │ ├── config.py │ │ ├── conversation_clients.py │ │ ├── conversation_share_link.py │ │ ├── data.py │ │ ├── domain │ │ │ ├── __init__.py │ │ │ ├── audience_manager.py │ │ │ ├── information_request_manager.py │ │ │ ├── knowledge_brief_manager.py │ │ │ ├── knowledge_digest_manager.py │ │ │ ├── learning_objectives_manager.py │ │ │ └── share_manager.py │ │ ├── files.py │ │ ├── logging.py │ │ ├── notifications.py │ │ ├── respond.py │ │ ├── storage.py │ │ ├── storage_models.py │ │ ├── string_utils.py │ │ ├── text_includes │ │ │ ├── assistant_info.md │ │ │ ├── card_content.md │ │ │ ├── coordinator_instructions.txt │ │ │ ├── coordinator_role.txt │ │ │ ├── knowledge_digest_instructions.txt │ │ │ ├── knowledge_digest_prompt.txt │ │ │ ├── share_information_request_detection.txt │ │ │ ├── team_instructions.txt │ │ │ ├── team_role.txt │ │ │ └── welcome_message_generation.txt │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── information_requests.py │ │ │ ├── learning_objectives.py │ │ │ ├── learning_outcomes.py │ │ │ ├── progress_tracking.py │ │ │ └── share_setup.py │ │ ├── ui_tabs │ │ │ ├── __init__.py │ │ │ ├── brief.py │ │ │ ├── common.py │ │ │ ├── debug.py │ │ │ ├── learning.py │ │ │ └── sharing.py │ │ └── utils.py │ ├── docs │ │ ├── DEV_GUIDE.md │ │ ├── JTBD.md │ │ ├── design │ │ │ ├── actions.md │ │ │ └── inference.md │ │ ├── how-kta-works.md │ │ ├── knowledge-transfer-goals.md │ │ ├── learning_assistance.md │ │ ├── notable_claude_conversations │ │ │ ├── CLAUDE_PROMPTS.md │ │ │ ├── clarifying_quad_modal_design.md │ │ │ ├── transfer_state.md │ │ │ └── trying_the_context_agent.md │ │ └── opportunities-of-knowledge-transfer.md │ ├── knowledge-transfer-assistant.code-workspace │ ├── pyproject.toml │ ├── tests │ │ ├── __init__.py │ │ ├── test_artifact_loading.py │ │ ├── test_inspector.py │ │ ├── test_share_manager.py │ │ ├── test_share_storage.py │ │ ├── test_share_tools.py │ │ └── test_team_mode.py │ └── uv.lock ├── navigator-assistant │ ├── .env.example │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant │ │ ├── __init__.py │ │ ├── assets │ │ │ ├── card_content.md │ │ │ └── icon.svg │ │ ├── chat.py │ │ ├── config.py │ │ ├── helpers.py │ │ ├── response │ │ │ ├── __init__.py │ │ │ ├── completion_handler.py │ │ │ ├── completion_requestor.py │ │ │ ├── local_tool │ │ │ │ ├── __init__.py │ │ │ │ ├── add_assistant_to_conversation.py │ │ │ │ ├── list_assistant_services.py │ │ │ │ └── model.py │ │ │ ├── models.py │ │ │ ├── prompt.py │ │ │ ├── request_builder.py │ │ │ ├── response.py │ │ │ ├── step_handler.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── formatting_utils.py │ │ │ │ ├── message_utils.py │ │ │ │ ├── openai_utils.py │ │ │ │ └── tools.py │ │ ├── text_includes │ │ │ ├── guardrails_prompt.md │ │ │ ├── guidance_prompt.md │ │ │ ├── instruction_prompt.md │ │ │ ├── navigator_assistant_info.md │ │ │ └── semantic_workbench_features.md │ │ └── whiteboard │ │ │ ├── __init__.py │ │ │ ├── _inspector.py │ │ │ └── _whiteboard.py │ ├── pyproject.toml │ └── uv.lock ├── project-assistant │ ├── .cspell │ │ └── custom-dictionary-workspace.txt │ ├── .env.example │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── CLAUDE.md │ ├── Makefile │ ├── README.md │ ├── assistant │ │ ├── __init__.py │ │ ├── agentic │ │ │ ├── __init__.py │ │ │ ├── act.py │ │ │ ├── coordinator_next_action.py │ │ │ ├── create_invitation.py │ │ │ ├── detect_audience_and_takeaways.py │ │ │ ├── detect_coordinator_actions.py │ │ │ ├── detect_information_request_needs.py │ │ │ ├── detect_knowledge_package_gaps.py │ │ │ ├── focus.py │ │ │ ├── respond.py │ │ │ ├── team_welcome.py │ │ │ └── update_digest.py │ │ ├── assets │ │ │ ├── icon-knowledge-transfer.svg │ │ │ └── icon.svg │ │ ├── assistant.py │ │ ├── common.py │ │ ├── config.py │ │ ├── conversation_clients.py │ │ ├── data.py │ │ ├── domain │ │ │ ├── __init__.py │ │ │ ├── audience_manager.py │ │ │ ├── conversation_preferences_manager.py │ │ │ ├── information_request_manager.py │ │ │ ├── knowledge_brief_manager.py │ │ │ ├── knowledge_digest_manager.py │ │ │ ├── learning_objectives_manager.py │ │ │ ├── share_manager.py │ │ │ ├── tasks_manager.py │ │ │ └── transfer_manager.py │ │ ├── errors.py │ │ ├── files.py │ │ ├── logging.py │ │ ├── notifications.py │ │ ├── prompt_utils.py │ │ ├── storage.py │ │ ├── string_utils.py │ │ ├── text_includes │ │ │ ├── actor_instructions.md │ │ │ ├── assistant_info.md │ │ │ ├── card_content.md │ │ │ ├── coordinator_instructions copy.md │ │ │ ├── coordinator_instructions.md │ │ │ ├── create_invitation.md │ │ │ ├── detect_audience.md │ │ │ ├── detect_coordinator_actions.md │ │ │ ├── detect_information_request_needs.md │ │ │ ├── detect_knowledge_package_gaps.md │ │ │ ├── focus.md │ │ │ ├── knowledge_digest_instructions.txt │ │ │ ├── team_instructions.txt │ │ │ ├── to_do.md │ │ │ ├── update_knowledge_brief.md │ │ │ ├── update_knowledge_digest.md │ │ │ └── welcome_message_generation.txt │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── conversation_preferences.py │ │ │ ├── information_requests.py │ │ │ ├── learning_objectives.py │ │ │ ├── learning_outcomes.py │ │ │ ├── progress_tracking.py │ │ │ ├── share_setup.py │ │ │ ├── system_reminders.py │ │ │ ├── tasks.py │ │ │ └── todo.py │ │ ├── ui_tabs │ │ │ ├── __init__.py │ │ │ ├── brief.py │ │ │ ├── common.py │ │ │ ├── debug.py │ │ │ ├── learning.py │ │ │ └── sharing.py │ │ └── utils.py │ ├── docs │ │ ├── DEV_GUIDE.md │ │ ├── JTBD.md │ │ ├── design │ │ │ ├── PXL_20250814_190140267.jpg │ │ │ ├── actions.md │ │ │ ├── control_options.md │ │ │ ├── design.md │ │ │ └── inference.md │ │ ├── how-kta-works.md │ │ ├── knowledge-transfer-goals.md │ │ ├── learning_assistance.md │ │ ├── notable_claude_conversations │ │ │ ├── CLAUDE_PROMPTS.md │ │ │ ├── clarifying_quad_modal_design.md │ │ │ ├── transfer_state.md │ │ │ └── trying_the_context_agent.md │ │ └── opportunities-of-knowledge-transfer.md │ ├── knowledge-transfer-assistant.code-workspace │ ├── pyproject.toml │ ├── tests │ │ ├── __init__.py │ │ ├── test_artifact_loading.py │ │ ├── test_inspector.py │ │ ├── test_share_manager.py │ │ ├── test_share_storage.py │ │ └── test_team_mode.py │ └── uv.lock ├── prospector-assistant │ ├── .env.example │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant.code-workspace │ ├── assistant │ │ ├── __init__.py │ │ ├── agents │ │ │ ├── artifact_agent.py │ │ │ ├── document │ │ │ │ ├── config.py │ │ │ │ ├── gc_draft_content_feedback_config.py │ │ │ │ ├── gc_draft_outline_feedback_config.py │ │ │ │ ├── guided_conversation.py │ │ │ │ └── state.py │ │ │ └── document_agent.py │ │ ├── artifact_creation_extension │ │ │ ├── __init__.py │ │ │ ├── _llm.py │ │ │ ├── config.py │ │ │ ├── document.py │ │ │ ├── extension.py │ │ │ ├── store.py │ │ │ ├── test │ │ │ │ ├── conftest.py │ │ │ │ ├── evaluation.py │ │ │ │ ├── test_completion_with_tools.py │ │ │ │ └── test_extension.py │ │ │ └── tools.py │ │ ├── chat.py │ │ ├── config.py │ │ ├── form_fill_extension │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── extension.py │ │ │ ├── inspector.py │ │ │ ├── state.py │ │ │ └── steps │ │ │ │ ├── __init__.py │ │ │ │ ├── _guided_conversation.py │ │ │ │ ├── _llm.py │ │ │ │ ├── acquire_form_step.py │ │ │ │ ├── extract_form_fields_step.py │ │ │ │ ├── fill_form_step.py │ │ │ │ └── types.py │ │ ├── helpers.py │ │ ├── legacy.py │ │ └── text_includes │ │ │ ├── artifact_agent_enabled.md │ │ │ ├── guardrails_prompt.txt │ │ │ ├── guided_conversation_agent_enabled.md │ │ │ └── skills_agent_enabled.md │ ├── gc_learnings │ │ ├── gc_learnings.md │ │ └── images │ │ │ ├── gc_conversation_plan_fcn.png │ │ │ ├── gc_conversation_plan_template.png │ │ │ ├── gc_execute_plan_callstack.png │ │ │ ├── gc_functions.png │ │ │ ├── gc_generate_plan_callstack.png │ │ │ ├── gc_get_resource_instructions.png │ │ │ ├── gc_get_termination_instructions.png │ │ │ ├── gc_kernel_arguments.png │ │ │ ├── gc_plan_calls.png │ │ │ ├── gc_termination_instructions.png │ │ │ ├── sk_get_chat_message_contents.png │ │ │ ├── sk_inner_get_chat_message_contents.png │ │ │ ├── sk_send_request.png │ │ │ └── sk_send_request_prep.png │ ├── pyproject.toml │ └── uv.lock └── skill-assistant │ ├── .env.example │ ├── .vscode │ ├── launch.json │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant.code-workspace │ ├── assistant │ ├── __init__.py │ ├── config.py │ ├── logging.py │ ├── skill_assistant.py │ ├── skill_engine_registry.py │ ├── skill_event_mapper.py │ ├── text_includes │ │ └── guardrails_prompt.txt │ └── workbench_helpers.py │ ├── pyproject.toml │ ├── tests │ └── test_setup.py │ └── uv.lock ├── docs ├── .vscode │ └── settings.json ├── ASSISTANT_CONFIG.md ├── ASSISTANT_DEVELOPMENT_GUIDE.md ├── CUSTOM_APP_REGISTRATION.md ├── HOSTED_ASSISTANT_WITH_LOCAL_MCP_SERVERS.md ├── LOCAL_ASSISTANT_WITH_REMOTE_WORKBENCH.md ├── SETUP_DEV_ENVIRONMENT.md ├── WORKBENCH_APP.md └── images │ ├── architecture-animation.gif │ ├── configure_assistant.png │ ├── conversation_canvas_open.png │ ├── conversation_duplicate.png │ ├── conversation_export.png │ ├── conversation_share_dialog.png │ ├── conversation_share_link.png │ ├── dashboard_configured_view.png │ ├── dashboard_view.png │ ├── license_agreement.png │ ├── message_bar.png │ ├── message_inspection.png │ ├── message_link.png │ ├── new_prospector_assistant_dialog.png │ ├── open_conversation_canvas.png │ ├── prospector_example.png │ ├── readme1.png │ ├── readme2.png │ ├── readme3.png │ ├── rewind.png │ ├── signin_page.png │ └── splash_screen.png ├── examples ├── Makefile ├── dotnet │ ├── .editorconfig │ ├── dotnet-01-echo-bot │ │ ├── MyAgent.cs │ │ ├── MyAgentConfig.cs │ │ ├── MyWorkbenchConnector.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── appsettings.json │ │ └── dotnet-01-echo-bot.csproj │ ├── dotnet-02-message-types-demo │ │ ├── ConnectorExtensions.cs │ │ ├── MyAgent.cs │ │ ├── MyAgentConfig.cs │ │ ├── MyWorkbenchConnector.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── appsettings.json │ │ ├── docs │ │ │ ├── abc.png │ │ │ ├── code.png │ │ │ ├── config.png │ │ │ ├── echo.png │ │ │ ├── markdown.png │ │ │ ├── mermaid.png │ │ │ ├── reverse.png │ │ │ └── safety-check.png │ │ └── dotnet-02-message-types-demo.csproj │ └── dotnet-03-simple-chatbot │ │ ├── ConnectorExtensions.cs │ │ ├── MyAgent.cs │ │ ├── MyAgentConfig.cs │ │ ├── MyWorkbenchConnector.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── appsettings.json │ │ └── dotnet-03-simple-chatbot.csproj └── python │ ├── python-01-echo-bot │ ├── .env.example │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant.code-workspace │ ├── assistant │ │ ├── __init__.py │ │ ├── chat.py │ │ └── config.py │ ├── pyproject.toml │ └── uv.lock │ ├── python-02-simple-chatbot │ ├── .env.example │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant.code-workspace │ ├── assistant │ │ ├── __init__.py │ │ ├── chat.py │ │ ├── config.py │ │ └── text_includes │ │ │ └── guardrails_prompt.txt │ ├── pyproject.toml │ └── uv.lock │ └── python-03-multimodel-chatbot │ ├── .env.example │ ├── .vscode │ ├── launch.json │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant.code-workspace │ ├── assistant │ ├── __init__.py │ ├── chat.py │ ├── config.py │ ├── model_adapters.py │ └── text_includes │ │ └── guardrails_prompt.txt │ ├── pyproject.toml │ └── uv.lock ├── libraries ├── Makefile ├── dotnet │ ├── .editorconfig │ ├── README.md │ ├── SemanticWorkbench.sln │ ├── SemanticWorkbench.sln.DotSettings │ ├── WorkbenchConnector │ │ ├── AgentBase.cs │ │ ├── AgentConfig │ │ │ ├── AgentConfigBase.cs │ │ │ ├── AgentConfigPropertyAttribute.cs │ │ │ └── ConfigUtils.cs │ │ ├── Constants.cs │ │ ├── IAgentBase.cs │ │ ├── Models │ │ │ ├── Command.cs │ │ │ ├── Conversation.cs │ │ │ ├── ConversationEvent.cs │ │ │ ├── DebugInfo.cs │ │ │ ├── Insight.cs │ │ │ ├── Message.cs │ │ │ ├── MessageMetadata.cs │ │ │ ├── Participant.cs │ │ │ ├── Sender.cs │ │ │ └── ServiceInfo.cs │ │ ├── Storage │ │ │ ├── AgentInfo.cs │ │ │ ├── AgentServiceStorage.cs │ │ │ └── IAgentServiceStorage.cs │ │ ├── StringLoggingExtensions.cs │ │ ├── Webservice.cs │ │ ├── WorkbenchConfig.cs │ │ ├── WorkbenchConnector.cs │ │ ├── WorkbenchConnector.csproj │ │ └── icon.png │ └── pack.sh └── python │ ├── Makefile │ ├── anthropic-client │ ├── .vscode │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── anthropic_client │ │ ├── __init__.py │ │ ├── client.py │ │ ├── config.py │ │ └── messages.py │ ├── pyproject.toml │ └── uv.lock │ ├── assistant-data-gen │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant_data_gen │ │ ├── __init__.py │ │ ├── assistant_api.py │ │ ├── config.py │ │ ├── gce │ │ │ ├── __init__.py │ │ │ ├── gce_agent.py │ │ │ └── prompts.py │ │ └── pydantic_ai_utils.py │ ├── configs │ │ └── document_assistant_example_config.yaml │ ├── pyproject.toml │ ├── scripts │ │ ├── gce_simulation.py │ │ └── generate_scenario.py │ └── uv.lock │ ├── assistant-drive │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant_drive │ │ ├── __init__.py │ │ ├── drive.py │ │ └── tests │ │ │ └── test_basic.py │ ├── pyproject.toml │ ├── pytest.ini │ ├── usage.ipynb │ └── uv.lock │ ├── assistant-extensions │ ├── .vscode │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── assistant_extensions │ │ ├── __init__.py │ │ ├── ai_clients │ │ │ └── config.py │ │ ├── artifacts │ │ │ ├── __init__.py │ │ │ ├── _artifacts.py │ │ │ ├── _inspector.py │ │ │ └── _model.py │ │ ├── attachments │ │ │ ├── __init__.py │ │ │ ├── _attachments.py │ │ │ ├── _convert.py │ │ │ ├── _model.py │ │ │ ├── _shared.py │ │ │ └── _summarizer.py │ │ ├── chat_context_toolkit │ │ │ ├── __init__.py │ │ │ ├── _config.py │ │ │ ├── archive │ │ │ │ ├── __init__.py │ │ │ │ ├── _archive.py │ │ │ │ └── _summarizer.py │ │ │ ├── message_history │ │ │ │ ├── __init__.py │ │ │ │ ├── _history.py │ │ │ │ └── _message.py │ │ │ └── virtual_filesystem │ │ │ │ ├── __init__.py │ │ │ │ ├── _archive_file_source.py │ │ │ │ └── _attachments_file_source.py │ │ ├── dashboard_card │ │ │ ├── __init__.py │ │ │ └── _dashboard_card.py │ │ ├── document_editor │ │ │ ├── __init__.py │ │ │ ├── _extension.py │ │ │ ├── _inspector.py │ │ │ └── _model.py │ │ ├── mcp │ │ │ ├── __init__.py │ │ │ ├── _assistant_file_resource_handler.py │ │ │ ├── _client_utils.py │ │ │ ├── _devtunnel.py │ │ │ ├── _model.py │ │ │ ├── _openai_utils.py │ │ │ ├── _sampling_handler.py │ │ │ ├── _tool_utils.py │ │ │ └── _workbench_file_resource_handler.py │ │ ├── navigator │ │ │ ├── __init__.py │ │ │ └── _navigator.py │ │ └── workflows │ │ │ ├── __init__.py │ │ │ ├── _model.py │ │ │ ├── _workflows.py │ │ │ └── runners │ │ │ └── _user_proxy.py │ ├── pyproject.toml │ ├── test │ │ └── attachments │ │ │ └── test_attachments.py │ └── uv.lock │ ├── chat-context-toolkit │ ├── .claude │ │ └── settings.local.json │ ├── .env.sample │ ├── .vscode │ │ └── settings.json │ ├── CLAUDE.md │ ├── Makefile │ ├── README.md │ ├── assets │ │ ├── archive_v1.png │ │ ├── history_v1.png │ │ └── vfs_v1.png │ ├── chat_context_toolkit │ │ ├── __init__.py │ │ ├── archive │ │ │ ├── __init__.py │ │ │ ├── _archive_reader.py │ │ │ ├── _archive_task_queue.py │ │ │ ├── _state.py │ │ │ ├── _types.py │ │ │ └── summarization │ │ │ │ ├── __init__.py │ │ │ │ └── _summarizer.py │ │ ├── history │ │ │ ├── __init__.py │ │ │ ├── _budget.py │ │ │ ├── _decorators.py │ │ │ ├── _history.py │ │ │ ├── _prioritize.py │ │ │ ├── _types.py │ │ │ └── tool_abbreviations │ │ │ │ ├── __init__.py │ │ │ │ └── _tool_abbreviations.py │ │ └── virtual_filesystem │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── _types.py │ │ │ ├── _virtual_filesystem.py │ │ │ └── tools │ │ │ ├── __init__.py │ │ │ ├── _ls_tool.py │ │ │ ├── _tools.py │ │ │ └── _view_tool.py │ ├── pyproject.toml │ ├── test │ │ ├── archive │ │ │ └── test_archive_reader.py │ │ ├── history │ │ │ ├── test_abbreviate_messages.py │ │ │ ├── test_history.py │ │ │ ├── test_pair_and_order_tool_messages.py │ │ │ ├── test_prioritize.py │ │ │ └── test_truncate_messages.py │ │ └── virtual_filesystem │ │ │ ├── test_virtual_filesystem.py │ │ │ └── tools │ │ │ ├── test_ls_tool.py │ │ │ ├── test_tools.py │ │ │ └── test_view_tool.py │ └── uv.lock │ ├── content-safety │ ├── .vscode │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── content_safety │ │ ├── README.md │ │ ├── __init__.py │ │ └── evaluators │ │ │ ├── __init__.py │ │ │ ├── azure_content_safety │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── evaluator.py │ │ │ ├── config.py │ │ │ ├── evaluator.py │ │ │ └── openai_moderations │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── evaluator.py │ ├── pyproject.toml │ └── uv.lock │ ├── events │ ├── .vscode │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── events │ │ ├── __init__.py │ │ └── events.py │ ├── pyproject.toml │ └── uv.lock │ ├── guided-conversation │ ├── .vscode │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── guided_conversation │ │ ├── __init__.py │ │ ├── functions │ │ │ ├── __init__.py │ │ │ ├── conversation_plan.py │ │ │ ├── execution.py │ │ │ └── final_update_plan.py │ │ ├── guided_conversation_agent.py │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── agenda.py │ │ │ └── artifact.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── base_model_llm.py │ │ │ ├── conversation_helpers.py │ │ │ ├── openai_tool_calling.py │ │ │ ├── plugin_helpers.py │ │ │ └── resources.py │ ├── pyproject.toml │ └── uv.lock │ ├── llm-client │ ├── .vscode │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── llm_client │ │ ├── __init__.py │ │ └── model.py │ ├── pyproject.toml │ └── uv.lock │ ├── mcp-extensions │ ├── .vscode │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_extensions │ │ ├── __init__.py │ │ ├── _client_session.py │ │ ├── _model.py │ │ ├── _sampling.py │ │ ├── _server_extensions.py │ │ ├── _tool_utils.py │ │ ├── llm │ │ │ ├── __init__.py │ │ │ ├── chat_completion.py │ │ │ ├── helpers.py │ │ │ ├── llm_types.py │ │ │ ├── mcp_chat_completion.py │ │ │ └── openai_chat_completion.py │ │ └── server │ │ │ ├── __init__.py │ │ │ └── storage.py │ ├── pyproject.toml │ ├── tests │ │ └── test_tool_utils.py │ └── uv.lock │ ├── mcp-tunnel │ ├── .vscode │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_tunnel │ │ ├── __init__.py │ │ ├── _devtunnel.py │ │ ├── _dir.py │ │ └── _main.py │ ├── pyproject.toml │ └── uv.lock │ ├── openai-client │ ├── .vscode │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── openai_client │ │ ├── __init__.py │ │ ├── chat_driver │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── chat_driver.ipynb │ │ │ ├── chat_driver.py │ │ │ └── message_history_providers │ │ │ │ ├── __init__.py │ │ │ │ ├── in_memory_message_history_provider.py │ │ │ │ ├── local_message_history_provider.py │ │ │ │ ├── message_history_provider.py │ │ │ │ └── tests │ │ │ │ └── formatted_instructions_test.py │ │ ├── client.py │ │ ├── completion.py │ │ ├── config.py │ │ ├── errors.py │ │ ├── logging.py │ │ ├── messages.py │ │ ├── tokens.py │ │ └── tools.py │ ├── pyproject.toml │ ├── tests │ │ ├── test_command_parsing.py │ │ ├── test_formatted_messages.py │ │ ├── test_messages.py │ │ └── test_tokens.py │ └── uv.lock │ ├── semantic-workbench-api-model │ ├── .vscode │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── pyproject.toml │ ├── semantic_workbench_api_model │ │ ├── __init__.py │ │ ├── assistant_model.py │ │ ├── assistant_service_client.py │ │ ├── workbench_model.py │ │ └── workbench_service_client.py │ └── uv.lock │ ├── semantic-workbench-assistant │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── pyproject.toml │ ├── semantic_workbench_assistant │ │ ├── __init__.py │ │ ├── assistant_app │ │ │ ├── __init__.py │ │ │ ├── assistant.py │ │ │ ├── config.py │ │ │ ├── content_safety.py │ │ │ ├── context.py │ │ │ ├── error.py │ │ │ ├── export_import.py │ │ │ ├── protocol.py │ │ │ └── service.py │ │ ├── assistant_service.py │ │ ├── auth.py │ │ ├── canonical.py │ │ ├── command.py │ │ ├── config.py │ │ ├── logging_config.py │ │ ├── settings.py │ │ ├── start.py │ │ └── storage.py │ ├── tests │ │ ├── conftest.py │ │ ├── test_assistant_app.py │ │ ├── test_canonical.py │ │ ├── test_config.py │ │ └── test_storage.py │ └── uv.lock │ └── skills │ ├── .vscode │ └── settings.json │ ├── Makefile │ ├── README.md │ └── skill-library │ ├── .vscode │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── docs │ └── vs-recipe-tool.md │ ├── pyproject.toml │ ├── skill_library │ ├── README.md │ ├── __init__.py │ ├── chat_driver_helpers.py │ ├── cli │ │ ├── README.md │ │ ├── azure_openai.py │ │ ├── conversation_history.py │ │ ├── run_routine.py │ │ ├── settings.py │ │ └── skill_logger.py │ ├── engine.py │ ├── llm_info.txt │ ├── logging.py │ ├── routine_stack.py │ ├── skill.py │ ├── skills │ │ ├── README.md │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── common_skill.py │ │ │ └── routines │ │ │ │ ├── bing_search.py │ │ │ │ ├── consolidate.py │ │ │ │ ├── echo.py │ │ │ │ ├── gather_context.py │ │ │ │ ├── get_content_from_url.py │ │ │ │ ├── gpt_complete.py │ │ │ │ ├── select_user_intent.py │ │ │ │ └── summarize.py │ │ ├── eval │ │ │ ├── __init__.py │ │ │ ├── eval_skill.py │ │ │ └── routines │ │ │ │ └── eval.py │ │ ├── fabric │ │ │ ├── __init__.py │ │ │ ├── fabric_skill.py │ │ │ ├── patterns │ │ │ │ ├── agility_story │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── ai │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_answers │ │ │ │ │ ├── README.md │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_candidates │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_cfp_submission │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_claims │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_comments │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_debate │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_email_headers │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_incident │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_interviewer_techniques │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_logs │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_malware │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_military_strategy │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_mistakes │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_paper │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_patent │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_personality │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_presentation │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_product_feedback │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_proposition │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_prose │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_prose_json │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_prose_pinker │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_risk │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_sales_call │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_spiritual_text │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_tech_impact │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_threat_report │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── analyze_threat_report_cmds │ │ │ │ │ └── system.md │ │ │ │ ├── analyze_threat_report_trends │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── answer_interview_question │ │ │ │ │ └── system.md │ │ │ │ ├── ask_secure_by_design_questions │ │ │ │ │ └── system.md │ │ │ │ ├── ask_uncle_duke │ │ │ │ │ └── system.md │ │ │ │ ├── capture_thinkers_work │ │ │ │ │ └── system.md │ │ │ │ ├── check_agreement │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── clean_text │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── coding_master │ │ │ │ │ └── system.md │ │ │ │ ├── compare_and_contrast │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── convert_to_markdown │ │ │ │ │ └── system.md │ │ │ │ ├── create_5_sentence_summary │ │ │ │ │ └── system.md │ │ │ │ ├── create_academic_paper │ │ │ │ │ └── system.md │ │ │ │ ├── create_ai_jobs_analysis │ │ │ │ │ └── system.md │ │ │ │ ├── create_aphorisms │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── create_art_prompt │ │ │ │ │ └── system.md │ │ │ │ ├── create_better_frame │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── create_coding_project │ │ │ │ │ ├── README.md │ │ │ │ │ └── system.md │ │ │ │ ├── create_command │ │ │ │ │ ├── README.md │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── create_cyber_summary │ │ │ │ │ └── system.md │ │ │ │ ├── create_design_document │ │ │ │ │ └── system.md │ │ │ │ ├── create_diy │ │ │ │ │ └── system.md │ │ │ │ ├── create_formal_email │ │ │ │ │ └── system.md │ │ │ │ ├── create_git_diff_commit │ │ │ │ │ ├── README.md │ │ │ │ │ └── system.md │ │ │ │ ├── create_graph_from_input │ │ │ │ │ └── system.md │ │ │ │ ├── create_hormozi_offer │ │ │ │ │ └── system.md │ │ │ │ ├── create_idea_compass │ │ │ │ │ └── system.md │ │ │ │ ├── create_investigation_visualization │ │ │ │ │ └── system.md │ │ │ │ ├── create_keynote │ │ │ │ │ └── system.md │ │ │ │ ├── create_logo │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── create_markmap_visualization │ │ │ │ │ └── system.md │ │ │ │ ├── create_mermaid_visualization │ │ │ │ │ └── system.md │ │ │ │ ├── create_mermaid_visualization_for_github │ │ │ │ │ └── system.md │ │ │ │ ├── create_micro_summary │ │ │ │ │ └── system.md │ │ │ │ ├── create_network_threat_landscape │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── create_newsletter_entry │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── create_npc │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── create_pattern │ │ │ │ │ └── system.md │ │ │ │ ├── create_prd │ │ │ │ │ └── system.md │ │ │ │ ├── create_prediction_block │ │ │ │ │ └── system.md │ │ │ │ ├── create_quiz │ │ │ │ │ ├── README.md │ │ │ │ │ └── system.md │ │ │ │ ├── create_reading_plan │ │ │ │ │ └── system.md │ │ │ │ ├── create_recursive_outline │ │ │ │ │ └── system.md │ │ │ │ ├── create_report_finding │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── create_rpg_summary │ │ │ │ │ └── system.md │ │ │ │ ├── create_security_update │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── create_show_intro │ │ │ │ │ └── system.md │ │ │ │ ├── create_sigma_rules │ │ │ │ │ └── system.md │ │ │ │ ├── create_story_explanation │ │ │ │ │ └── system.md │ │ │ │ ├── create_stride_threat_model │ │ │ │ │ └── system.md │ │ │ │ ├── create_summary │ │ │ │ │ └── system.md │ │ │ │ ├── create_tags │ │ │ │ │ └── system.md │ │ │ │ ├── create_threat_scenarios │ │ │ │ │ └── system.md │ │ │ │ ├── create_ttrc_graph │ │ │ │ │ └── system.md │ │ │ │ ├── create_ttrc_narrative │ │ │ │ │ └── system.md │ │ │ │ ├── create_upgrade_pack │ │ │ │ │ └── system.md │ │ │ │ ├── create_user_story │ │ │ │ │ └── system.md │ │ │ │ ├── create_video_chapters │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── create_visualization │ │ │ │ │ └── system.md │ │ │ │ ├── dialog_with_socrates │ │ │ │ │ └── system.md │ │ │ │ ├── enrich_blog_post │ │ │ │ │ └── system.md │ │ │ │ ├── explain_code │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── explain_docs │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── explain_math │ │ │ │ │ ├── README.md │ │ │ │ │ └── system.md │ │ │ │ ├── explain_project │ │ │ │ │ └── system.md │ │ │ │ ├── explain_terms │ │ │ │ │ └── system.md │ │ │ │ ├── export_data_as_csv │ │ │ │ │ └── system.md │ │ │ │ ├── extract_algorithm_update_recommendations │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── extract_article_wisdom │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dmiessler │ │ │ │ │ │ └── extract_wisdom-1.0.0 │ │ │ │ │ │ │ ├── system.md │ │ │ │ │ │ │ └── user.md │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── extract_book_ideas │ │ │ │ │ └── system.md │ │ │ │ ├── extract_book_recommendations │ │ │ │ │ └── system.md │ │ │ │ ├── extract_business_ideas │ │ │ │ │ └── system.md │ │ │ │ ├── extract_controversial_ideas │ │ │ │ │ └── system.md │ │ │ │ ├── extract_core_message │ │ │ │ │ └── system.md │ │ │ │ ├── extract_ctf_writeup │ │ │ │ │ ├── README.md │ │ │ │ │ └── system.md │ │ │ │ ├── extract_domains │ │ │ │ │ └── system.md │ │ │ │ ├── extract_extraordinary_claims │ │ │ │ │ └── system.md │ │ │ │ ├── extract_ideas │ │ │ │ │ └── system.md │ │ │ │ ├── extract_insights │ │ │ │ │ └── system.md │ │ │ │ ├── extract_insights_dm │ │ │ │ │ └── system.md │ │ │ │ ├── extract_instructions │ │ │ │ │ └── system.md │ │ │ │ ├── extract_jokes │ │ │ │ │ └── system.md │ │ │ │ ├── extract_latest_video │ │ │ │ │ └── system.md │ │ │ │ ├── extract_main_idea │ │ │ │ │ └── system.md │ │ │ │ ├── extract_most_redeeming_thing │ │ │ │ │ └── system.md │ │ │ │ ├── extract_patterns │ │ │ │ │ └── system.md │ │ │ │ ├── extract_poc │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── extract_predictions │ │ │ │ │ └── system.md │ │ │ │ ├── extract_primary_problem │ │ │ │ │ └── system.md │ │ │ │ ├── extract_primary_solution │ │ │ │ │ └── system.md │ │ │ │ ├── extract_product_features │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dmiessler │ │ │ │ │ │ └── extract_wisdom-1.0.0 │ │ │ │ │ │ │ ├── system.md │ │ │ │ │ │ │ └── user.md │ │ │ │ │ └── system.md │ │ │ │ ├── extract_questions │ │ │ │ │ └── system.md │ │ │ │ ├── extract_recipe │ │ │ │ │ ├── README.md │ │ │ │ │ └── system.md │ │ │ │ ├── extract_recommendations │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── extract_references │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── extract_skills │ │ │ │ │ └── system.md │ │ │ │ ├── extract_song_meaning │ │ │ │ │ └── system.md │ │ │ │ ├── extract_sponsors │ │ │ │ │ └── system.md │ │ │ │ ├── extract_videoid │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── extract_wisdom │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dmiessler │ │ │ │ │ │ └── extract_wisdom-1.0.0 │ │ │ │ │ │ │ ├── system.md │ │ │ │ │ │ │ └── user.md │ │ │ │ │ └── system.md │ │ │ │ ├── extract_wisdom_agents │ │ │ │ │ └── system.md │ │ │ │ ├── extract_wisdom_dm │ │ │ │ │ └── system.md │ │ │ │ ├── extract_wisdom_nometa │ │ │ │ │ └── system.md │ │ │ │ ├── find_hidden_message │ │ │ │ │ └── system.md │ │ │ │ ├── find_logical_fallacies │ │ │ │ │ └── system.md │ │ │ │ ├── get_wow_per_minute │ │ │ │ │ └── system.md │ │ │ │ ├── get_youtube_rss │ │ │ │ │ └── system.md │ │ │ │ ├── humanize │ │ │ │ │ ├── README.md │ │ │ │ │ └── system.md │ │ │ │ ├── identify_dsrp_distinctions │ │ │ │ │ └── system.md │ │ │ │ ├── identify_dsrp_perspectives │ │ │ │ │ └── system.md │ │ │ │ ├── identify_dsrp_relationships │ │ │ │ │ └── system.md │ │ │ │ ├── identify_dsrp_systems │ │ │ │ │ └── system.md │ │ │ │ ├── identify_job_stories │ │ │ │ │ └── system.md │ │ │ │ ├── improve_academic_writing │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── improve_prompt │ │ │ │ │ └── system.md │ │ │ │ ├── improve_report_finding │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── improve_writing │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── judge_output │ │ │ │ │ └── system.md │ │ │ │ ├── label_and_rate │ │ │ │ │ └── system.md │ │ │ │ ├── loaded │ │ │ │ ├── md_callout │ │ │ │ │ └── system.md │ │ │ │ ├── official_pattern_template │ │ │ │ │ └── system.md │ │ │ │ ├── pattern_explanations.md │ │ │ │ ├── prepare_7s_strategy │ │ │ │ │ └── system.md │ │ │ │ ├── provide_guidance │ │ │ │ │ └── system.md │ │ │ │ ├── rate_ai_response │ │ │ │ │ └── system.md │ │ │ │ ├── rate_ai_result │ │ │ │ │ └── system.md │ │ │ │ ├── rate_content │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── rate_value │ │ │ │ │ ├── README.md │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── raw_query │ │ │ │ │ └── system.md │ │ │ │ ├── raycast │ │ │ │ │ ├── capture_thinkers_work │ │ │ │ │ ├── create_story_explanation │ │ │ │ │ ├── extract_primary_problem │ │ │ │ │ ├── extract_wisdom │ │ │ │ │ └── yt │ │ │ │ ├── recommend_artists │ │ │ │ │ └── system.md │ │ │ │ ├── recommend_pipeline_upgrades │ │ │ │ │ └── system.md │ │ │ │ ├── recommend_talkpanel_topics │ │ │ │ │ └── system.md │ │ │ │ ├── refine_design_document │ │ │ │ │ └── system.md │ │ │ │ ├── review_design │ │ │ │ │ └── system.md │ │ │ │ ├── sanitize_broken_html_to_markdown │ │ │ │ │ └── system.md │ │ │ │ ├── show_fabric_options_markmap │ │ │ │ │ └── system.md │ │ │ │ ├── solve_with_cot │ │ │ │ │ └── system.md │ │ │ │ ├── stringify │ │ │ │ │ └── system.md │ │ │ │ ├── suggest_pattern │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── summarize │ │ │ │ │ ├── dmiessler │ │ │ │ │ │ └── summarize │ │ │ │ │ │ │ ├── system.md │ │ │ │ │ │ │ └── user.md │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── summarize_debate │ │ │ │ │ └── system.md │ │ │ │ ├── summarize_git_changes │ │ │ │ │ └── system.md │ │ │ │ ├── summarize_git_diff │ │ │ │ │ └── system.md │ │ │ │ ├── summarize_lecture │ │ │ │ │ └── system.md │ │ │ │ ├── summarize_legislation │ │ │ │ │ └── system.md │ │ │ │ ├── summarize_meeting │ │ │ │ │ └── system.md │ │ │ │ ├── summarize_micro │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── summarize_newsletter │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── summarize_paper │ │ │ │ │ ├── README.md │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── summarize_prompt │ │ │ │ │ └── system.md │ │ │ │ ├── summarize_pull-requests │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── summarize_rpg_session │ │ │ │ │ └── system.md │ │ │ │ ├── t_analyze_challenge_handling │ │ │ │ │ └── system.md │ │ │ │ ├── t_check_metrics │ │ │ │ │ └── system.md │ │ │ │ ├── t_create_h3_career │ │ │ │ │ └── system.md │ │ │ │ ├── t_create_opening_sentences │ │ │ │ │ └── system.md │ │ │ │ ├── t_describe_life_outlook │ │ │ │ │ └── system.md │ │ │ │ ├── t_extract_intro_sentences │ │ │ │ │ └── system.md │ │ │ │ ├── t_extract_panel_topics │ │ │ │ │ └── system.md │ │ │ │ ├── t_find_blindspots │ │ │ │ │ └── system.md │ │ │ │ ├── t_find_negative_thinking │ │ │ │ │ └── system.md │ │ │ │ ├── t_find_neglected_goals │ │ │ │ │ └── system.md │ │ │ │ ├── t_give_encouragement │ │ │ │ │ └── system.md │ │ │ │ ├── t_red_team_thinking │ │ │ │ │ └── system.md │ │ │ │ ├── t_threat_model_plans │ │ │ │ │ └── system.md │ │ │ │ ├── t_visualize_mission_goals_projects │ │ │ │ │ └── system.md │ │ │ │ ├── t_year_in_review │ │ │ │ │ └── system.md │ │ │ │ ├── to_flashcards │ │ │ │ │ └── system.md │ │ │ │ ├── transcribe_minutes │ │ │ │ │ ├── README.md │ │ │ │ │ └── system.md │ │ │ │ ├── translate │ │ │ │ │ └── system.md │ │ │ │ ├── tweet │ │ │ │ │ └── system.md │ │ │ │ ├── write_essay │ │ │ │ │ └── system.md │ │ │ │ ├── write_hackerone_report │ │ │ │ │ ├── README.md │ │ │ │ │ └── system.md │ │ │ │ ├── write_latex │ │ │ │ │ └── system.md │ │ │ │ ├── write_micro_essay │ │ │ │ │ └── system.md │ │ │ │ ├── write_nuclei_template_rule │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ │ ├── write_pull-request │ │ │ │ │ └── system.md │ │ │ │ └── write_semgrep_rule │ │ │ │ │ ├── system.md │ │ │ │ │ └── user.md │ │ │ └── routines │ │ │ │ ├── list.py │ │ │ │ ├── run.py │ │ │ │ └── show.py │ │ ├── guided_conversation │ │ │ ├── __init__.py │ │ │ ├── agenda.py │ │ │ ├── artifact_helpers.py │ │ │ ├── chat_completions │ │ │ │ ├── fix_agenda_error.py │ │ │ │ ├── fix_artifact_error.py │ │ │ │ ├── generate_agenda.py │ │ │ │ ├── generate_artifact_updates.py │ │ │ │ ├── generate_final_artifact.py │ │ │ │ └── generate_message.py │ │ │ ├── conversation_guides │ │ │ │ ├── __init__.py │ │ │ │ ├── acrostic_poem.py │ │ │ │ ├── er_triage.py │ │ │ │ ├── interview.py │ │ │ │ └── patient_intake.py │ │ │ ├── guide.py │ │ │ ├── guided_conversation_skill.py │ │ │ ├── logging.py │ │ │ ├── message.py │ │ │ ├── resources.py │ │ │ ├── routines │ │ │ │ └── guided_conversation.py │ │ │ └── tests │ │ │ │ ├── conftest.py │ │ │ │ ├── test_artifact_helpers.py │ │ │ │ ├── test_generate_agenda.py │ │ │ │ ├── test_generate_artifact_updates.py │ │ │ │ ├── test_generate_final_artifact.py │ │ │ │ └── test_resource.py │ │ ├── meta │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── meta_skill.py │ │ │ └── routines │ │ │ │ └── generate_routine.py │ │ ├── posix │ │ │ ├── __init__.py │ │ │ ├── posix_skill.py │ │ │ ├── routines │ │ │ │ ├── append_file.py │ │ │ │ ├── cd.py │ │ │ │ ├── ls.py │ │ │ │ ├── make_home_dir.py │ │ │ │ ├── mkdir.py │ │ │ │ ├── mv.py │ │ │ │ ├── pwd.py │ │ │ │ ├── read_file.py │ │ │ │ ├── rm.py │ │ │ │ ├── touch.py │ │ │ │ └── write_file.py │ │ │ └── sandbox_shell.py │ │ ├── research │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── research_skill.py │ │ │ └── routines │ │ │ │ ├── answer_question_about_content.py │ │ │ │ ├── evaluate_answer.py │ │ │ │ ├── generate_research_plan.py │ │ │ │ ├── generate_search_query.py │ │ │ │ ├── update_research_plan.py │ │ │ │ ├── web_research.py │ │ │ │ └── web_search.py │ │ ├── research2 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── research_skill.py │ │ │ └── routines │ │ │ │ ├── facts.py │ │ │ │ ├── make_final_report.py │ │ │ │ ├── research.py │ │ │ │ ├── search.py │ │ │ │ ├── search_plan.py │ │ │ │ └── visit_pages.py │ │ └── web_research │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── research_skill.py │ │ │ └── routines │ │ │ ├── facts.py │ │ │ ├── make_final_report.py │ │ │ ├── research.py │ │ │ ├── search.py │ │ │ ├── search_plan.py │ │ │ └── visit_pages.py │ ├── tests │ │ ├── test_common_skill.py │ │ ├── test_integration.py │ │ ├── test_routine_stack.py │ │ ├── tst_skill │ │ │ ├── __init__.py │ │ │ └── routines │ │ │ │ ├── __init__.py │ │ │ │ └── a_routine.py │ │ └── utilities │ │ │ ├── test_find_template_vars.py │ │ │ ├── test_make_arg_set.py │ │ │ ├── test_paramspec.py │ │ │ ├── test_parse_command_string.py │ │ │ └── test_to_string.py │ ├── types.py │ ├── usage.py │ └── utilities.py │ └── uv.lock ├── mcp-servers ├── Makefile ├── ai-assist-content │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── mcp-example-brave-search.md │ ├── mcp-fastmcp-typescript-README.md │ ├── mcp-llms-full.txt │ ├── mcp-metadata-tips.md │ ├── mcp-python-sdk-README.md │ ├── mcp-typescript-sdk-README.md │ ├── pydanticai-documentation.md │ ├── pydanticai-example-question-graph.md │ ├── pydanticai-example-weather.md │ └── pydanticai-tutorial.md ├── mcp-server-bing-search │ ├── .env.example │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_server_bing_search │ │ ├── __init__.py │ │ ├── config.py │ │ ├── prompts │ │ │ ├── __init__.py │ │ │ ├── clean_website.py │ │ │ └── filter_links.py │ │ ├── server.py │ │ ├── start.py │ │ ├── tools.py │ │ ├── types.py │ │ ├── utils.py │ │ └── web │ │ │ ├── __init__.py │ │ │ ├── get_content.py │ │ │ ├── llm_processing.py │ │ │ ├── process_website.py │ │ │ └── search_bing.py │ ├── pyproject.toml │ ├── tests │ │ └── test_tools.py │ └── uv.lock ├── mcp-server-bundle │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_server_bundle │ │ ├── __init__.py │ │ └── main.py │ ├── pyinstaller.spec │ ├── pyproject.toml │ └── uv.lock ├── mcp-server-filesystem-edit │ ├── .env.example │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── data │ │ ├── attachments │ │ │ ├── Daily Game Ideas.txt │ │ │ ├── Frontend Framework Proposal.txt │ │ │ ├── ReDoodle.txt │ │ │ └── Research Template.tex │ │ ├── test_cases.yaml │ │ └── transcripts │ │ │ ├── transcript_Startup_Idea_1_202503031513.md │ │ │ ├── transcript_Startup_Idea_2_202503031659.md │ │ │ ├── transcript_Web_Frontends_202502281551.md │ │ │ └── transcript_research_simple.md │ ├── mcp_server_filesystem_edit │ │ ├── __init__.py │ │ ├── app_handling │ │ │ ├── __init__.py │ │ │ ├── excel.py │ │ │ ├── miktex.py │ │ │ ├── office_common.py │ │ │ ├── powerpoint.py │ │ │ └── word.py │ │ ├── config.py │ │ ├── evals │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── run_comments.py │ │ │ ├── run_edit.py │ │ │ └── run_ppt_edit.py │ │ ├── prompts │ │ │ ├── __init__.py │ │ │ ├── add_comments.py │ │ │ ├── analyze_comments.py │ │ │ ├── latex_edit.py │ │ │ ├── markdown_draft.py │ │ │ ├── markdown_edit.py │ │ │ └── powerpoint_edit.py │ │ ├── server.py │ │ ├── start.py │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── add_comments.py │ │ │ ├── edit.py │ │ │ ├── edit_adapters │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── latex.py │ │ │ │ └── markdown.py │ │ │ └── helpers.py │ │ └── types.py │ ├── pyproject.toml │ ├── tests │ │ ├── app_handling │ │ │ ├── test_excel.py │ │ │ ├── test_miktext.py │ │ │ ├── test_office_common.py │ │ │ ├── test_powerpoint.py │ │ │ └── test_word.py │ │ ├── conftest.py │ │ └── tools │ │ │ └── edit_adapters │ │ │ ├── test_latex.py │ │ │ └── test_markdown.py │ └── uv.lock ├── mcp-server-filesystem │ ├── .env.example │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_server_filesystem │ │ ├── __init__.py │ │ ├── config.py │ │ ├── server.py │ │ └── start.py │ ├── pyproject.toml │ ├── tests │ │ └── test_filesystem.py │ └── uv.lock ├── mcp-server-fusion │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── AddInIcon.svg │ ├── FusionMCPServerAddIn.manifest │ ├── FusionMCPServerAddIn.py │ ├── README.md │ ├── config.py │ ├── mcp_server_fusion │ │ ├── __init__.py │ │ ├── fusion_mcp_server.py │ │ ├── fusion_utils │ │ │ ├── __init__.py │ │ │ ├── event_utils.py │ │ │ ├── general_utils.py │ │ │ └── tool_utils.py │ │ ├── mcp_tools │ │ │ ├── __init__.py │ │ │ ├── fusion_3d_operation.py │ │ │ ├── fusion_geometry.py │ │ │ ├── fusion_pattern.py │ │ │ └── fusion_sketch.py │ │ └── vendor │ │ │ └── README.md │ └── requirements.txt ├── mcp-server-giphy │ ├── .env.example │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_server │ │ ├── __init__.py │ │ ├── config.py │ │ ├── giphy_search.py │ │ ├── sampling.py │ │ ├── server.py │ │ ├── start.py │ │ └── utils.py │ ├── pyproject.toml │ └── uv.lock ├── mcp-server-memory-user-bio │ ├── .env.example │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_server_memory_user_bio │ │ ├── __init__.py │ │ ├── config.py │ │ ├── server.py │ │ └── start.py │ ├── pyproject.toml │ └── uv.lock ├── mcp-server-memory-whiteboard │ ├── .env.example │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_server_memory_whiteboard │ │ ├── __init__.py │ │ ├── config.py │ │ ├── server.py │ │ └── start.py │ ├── pyproject.toml │ └── uv.lock ├── mcp-server-office │ ├── .env.example │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── build.sh │ ├── data │ │ ├── attachments │ │ │ ├── Daily Game Ideas.txt │ │ │ ├── Frontend Framework Proposal.txt │ │ │ └── ReDoodle.txt │ │ └── word │ │ │ ├── test_cases.yaml │ │ │ └── transcripts │ │ │ ├── transcript_Startup_Idea_1_202503031513.md │ │ │ ├── transcript_Startup_Idea_2_202503031659.md │ │ │ └── transcript_Web_Frontends_202502281551.md │ ├── mcp_server │ │ ├── __init__.py │ │ ├── app_interaction │ │ │ ├── __init__.py │ │ │ ├── excel_editor.py │ │ │ ├── powerpoint_editor.py │ │ │ └── word_editor.py │ │ ├── config.py │ │ ├── constants.py │ │ ├── evals │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── run_comment_analysis.py │ │ │ ├── run_feedback.py │ │ │ └── run_markdown_edit.py │ │ ├── helpers.py │ │ ├── markdown_edit │ │ │ ├── __init__.py │ │ │ ├── comment_analysis.py │ │ │ ├── feedback_step.py │ │ │ ├── markdown_edit.py │ │ │ └── utils.py │ │ ├── prompts │ │ │ ├── __init__.py │ │ │ ├── comment_analysis.py │ │ │ ├── feedback.py │ │ │ ├── markdown_draft.py │ │ │ └── markdown_edit.py │ │ ├── server.py │ │ ├── start.py │ │ └── types.py │ ├── pyproject.toml │ ├── tests │ │ └── test_word_editor.py │ └── uv.lock ├── mcp-server-open-deep-research-clone │ ├── .env.example │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_server_open_deep_research_clone │ │ ├── __init__.py │ │ ├── azure_openai.py │ │ ├── config.py │ │ ├── logging.py │ │ ├── sampling.py │ │ ├── server.py │ │ ├── start.py │ │ ├── utils.py │ │ └── web_research.py │ ├── pyproject.toml │ ├── test │ │ └── test_open_deep_research_clone.py │ └── uv.lock ├── mcp-server-open-deep-research │ ├── .env.example │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_server │ │ ├── __init__.py │ │ ├── config.py │ │ ├── libs │ │ │ └── open_deep_research │ │ │ │ ├── cookies.py │ │ │ │ ├── mdconvert.py │ │ │ │ ├── run_agents.py │ │ │ │ ├── text_inspector_tool.py │ │ │ │ ├── text_web_browser.py │ │ │ │ └── visual_qa.py │ │ ├── open_deep_research.py │ │ ├── server.py │ │ └── start.py │ ├── pyproject.toml │ └── uv.lock ├── mcp-server-template │ ├── .taplo.toml │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── copier.yml │ └── template │ │ └── {{ project_slug }} │ │ ├── .env.example.jinja │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── launch.json.jinja │ │ └── settings.json │ │ ├── Makefile.jinja │ │ ├── README.md.jinja │ │ ├── pyproject.toml.jinja │ │ └── {{ module_name }} │ │ ├── __init__.py │ │ ├── config.py.jinja │ │ ├── server.py.jinja │ │ └── start.py.jinja ├── mcp-server-vscode │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .npmrc │ ├── .vscode-test.mjs │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── ASSISTANT_BOOTSTRAP.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── eslint.config.mjs │ ├── images │ │ └── icon.png │ ├── out │ │ ├── extension.d.ts │ │ ├── extension.js │ │ ├── test │ │ │ ├── extension.test.d.ts │ │ │ └── extension.test.js │ │ ├── tools │ │ │ ├── code_checker.d.ts │ │ │ ├── code_checker.js │ │ │ ├── debug_tools.d.ts │ │ │ ├── debug_tools.js │ │ │ ├── focus_editor.d.ts │ │ │ ├── focus_editor.js │ │ │ ├── search_symbol.d.ts │ │ │ └── search_symbol.js │ │ └── utils │ │ │ ├── port.d.ts │ │ │ └── port.js │ ├── package.json │ ├── pnpm-lock.yaml │ ├── prettier.config.cjs │ ├── src │ │ ├── extension.d.ts │ │ ├── extension.ts │ │ ├── test │ │ │ ├── extension.test.d.ts │ │ │ └── extension.test.ts │ │ ├── tools │ │ │ ├── code_checker.d.ts │ │ │ ├── code_checker.ts │ │ │ ├── debug_tools.d.ts │ │ │ ├── debug_tools.ts │ │ │ ├── focus_editor.d.ts │ │ │ ├── focus_editor.ts │ │ │ ├── search_symbol.d.ts │ │ │ └── search_symbol.ts │ │ └── utils │ │ │ ├── port.d.ts │ │ │ └── port.ts │ ├── tsconfig.json │ ├── tsconfig.tsbuildinfo │ ├── vsc-extension-quickstart.md │ └── webpack.config.js └── mcp-server-web-research │ ├── .env.example │ ├── .gitignore │ ├── .vscode │ ├── launch.json │ └── settings.json │ ├── Makefile │ ├── README.md │ ├── mcp_server_web_research │ ├── __init__.py │ ├── azure_openai.py │ ├── config.py │ ├── logging.py │ ├── sampling.py │ ├── server.py │ ├── start.py │ ├── utils.py │ └── web_research.py │ ├── pyproject.toml │ ├── test │ └── test_web_research.py │ └── uv.lock ├── ruff.toml ├── semantic-workbench.code-workspace ├── tools ├── build_ai_context_files.py ├── collect_files.py ├── docker │ ├── Dockerfile.assistant │ ├── Dockerfile.mcp-server │ ├── azure_website_sshd.conf │ └── docker-entrypoint.sh ├── makefiles │ ├── docker-assistant.mk │ ├── docker-mcp-server.mk │ ├── docker.mk │ ├── python.mk │ ├── recursive.mk │ └── shell.mk ├── reset-service-data.ps1 ├── reset-service-data.sh ├── run-app.ps1 ├── run-app.sh ├── run-canonical-agent.ps1 ├── run-canonical-agent.sh ├── run-dotnet-examples-with-aspire.sh ├── run-python-example1.sh ├── run-python-example2.ps1 ├── run-python-example2.sh ├── run-service.ps1 ├── run-service.sh ├── run-workbench-chatbot.ps1 └── run-workbench-chatbot.sh ├── workbench-app ├── .dockerignore ├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── .vscode │ ├── launch.json │ └── settings.json ├── Dockerfile ├── Makefile ├── README.md ├── docker-entrypoint.sh ├── docs │ ├── APP_DEV_GUIDE.md │ ├── MESSAGE_METADATA.md │ ├── MESSAGE_TYPES.md │ ├── README.md │ └── STATE_INSPECTORS.md ├── index.html ├── nginx.conf ├── package.json ├── pnpm-lock.yaml ├── prettier.config.cjs ├── public │ └── assets │ │ ├── background-1-upscaled.jpg │ │ ├── background-1-upscaled.png │ │ ├── background-1.jpg │ │ ├── background-1.png │ │ ├── background-2.jpg │ │ ├── background-2.png │ │ ├── experimental-feature.jpg │ │ ├── favicon.svg │ │ ├── workflow-designer-1.jpg │ │ ├── workflow-designer-outlets.jpg │ │ ├── workflow-designer-states.jpg │ │ └── workflow-designer-transitions.jpg ├── run.sh ├── src │ ├── Constants.ts │ ├── Root.tsx │ ├── components │ │ ├── App │ │ │ ├── AppFooter.tsx │ │ │ ├── AppHeader.tsx │ │ │ ├── AppMenu.tsx │ │ │ ├── AppView.tsx │ │ │ ├── CodeLabel.tsx │ │ │ ├── CommandButton.tsx │ │ │ ├── ConfirmLeave.tsx │ │ │ ├── ContentExport.tsx │ │ │ ├── ContentImport.tsx │ │ │ ├── CopyButton.tsx │ │ │ ├── DialogControl.tsx │ │ │ ├── DynamicIframe.tsx │ │ │ ├── ErrorListFromAppState.tsx │ │ │ ├── ErrorMessageBar.tsx │ │ │ ├── ExperimentalNotice.tsx │ │ │ ├── FormWidgets │ │ │ │ ├── BaseModelEditorWidget.tsx │ │ │ │ ├── CustomizedArrayFieldTemplate.tsx │ │ │ │ ├── CustomizedFieldTemplate.tsx │ │ │ │ ├── CustomizedObjectFieldTemplate.tsx │ │ │ │ └── InspectableWidget.tsx │ │ │ ├── LabelWithDescription.tsx │ │ │ ├── Loading.tsx │ │ │ ├── MenuItemControl.tsx │ │ │ ├── MiniControl.tsx │ │ │ ├── MyAssistantServiceRegistrations.tsx │ │ │ ├── MyItemsManager.tsx │ │ │ ├── OverflowMenu.tsx │ │ │ ├── PresenceMotionList.tsx │ │ │ ├── ProfileSettings.tsx │ │ │ └── TooltipWrapper.tsx │ │ ├── AssistantServiceRegistrations │ │ │ ├── AssistantServiceRegistrationApiKey.tsx │ │ │ ├── AssistantServiceRegistrationApiKeyReset.tsx │ │ │ ├── AssistantServiceRegistrationCreate.tsx │ │ │ └── AssistantServiceRegistrationRemove.tsx │ │ ├── Assistants │ │ │ ├── ApplyConfigButton.tsx │ │ │ ├── AssistantAdd.tsx │ │ │ ├── AssistantConfigExportButton.tsx │ │ │ ├── AssistantConfigImportButton.tsx │ │ │ ├── AssistantConfiguration.tsx │ │ │ ├── AssistantConfigure.tsx │ │ │ ├── AssistantCreate.tsx │ │ │ ├── AssistantDelete.tsx │ │ │ ├── AssistantDuplicate.tsx │ │ │ ├── AssistantExport.tsx │ │ │ ├── AssistantImport.tsx │ │ │ ├── AssistantRemove.tsx │ │ │ ├── AssistantRename.tsx │ │ │ ├── AssistantServiceInfo.tsx │ │ │ ├── AssistantServiceMetadata.tsx │ │ │ └── MyAssistants.tsx │ │ ├── Conversations │ │ │ ├── Canvas │ │ │ │ ├── AssistantCanvas.tsx │ │ │ │ ├── AssistantCanvasList.tsx │ │ │ │ ├── AssistantInspector.tsx │ │ │ │ ├── AssistantInspectorList.tsx │ │ │ │ └── ConversationCanvas.tsx │ │ │ ├── ChatInputPlugins │ │ │ │ ├── ClearEditorPlugin.tsx │ │ │ │ ├── LexicalMenu.ts │ │ │ │ ├── ParticipantMentionsPlugin.tsx │ │ │ │ ├── TypeaheadMenuPlugin.css │ │ │ │ └── TypeaheadMenuPlugin.tsx │ │ │ ├── ContentRenderers │ │ │ │ ├── CodeContentRenderer.tsx │ │ │ │ ├── ContentListRenderer.tsx │ │ │ │ ├── ContentRenderer.tsx │ │ │ │ ├── DiffRenderer.tsx │ │ │ │ ├── HtmlContentRenderer.tsx │ │ │ │ ├── JsonSchemaContentRenderer.tsx │ │ │ │ ├── MarkdownContentRenderer.tsx │ │ │ │ ├── MarkdownEditorRenderer.tsx │ │ │ │ ├── MermaidContentRenderer.tsx │ │ │ │ ├── MusicABCContentRenderer.css │ │ │ │ └── MusicABCContentRenderer.tsx │ │ │ ├── ContextWindow.tsx │ │ │ ├── ConversationCreate.tsx │ │ │ ├── ConversationDuplicate.tsx │ │ │ ├── ConversationExport.tsx │ │ │ ├── ConversationFileIcon.tsx │ │ │ ├── ConversationRemove.tsx │ │ │ ├── ConversationRename.tsx │ │ │ ├── ConversationShare.tsx │ │ │ ├── ConversationShareCreate.tsx │ │ │ ├── ConversationShareList.tsx │ │ │ ├── ConversationShareView.tsx │ │ │ ├── ConversationTranscript.tsx │ │ │ ├── ConversationsImport.tsx │ │ │ ├── DebugInspector.tsx │ │ │ ├── FileItem.tsx │ │ │ ├── FileList.tsx │ │ │ ├── InputAttachmentList.tsx │ │ │ ├── InputOptionsControl.tsx │ │ │ ├── InteractHistory.tsx │ │ │ ├── InteractInput.tsx │ │ │ ├── Message │ │ │ │ ├── AttachmentSection.tsx │ │ │ │ ├── ContentRenderer.tsx │ │ │ │ ├── ContentSafetyNotice.tsx │ │ │ │ ├── InteractMessage.tsx │ │ │ │ ├── MessageActions.tsx │ │ │ │ ├── MessageBase.tsx │ │ │ │ ├── MessageBody.tsx │ │ │ │ ├── MessageContent.tsx │ │ │ │ ├── MessageFooter.tsx │ │ │ │ ├── MessageHeader.tsx │ │ │ │ ├── NotificationAccordion.tsx │ │ │ │ └── ToolResultMessage.tsx │ │ │ ├── MessageDelete.tsx │ │ │ ├── MessageLink.tsx │ │ │ ├── MyConversations.tsx │ │ │ ├── MyShares.tsx │ │ │ ├── ParticipantAvatar.tsx │ │ │ ├── ParticipantAvatarGroup.tsx │ │ │ ├── ParticipantItem.tsx │ │ │ ├── ParticipantList.tsx │ │ │ ├── ParticipantStatus.tsx │ │ │ ├── RewindConversation.tsx │ │ │ ├── ShareRemove.tsx │ │ │ ├── SpeechButton.tsx │ │ │ └── ToolCalls.tsx │ │ └── FrontDoor │ │ │ ├── Chat │ │ │ ├── AssistantDrawer.tsx │ │ │ ├── CanvasDrawer.tsx │ │ │ ├── Chat.tsx │ │ │ ├── ChatCanvas.tsx │ │ │ ├── ChatControls.tsx │ │ │ └── ConversationDrawer.tsx │ │ │ ├── Controls │ │ │ ├── AssistantCard.tsx │ │ │ ├── AssistantSelector.tsx │ │ │ ├── AssistantServiceSelector.tsx │ │ │ ├── ConversationItem.tsx │ │ │ ├── ConversationList.tsx │ │ │ ├── ConversationListOptions.tsx │ │ │ ├── NewConversationButton.tsx │ │ │ ├── NewConversationForm.tsx │ │ │ └── SiteMenuButton.tsx │ │ │ ├── GlobalContent.tsx │ │ │ └── MainContent.tsx │ ├── global.d.ts │ ├── index.css │ ├── libs │ │ ├── AppStorage.ts │ │ ├── AuthHelper.ts │ │ ├── EventSubscriptionManager.ts │ │ ├── Theme.ts │ │ ├── Utility.ts │ │ ├── useAssistantCapabilities.ts │ │ ├── useChatCanvasController.ts │ │ ├── useConversationEvents.ts │ │ ├── useConversationUtility.ts │ │ ├── useCreateConversation.ts │ │ ├── useDebugComponentLifecycle.ts │ │ ├── useDragAndDrop.ts │ │ ├── useEnvironment.ts │ │ ├── useExportUtility.ts │ │ ├── useHistoryUtility.ts │ │ ├── useKeySequence.ts │ │ ├── useMediaQuery.ts │ │ ├── useMicrosoftGraph.ts │ │ ├── useNotify.tsx │ │ ├── useParticipantUtility.tsx │ │ ├── useSiteUtility.ts │ │ ├── useWorkbenchEventSource.ts │ │ └── useWorkbenchService.ts │ ├── main.tsx │ ├── models │ │ ├── Assistant.ts │ │ ├── AssistantCapability.ts │ │ ├── AssistantServiceInfo.ts │ │ ├── AssistantServiceRegistration.ts │ │ ├── Config.ts │ │ ├── Conversation.ts │ │ ├── ConversationFile.ts │ │ ├── ConversationMessage.ts │ │ ├── ConversationMessageDebug.ts │ │ ├── ConversationParticipant.ts │ │ ├── ConversationShare.ts │ │ ├── ConversationShareRedemption.ts │ │ ├── ConversationState.ts │ │ ├── ConversationStateDescription.ts │ │ ├── ServiceEnvironment.ts │ │ └── User.ts │ ├── redux │ │ ├── app │ │ │ ├── hooks.ts │ │ │ ├── rtkQueryErrorLogger.ts │ │ │ └── store.ts │ │ └── features │ │ │ ├── app │ │ │ ├── AppState.ts │ │ │ └── appSlice.ts │ │ │ ├── chatCanvas │ │ │ ├── ChatCanvasState.ts │ │ │ └── chatCanvasSlice.ts │ │ │ ├── localUser │ │ │ ├── LocalUserState.ts │ │ │ └── localUserSlice.ts │ │ │ └── settings │ │ │ ├── SettingsState.ts │ │ │ └── settingsSlice.ts │ ├── routes │ │ ├── AcceptTerms.tsx │ │ ├── AssistantEditor.tsx │ │ ├── AssistantServiceRegistrationEditor.tsx │ │ ├── Dashboard.tsx │ │ ├── ErrorPage.tsx │ │ ├── FrontDoor.tsx │ │ ├── Login.tsx │ │ ├── Settings.tsx │ │ ├── ShareRedeem.tsx │ │ └── Shares.tsx │ ├── services │ │ └── workbench │ │ │ ├── assistant.ts │ │ │ ├── assistantService.ts │ │ │ ├── conversation.ts │ │ │ ├── file.ts │ │ │ ├── index.ts │ │ │ ├── participant.ts │ │ │ ├── share.ts │ │ │ ├── state.ts │ │ │ └── workbench.ts │ └── vite-env.d.ts ├── tools │ └── filtered-ts-prune.cjs ├── tsconfig.json └── vite.config.ts └── workbench-service ├── .env.example ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── Dockerfile ├── Makefile ├── README.md ├── alembic.ini ├── devdb ├── docker-compose.yaml └── postgresql-init.sh ├── migrations ├── README ├── env.py ├── script.py.mako └── versions │ ├── 2024_09_19_000000_69dcda481c14_init.py │ ├── 2024_09_19_190029_dffb1d7e219a_file_version_filename.py │ ├── 2024_09_20_204130_b29524775484_share.py │ ├── 2024_10_30_231536_039bec8edc33_index_message_type.py │ ├── 2024_11_04_204029_5149c7fb5a32_conversationmessagedebug.py │ ├── 2024_11_05_015124_245baf258e11_double_check_debugs.py │ ├── 2024_11_25_191056_a106de176394_drop_workflow.py │ ├── 2025_03_19_140136_aaaf792d4d72_set_user_title_set.py │ ├── 2025_03_21_153250_3763629295ad_add_assistant_template_id.py │ ├── 2025_05_19_163613_b2f86e981885_delete_context_transfer_assistants.py │ └── 2025_06_18_174328_503c739152f3_delete_knowlege_transfer_assistants.py ├── pyproject.toml ├── semantic_workbench_service ├── __init__.py ├── api.py ├── assistant_api_key.py ├── auth.py ├── azure_speech.py ├── config.py ├── controller │ ├── __init__.py │ ├── assistant.py │ ├── assistant_service_client_pool.py │ ├── assistant_service_registration.py │ ├── conversation.py │ ├── conversation_share.py │ ├── convert.py │ ├── exceptions.py │ ├── export_import.py │ ├── file.py │ ├── participant.py │ └── user.py ├── db.py ├── event.py ├── files.py ├── logging_config.py ├── middleware.py ├── query.py ├── service.py ├── service_user_principals.py └── start.py ├── tests ├── __init__.py ├── conftest.py ├── docker-compose.yaml ├── test_assistant_api_key.py ├── test_files.py ├── test_integration.py ├── test_middleware.py ├── test_migrations.py ├── test_workbench_service.py └── types.py └── uv.lock /.devcontainer/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.devcontainer/.vscode/settings.json -------------------------------------------------------------------------------- /.devcontainer/OPTIMIZING_FOR_CODESPACES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.devcontainer/OPTIMIZING_FOR_CODESPACES.md -------------------------------------------------------------------------------- /.devcontainer/POST_SETUP_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.devcontainer/POST_SETUP_README.md -------------------------------------------------------------------------------- /.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.devcontainer/README.md -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/policheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/policheck.yml -------------------------------------------------------------------------------- /.github/workflows/assistants-codespace-assistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/assistants-codespace-assistant.yml -------------------------------------------------------------------------------- /.github/workflows/assistants-document-assistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/assistants-document-assistant.yml -------------------------------------------------------------------------------- /.github/workflows/assistants-explorer-assistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/assistants-explorer-assistant.yml -------------------------------------------------------------------------------- /.github/workflows/assistants-navigator-assistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/assistants-navigator-assistant.yml -------------------------------------------------------------------------------- /.github/workflows/assistants-project-assistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/assistants-project-assistant.yml -------------------------------------------------------------------------------- /.github/workflows/assistants-prospector-assistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/assistants-prospector-assistant.yml -------------------------------------------------------------------------------- /.github/workflows/assistants-skill-assistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/assistants-skill-assistant.yml -------------------------------------------------------------------------------- /.github/workflows/libraries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/libraries.yml -------------------------------------------------------------------------------- /.github/workflows/mcp-server-giphy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/mcp-server-giphy.yml -------------------------------------------------------------------------------- /.github/workflows/mcp-server-memory-filesystem-edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/mcp-server-memory-filesystem-edit.yml -------------------------------------------------------------------------------- /.github/workflows/mcp-server-memory-user-bio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/mcp-server-memory-user-bio.yml -------------------------------------------------------------------------------- /.github/workflows/mcp-server-memory-whiteboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/mcp-server-memory-whiteboard.yml -------------------------------------------------------------------------------- /.github/workflows/mcp-server-open-deep-research-clone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/mcp-server-open-deep-research-clone.yml -------------------------------------------------------------------------------- /.github/workflows/mcp-server-web-research.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/mcp-server-web-research.yml -------------------------------------------------------------------------------- /.github/workflows/workbench-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/workbench-app.yml -------------------------------------------------------------------------------- /.github/workflows/workbench-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.github/workflows/workbench-service.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.gitignore -------------------------------------------------------------------------------- /.multi-root-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.multi-root-tools/Makefile -------------------------------------------------------------------------------- /.multi-root-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.multi-root-tools/README.md -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /KNOWN_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/KNOWN_ISSUES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/README.md -------------------------------------------------------------------------------- /RESPONSIBLE_AI_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/RESPONSIBLE_AI_FAQ.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /ai_context/generated/ASPIRE_ORCHESTRATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/ASPIRE_ORCHESTRATOR.md -------------------------------------------------------------------------------- /ai_context/generated/ASSISTANTS_OTHER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/ASSISTANTS_OTHER.md -------------------------------------------------------------------------------- /ai_context/generated/ASSISTANTS_OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/ASSISTANTS_OVERVIEW.md -------------------------------------------------------------------------------- /ai_context/generated/ASSISTANT_CODESPACE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/ASSISTANT_CODESPACE.md -------------------------------------------------------------------------------- /ai_context/generated/ASSISTANT_DOCUMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/ASSISTANT_DOCUMENT.md -------------------------------------------------------------------------------- /ai_context/generated/ASSISTANT_NAVIGATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/ASSISTANT_NAVIGATOR.md -------------------------------------------------------------------------------- /ai_context/generated/ASSISTANT_PROJECT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/ASSISTANT_PROJECT.md -------------------------------------------------------------------------------- /ai_context/generated/ASSISTANT_PROSPECTOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/ASSISTANT_PROSPECTOR.md -------------------------------------------------------------------------------- /ai_context/generated/CONFIGURATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/CONFIGURATION.md -------------------------------------------------------------------------------- /ai_context/generated/DOTNET_LIBRARIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/DOTNET_LIBRARIES.md -------------------------------------------------------------------------------- /ai_context/generated/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/EXAMPLES.md -------------------------------------------------------------------------------- /ai_context/generated/MCP_SERVERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/MCP_SERVERS.md -------------------------------------------------------------------------------- /ai_context/generated/PYTHON_LIBRARIES_AI_CLIENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/PYTHON_LIBRARIES_AI_CLIENTS.md -------------------------------------------------------------------------------- /ai_context/generated/PYTHON_LIBRARIES_CORE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/PYTHON_LIBRARIES_CORE.md -------------------------------------------------------------------------------- /ai_context/generated/PYTHON_LIBRARIES_EXTENSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/PYTHON_LIBRARIES_EXTENSIONS.md -------------------------------------------------------------------------------- /ai_context/generated/PYTHON_LIBRARIES_SKILLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/PYTHON_LIBRARIES_SKILLS.md -------------------------------------------------------------------------------- /ai_context/generated/PYTHON_LIBRARIES_SPECIALIZED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/PYTHON_LIBRARIES_SPECIALIZED.md -------------------------------------------------------------------------------- /ai_context/generated/TOOLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/TOOLS.md -------------------------------------------------------------------------------- /ai_context/generated/WORKBENCH_FRONTEND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/WORKBENCH_FRONTEND.md -------------------------------------------------------------------------------- /ai_context/generated/WORKBENCH_SERVICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ai_context/generated/WORKBENCH_SERVICE.md -------------------------------------------------------------------------------- /aspire-orchestrator/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/.editorconfig -------------------------------------------------------------------------------- /aspire-orchestrator/Aspire.AppHost/.gitignore: -------------------------------------------------------------------------------- 1 | .azure 2 | -------------------------------------------------------------------------------- /aspire-orchestrator/Aspire.AppHost/Aspire.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/Aspire.AppHost/Aspire.AppHost.csproj -------------------------------------------------------------------------------- /aspire-orchestrator/Aspire.AppHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/Aspire.AppHost/Program.cs -------------------------------------------------------------------------------- /aspire-orchestrator/Aspire.AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/Aspire.AppHost/appsettings.json -------------------------------------------------------------------------------- /aspire-orchestrator/Aspire.Extensions/Dashboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/Aspire.Extensions/Dashboard.cs -------------------------------------------------------------------------------- /aspire-orchestrator/Aspire.Extensions/PathNormalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/Aspire.Extensions/PathNormalizer.cs -------------------------------------------------------------------------------- /aspire-orchestrator/Aspire.Extensions/UvAppResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/Aspire.Extensions/UvAppResource.cs -------------------------------------------------------------------------------- /aspire-orchestrator/Aspire.ServiceDefaults/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/Aspire.ServiceDefaults/Extensions.cs -------------------------------------------------------------------------------- /aspire-orchestrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/README.md -------------------------------------------------------------------------------- /aspire-orchestrator/SemanticWorkbench.Aspire.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/SemanticWorkbench.Aspire.sln -------------------------------------------------------------------------------- /aspire-orchestrator/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/aspire-orchestrator/run.sh -------------------------------------------------------------------------------- /assistants/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/Makefile -------------------------------------------------------------------------------- /assistants/codespace-assistant/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/.env.example -------------------------------------------------------------------------------- /assistants/codespace-assistant/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["semanticworkbenchteam.mcp-server-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /assistants/codespace-assistant/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/.vscode/launch.json -------------------------------------------------------------------------------- /assistants/codespace-assistant/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/.vscode/settings.json -------------------------------------------------------------------------------- /assistants/codespace-assistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/Makefile -------------------------------------------------------------------------------- /assistants/codespace-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/README.md -------------------------------------------------------------------------------- /assistants/codespace-assistant/assistant.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/assistant.code-workspace -------------------------------------------------------------------------------- /assistants/codespace-assistant/assistant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/assistant/__init__.py -------------------------------------------------------------------------------- /assistants/codespace-assistant/assistant/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/assistant/assets/icon.svg -------------------------------------------------------------------------------- /assistants/codespace-assistant/assistant/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/assistant/chat.py -------------------------------------------------------------------------------- /assistants/codespace-assistant/assistant/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/assistant/config.py -------------------------------------------------------------------------------- /assistants/codespace-assistant/assistant/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/assistant/helpers.py -------------------------------------------------------------------------------- /assistants/codespace-assistant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/pyproject.toml -------------------------------------------------------------------------------- /assistants/codespace-assistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/codespace-assistant/uv.lock -------------------------------------------------------------------------------- /assistants/document-assistant/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/.env.example -------------------------------------------------------------------------------- /assistants/document-assistant/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/.vscode/launch.json -------------------------------------------------------------------------------- /assistants/document-assistant/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/.vscode/settings.json -------------------------------------------------------------------------------- /assistants/document-assistant/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/CLAUDE.md -------------------------------------------------------------------------------- /assistants/document-assistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/Makefile -------------------------------------------------------------------------------- /assistants/document-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/README.md -------------------------------------------------------------------------------- /assistants/document-assistant/assistant.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/assistant.code-workspace -------------------------------------------------------------------------------- /assistants/document-assistant/assistant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/assistant/__init__.py -------------------------------------------------------------------------------- /assistants/document-assistant/assistant/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/assistant/assets/icon.svg -------------------------------------------------------------------------------- /assistants/document-assistant/assistant/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/assistant/chat.py -------------------------------------------------------------------------------- /assistants/document-assistant/assistant/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/assistant/config.py -------------------------------------------------------------------------------- /assistants/document-assistant/assistant/context_management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assistants/document-assistant/assistant/guidance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assistants/document-assistant/assistant/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assistants/document-assistant/assistant/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/assistant/types.py -------------------------------------------------------------------------------- /assistants/document-assistant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/pyproject.toml -------------------------------------------------------------------------------- /assistants/document-assistant/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assistants/document-assistant/tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/tests/test_convert.py -------------------------------------------------------------------------------- /assistants/document-assistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/document-assistant/uv.lock -------------------------------------------------------------------------------- /assistants/explorer-assistant/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/.env.example -------------------------------------------------------------------------------- /assistants/explorer-assistant/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/.vscode/launch.json -------------------------------------------------------------------------------- /assistants/explorer-assistant/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/.vscode/settings.json -------------------------------------------------------------------------------- /assistants/explorer-assistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/Makefile -------------------------------------------------------------------------------- /assistants/explorer-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/README.md -------------------------------------------------------------------------------- /assistants/explorer-assistant/assistant.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/assistant.code-workspace -------------------------------------------------------------------------------- /assistants/explorer-assistant/assistant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/assistant/__init__.py -------------------------------------------------------------------------------- /assistants/explorer-assistant/assistant/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/assistant/chat.py -------------------------------------------------------------------------------- /assistants/explorer-assistant/assistant/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/assistant/config.py -------------------------------------------------------------------------------- /assistants/explorer-assistant/assistant/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/assistant/helpers.py -------------------------------------------------------------------------------- /assistants/explorer-assistant/assistant/response/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/assistant/response/model.py -------------------------------------------------------------------------------- /assistants/explorer-assistant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/pyproject.toml -------------------------------------------------------------------------------- /assistants/explorer-assistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/explorer-assistant/uv.lock -------------------------------------------------------------------------------- /assistants/guided-conversation-assistant/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/guided-conversation-assistant/.env.example -------------------------------------------------------------------------------- /assistants/guided-conversation-assistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/guided-conversation-assistant/Makefile -------------------------------------------------------------------------------- /assistants/guided-conversation-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/guided-conversation-assistant/README.md -------------------------------------------------------------------------------- /assistants/guided-conversation-assistant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/guided-conversation-assistant/pyproject.toml -------------------------------------------------------------------------------- /assistants/guided-conversation-assistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/guided-conversation-assistant/uv.lock -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/knowledge-transfer-assistant/.env.example -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/knowledge-transfer-assistant/CLAUDE.md -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/knowledge-transfer-assistant/Makefile -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/knowledge-transfer-assistant/README.md -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/assistant/agentic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/assistant/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/knowledge-transfer-assistant/assistant/data.py -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/docs/DEV_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/knowledge-transfer-assistant/docs/DEV_GUIDE.md -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/docs/JTBD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/knowledge-transfer-assistant/docs/JTBD.md -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/knowledge-transfer-assistant/pyproject.toml -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Tests for project assistant 2 | -------------------------------------------------------------------------------- /assistants/knowledge-transfer-assistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/knowledge-transfer-assistant/uv.lock -------------------------------------------------------------------------------- /assistants/navigator-assistant/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/.env.example -------------------------------------------------------------------------------- /assistants/navigator-assistant/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/.vscode/launch.json -------------------------------------------------------------------------------- /assistants/navigator-assistant/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/.vscode/settings.json -------------------------------------------------------------------------------- /assistants/navigator-assistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/Makefile -------------------------------------------------------------------------------- /assistants/navigator-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/README.md -------------------------------------------------------------------------------- /assistants/navigator-assistant/assistant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/assistant/__init__.py -------------------------------------------------------------------------------- /assistants/navigator-assistant/assistant/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/assistant/chat.py -------------------------------------------------------------------------------- /assistants/navigator-assistant/assistant/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/assistant/config.py -------------------------------------------------------------------------------- /assistants/navigator-assistant/assistant/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/assistant/helpers.py -------------------------------------------------------------------------------- /assistants/navigator-assistant/assistant/text_includes/guidance_prompt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assistants/navigator-assistant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/pyproject.toml -------------------------------------------------------------------------------- /assistants/navigator-assistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/navigator-assistant/uv.lock -------------------------------------------------------------------------------- /assistants/project-assistant/.cspell/custom-dictionary-workspace.txt: -------------------------------------------------------------------------------- 1 | agentic 2 | -------------------------------------------------------------------------------- /assistants/project-assistant/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/.env.example -------------------------------------------------------------------------------- /assistants/project-assistant/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/.vscode/launch.json -------------------------------------------------------------------------------- /assistants/project-assistant/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/.vscode/settings.json -------------------------------------------------------------------------------- /assistants/project-assistant/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/CLAUDE.md -------------------------------------------------------------------------------- /assistants/project-assistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/Makefile -------------------------------------------------------------------------------- /assistants/project-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/README.md -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/__init__.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/agentic/act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/agentic/act.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/agentic/focus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/agentic/focus.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/assets/icon.svg -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/assistant.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/common.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/config.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/data.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/errors.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/files.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/logging.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/notifications.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/prompt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/prompt_utils.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/storage.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/string_utils.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/tools/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/tools/base.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/tools/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/tools/tasks.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/tools/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/tools/todo.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/ui_tabs/brief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/ui_tabs/brief.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/ui_tabs/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/ui_tabs/debug.py -------------------------------------------------------------------------------- /assistants/project-assistant/assistant/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/assistant/utils.py -------------------------------------------------------------------------------- /assistants/project-assistant/docs/DEV_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/docs/DEV_GUIDE.md -------------------------------------------------------------------------------- /assistants/project-assistant/docs/JTBD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/docs/JTBD.md -------------------------------------------------------------------------------- /assistants/project-assistant/docs/design/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/docs/design/actions.md -------------------------------------------------------------------------------- /assistants/project-assistant/docs/design/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/docs/design/design.md -------------------------------------------------------------------------------- /assistants/project-assistant/docs/design/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/docs/design/inference.md -------------------------------------------------------------------------------- /assistants/project-assistant/docs/how-kta-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/docs/how-kta-works.md -------------------------------------------------------------------------------- /assistants/project-assistant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/pyproject.toml -------------------------------------------------------------------------------- /assistants/project-assistant/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Tests for project assistant 2 | -------------------------------------------------------------------------------- /assistants/project-assistant/tests/test_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/tests/test_inspector.py -------------------------------------------------------------------------------- /assistants/project-assistant/tests/test_team_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/tests/test_team_mode.py -------------------------------------------------------------------------------- /assistants/project-assistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/project-assistant/uv.lock -------------------------------------------------------------------------------- /assistants/prospector-assistant/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/.env.example -------------------------------------------------------------------------------- /assistants/prospector-assistant/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/.vscode/launch.json -------------------------------------------------------------------------------- /assistants/prospector-assistant/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/.vscode/settings.json -------------------------------------------------------------------------------- /assistants/prospector-assistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/Makefile -------------------------------------------------------------------------------- /assistants/prospector-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/README.md -------------------------------------------------------------------------------- /assistants/prospector-assistant/assistant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/assistant/__init__.py -------------------------------------------------------------------------------- /assistants/prospector-assistant/assistant/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/assistant/chat.py -------------------------------------------------------------------------------- /assistants/prospector-assistant/assistant/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/assistant/config.py -------------------------------------------------------------------------------- /assistants/prospector-assistant/assistant/form_fill_extension/steps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assistants/prospector-assistant/assistant/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/assistant/helpers.py -------------------------------------------------------------------------------- /assistants/prospector-assistant/assistant/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/assistant/legacy.py -------------------------------------------------------------------------------- /assistants/prospector-assistant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/pyproject.toml -------------------------------------------------------------------------------- /assistants/prospector-assistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/prospector-assistant/uv.lock -------------------------------------------------------------------------------- /assistants/skill-assistant/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/.env.example -------------------------------------------------------------------------------- /assistants/skill-assistant/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/.vscode/launch.json -------------------------------------------------------------------------------- /assistants/skill-assistant/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/.vscode/settings.json -------------------------------------------------------------------------------- /assistants/skill-assistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/Makefile -------------------------------------------------------------------------------- /assistants/skill-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/README.md -------------------------------------------------------------------------------- /assistants/skill-assistant/assistant.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/assistant.code-workspace -------------------------------------------------------------------------------- /assistants/skill-assistant/assistant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/assistant/__init__.py -------------------------------------------------------------------------------- /assistants/skill-assistant/assistant/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/assistant/config.py -------------------------------------------------------------------------------- /assistants/skill-assistant/assistant/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/assistant/logging.py -------------------------------------------------------------------------------- /assistants/skill-assistant/assistant/skill_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/assistant/skill_assistant.py -------------------------------------------------------------------------------- /assistants/skill-assistant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/pyproject.toml -------------------------------------------------------------------------------- /assistants/skill-assistant/tests/test_setup.py: -------------------------------------------------------------------------------- 1 | def test_setup(): 2 | assert True 3 | -------------------------------------------------------------------------------- /assistants/skill-assistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/assistants/skill-assistant/uv.lock -------------------------------------------------------------------------------- /docs/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/.vscode/settings.json -------------------------------------------------------------------------------- /docs/ASSISTANT_CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/ASSISTANT_CONFIG.md -------------------------------------------------------------------------------- /docs/ASSISTANT_DEVELOPMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/ASSISTANT_DEVELOPMENT_GUIDE.md -------------------------------------------------------------------------------- /docs/CUSTOM_APP_REGISTRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/CUSTOM_APP_REGISTRATION.md -------------------------------------------------------------------------------- /docs/HOSTED_ASSISTANT_WITH_LOCAL_MCP_SERVERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/HOSTED_ASSISTANT_WITH_LOCAL_MCP_SERVERS.md -------------------------------------------------------------------------------- /docs/LOCAL_ASSISTANT_WITH_REMOTE_WORKBENCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/LOCAL_ASSISTANT_WITH_REMOTE_WORKBENCH.md -------------------------------------------------------------------------------- /docs/SETUP_DEV_ENVIRONMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/SETUP_DEV_ENVIRONMENT.md -------------------------------------------------------------------------------- /docs/WORKBENCH_APP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/WORKBENCH_APP.md -------------------------------------------------------------------------------- /docs/images/architecture-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/architecture-animation.gif -------------------------------------------------------------------------------- /docs/images/configure_assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/configure_assistant.png -------------------------------------------------------------------------------- /docs/images/conversation_canvas_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/conversation_canvas_open.png -------------------------------------------------------------------------------- /docs/images/conversation_duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/conversation_duplicate.png -------------------------------------------------------------------------------- /docs/images/conversation_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/conversation_export.png -------------------------------------------------------------------------------- /docs/images/conversation_share_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/conversation_share_dialog.png -------------------------------------------------------------------------------- /docs/images/conversation_share_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/conversation_share_link.png -------------------------------------------------------------------------------- /docs/images/dashboard_configured_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/dashboard_configured_view.png -------------------------------------------------------------------------------- /docs/images/dashboard_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/dashboard_view.png -------------------------------------------------------------------------------- /docs/images/license_agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/license_agreement.png -------------------------------------------------------------------------------- /docs/images/message_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/message_bar.png -------------------------------------------------------------------------------- /docs/images/message_inspection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/message_inspection.png -------------------------------------------------------------------------------- /docs/images/message_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/message_link.png -------------------------------------------------------------------------------- /docs/images/new_prospector_assistant_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/new_prospector_assistant_dialog.png -------------------------------------------------------------------------------- /docs/images/open_conversation_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/open_conversation_canvas.png -------------------------------------------------------------------------------- /docs/images/prospector_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/prospector_example.png -------------------------------------------------------------------------------- /docs/images/readme1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/readme1.png -------------------------------------------------------------------------------- /docs/images/readme2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/readme2.png -------------------------------------------------------------------------------- /docs/images/readme3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/readme3.png -------------------------------------------------------------------------------- /docs/images/rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/rewind.png -------------------------------------------------------------------------------- /docs/images/signin_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/signin_page.png -------------------------------------------------------------------------------- /docs/images/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/docs/images/splash_screen.png -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/dotnet/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/.editorconfig -------------------------------------------------------------------------------- /examples/dotnet/dotnet-01-echo-bot/MyAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-01-echo-bot/MyAgent.cs -------------------------------------------------------------------------------- /examples/dotnet/dotnet-01-echo-bot/MyAgentConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-01-echo-bot/MyAgentConfig.cs -------------------------------------------------------------------------------- /examples/dotnet/dotnet-01-echo-bot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-01-echo-bot/Program.cs -------------------------------------------------------------------------------- /examples/dotnet/dotnet-01-echo-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-01-echo-bot/README.md -------------------------------------------------------------------------------- /examples/dotnet/dotnet-01-echo-bot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-01-echo-bot/appsettings.json -------------------------------------------------------------------------------- /examples/dotnet/dotnet-02-message-types-demo/MyAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-02-message-types-demo/MyAgent.cs -------------------------------------------------------------------------------- /examples/dotnet/dotnet-02-message-types-demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-02-message-types-demo/Program.cs -------------------------------------------------------------------------------- /examples/dotnet/dotnet-02-message-types-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-02-message-types-demo/README.md -------------------------------------------------------------------------------- /examples/dotnet/dotnet-03-simple-chatbot/MyAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-03-simple-chatbot/MyAgent.cs -------------------------------------------------------------------------------- /examples/dotnet/dotnet-03-simple-chatbot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-03-simple-chatbot/Program.cs -------------------------------------------------------------------------------- /examples/dotnet/dotnet-03-simple-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/dotnet/dotnet-03-simple-chatbot/README.md -------------------------------------------------------------------------------- /examples/python/python-01-echo-bot/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-01-echo-bot/.env.example -------------------------------------------------------------------------------- /examples/python/python-01-echo-bot/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-01-echo-bot/.vscode/launch.json -------------------------------------------------------------------------------- /examples/python/python-01-echo-bot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-01-echo-bot/Makefile -------------------------------------------------------------------------------- /examples/python/python-01-echo-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-01-echo-bot/README.md -------------------------------------------------------------------------------- /examples/python/python-01-echo-bot/assistant/__init__.py: -------------------------------------------------------------------------------- 1 | from .chat import app 2 | 3 | __all__ = ["app"] 4 | -------------------------------------------------------------------------------- /examples/python/python-01-echo-bot/assistant/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-01-echo-bot/assistant/chat.py -------------------------------------------------------------------------------- /examples/python/python-01-echo-bot/assistant/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-01-echo-bot/assistant/config.py -------------------------------------------------------------------------------- /examples/python/python-01-echo-bot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-01-echo-bot/pyproject.toml -------------------------------------------------------------------------------- /examples/python/python-01-echo-bot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-01-echo-bot/uv.lock -------------------------------------------------------------------------------- /examples/python/python-02-simple-chatbot/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-02-simple-chatbot/.env.example -------------------------------------------------------------------------------- /examples/python/python-02-simple-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-02-simple-chatbot/Makefile -------------------------------------------------------------------------------- /examples/python/python-02-simple-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-02-simple-chatbot/README.md -------------------------------------------------------------------------------- /examples/python/python-02-simple-chatbot/assistant/__init__.py: -------------------------------------------------------------------------------- 1 | from .chat import app 2 | 3 | __all__ = ["app"] 4 | -------------------------------------------------------------------------------- /examples/python/python-02-simple-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-02-simple-chatbot/pyproject.toml -------------------------------------------------------------------------------- /examples/python/python-02-simple-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-02-simple-chatbot/uv.lock -------------------------------------------------------------------------------- /examples/python/python-03-multimodel-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-03-multimodel-chatbot/Makefile -------------------------------------------------------------------------------- /examples/python/python-03-multimodel-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-03-multimodel-chatbot/README.md -------------------------------------------------------------------------------- /examples/python/python-03-multimodel-chatbot/assistant/__init__.py: -------------------------------------------------------------------------------- 1 | from .chat import app 2 | 3 | __all__ = ["app"] 4 | -------------------------------------------------------------------------------- /examples/python/python-03-multimodel-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/examples/python/python-03-multimodel-chatbot/uv.lock -------------------------------------------------------------------------------- /libraries/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/Makefile -------------------------------------------------------------------------------- /libraries/dotnet/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/.editorconfig -------------------------------------------------------------------------------- /libraries/dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/README.md -------------------------------------------------------------------------------- /libraries/dotnet/SemanticWorkbench.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/SemanticWorkbench.sln -------------------------------------------------------------------------------- /libraries/dotnet/SemanticWorkbench.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/SemanticWorkbench.sln.DotSettings -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/AgentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/AgentBase.cs -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/Constants.cs -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/IAgentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/IAgentBase.cs -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/Models/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/Models/Command.cs -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/Models/DebugInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/Models/DebugInfo.cs -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/Models/Insight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/Models/Insight.cs -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/Models/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/Models/Message.cs -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/Models/Sender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/Models/Sender.cs -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/Webservice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/Webservice.cs -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/WorkbenchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/WorkbenchConfig.cs -------------------------------------------------------------------------------- /libraries/dotnet/WorkbenchConnector/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/WorkbenchConnector/icon.png -------------------------------------------------------------------------------- /libraries/dotnet/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/dotnet/pack.sh -------------------------------------------------------------------------------- /libraries/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/Makefile -------------------------------------------------------------------------------- /libraries/python/anthropic-client/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/anthropic-client/.vscode/settings.json -------------------------------------------------------------------------------- /libraries/python/anthropic-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/anthropic-client/Makefile -------------------------------------------------------------------------------- /libraries/python/anthropic-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/anthropic-client/README.md -------------------------------------------------------------------------------- /libraries/python/anthropic-client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/anthropic-client/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/anthropic-client/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/anthropic-client/uv.lock -------------------------------------------------------------------------------- /libraries/python/assistant-data-gen/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-data-gen/.vscode/launch.json -------------------------------------------------------------------------------- /libraries/python/assistant-data-gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-data-gen/Makefile -------------------------------------------------------------------------------- /libraries/python/assistant-data-gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-data-gen/README.md -------------------------------------------------------------------------------- /libraries/python/assistant-data-gen/assistant_data_gen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/assistant-data-gen/assistant_data_gen/gce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/assistant-data-gen/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-data-gen/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/assistant-data-gen/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-data-gen/uv.lock -------------------------------------------------------------------------------- /libraries/python/assistant-drive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-drive/.gitignore -------------------------------------------------------------------------------- /libraries/python/assistant-drive/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-drive/.vscode/settings.json -------------------------------------------------------------------------------- /libraries/python/assistant-drive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-drive/Makefile -------------------------------------------------------------------------------- /libraries/python/assistant-drive/README.md: -------------------------------------------------------------------------------- 1 | # Assistant Drive 2 | 3 | These are file storage capabilities. -------------------------------------------------------------------------------- /libraries/python/assistant-drive/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-drive/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/assistant-drive/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-drive/pytest.ini -------------------------------------------------------------------------------- /libraries/python/assistant-drive/usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-drive/usage.ipynb -------------------------------------------------------------------------------- /libraries/python/assistant-drive/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-drive/uv.lock -------------------------------------------------------------------------------- /libraries/python/assistant-extensions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-extensions/Makefile -------------------------------------------------------------------------------- /libraries/python/assistant-extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-extensions/README.md -------------------------------------------------------------------------------- /libraries/python/assistant-extensions/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-extensions/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/assistant-extensions/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/assistant-extensions/uv.lock -------------------------------------------------------------------------------- /libraries/python/chat-context-toolkit/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/chat-context-toolkit/.env.sample -------------------------------------------------------------------------------- /libraries/python/chat-context-toolkit/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/chat-context-toolkit/CLAUDE.md -------------------------------------------------------------------------------- /libraries/python/chat-context-toolkit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/chat-context-toolkit/Makefile -------------------------------------------------------------------------------- /libraries/python/chat-context-toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/chat-context-toolkit/README.md -------------------------------------------------------------------------------- /libraries/python/chat-context-toolkit/assets/vfs_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/chat-context-toolkit/assets/vfs_v1.png -------------------------------------------------------------------------------- /libraries/python/chat-context-toolkit/chat_context_toolkit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/chat-context-toolkit/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/chat-context-toolkit/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/chat-context-toolkit/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/chat-context-toolkit/uv.lock -------------------------------------------------------------------------------- /libraries/python/content-safety/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/content-safety/.vscode/settings.json -------------------------------------------------------------------------------- /libraries/python/content-safety/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/content-safety/Makefile -------------------------------------------------------------------------------- /libraries/python/content-safety/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/content-safety/README.md -------------------------------------------------------------------------------- /libraries/python/content-safety/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/content-safety/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/content-safety/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/content-safety/uv.lock -------------------------------------------------------------------------------- /libraries/python/events/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/events/.vscode/settings.json -------------------------------------------------------------------------------- /libraries/python/events/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/events/Makefile -------------------------------------------------------------------------------- /libraries/python/events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/events/README.md -------------------------------------------------------------------------------- /libraries/python/events/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/events/events/__init__.py -------------------------------------------------------------------------------- /libraries/python/events/events/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/events/events/events.py -------------------------------------------------------------------------------- /libraries/python/events/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/events/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/events/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/events/uv.lock -------------------------------------------------------------------------------- /libraries/python/guided-conversation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/guided-conversation/Makefile -------------------------------------------------------------------------------- /libraries/python/guided-conversation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/guided-conversation/README.md -------------------------------------------------------------------------------- /libraries/python/guided-conversation/guided_conversation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/guided-conversation/guided_conversation/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/guided-conversation/guided_conversation/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/guided-conversation/guided_conversation/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/guided-conversation/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/guided-conversation/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/guided-conversation/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/guided-conversation/uv.lock -------------------------------------------------------------------------------- /libraries/python/llm-client/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/llm-client/.vscode/settings.json -------------------------------------------------------------------------------- /libraries/python/llm-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/llm-client/Makefile -------------------------------------------------------------------------------- /libraries/python/llm-client/README.md: -------------------------------------------------------------------------------- 1 | # LLM client models 2 | -------------------------------------------------------------------------------- /libraries/python/llm-client/llm_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/llm-client/llm_client/__init__.py -------------------------------------------------------------------------------- /libraries/python/llm-client/llm_client/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/llm-client/llm_client/model.py -------------------------------------------------------------------------------- /libraries/python/llm-client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/llm-client/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/llm-client/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/llm-client/uv.lock -------------------------------------------------------------------------------- /libraries/python/mcp-extensions/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-extensions/.vscode/settings.json -------------------------------------------------------------------------------- /libraries/python/mcp-extensions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-extensions/Makefile -------------------------------------------------------------------------------- /libraries/python/mcp-extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-extensions/README.md -------------------------------------------------------------------------------- /libraries/python/mcp-extensions/mcp_extensions/llm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/mcp-extensions/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-extensions/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/mcp-extensions/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-extensions/uv.lock -------------------------------------------------------------------------------- /libraries/python/mcp-tunnel/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-tunnel/.vscode/settings.json -------------------------------------------------------------------------------- /libraries/python/mcp-tunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-tunnel/Makefile -------------------------------------------------------------------------------- /libraries/python/mcp-tunnel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-tunnel/README.md -------------------------------------------------------------------------------- /libraries/python/mcp-tunnel/mcp_tunnel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-tunnel/mcp_tunnel/__init__.py -------------------------------------------------------------------------------- /libraries/python/mcp-tunnel/mcp_tunnel/_devtunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-tunnel/mcp_tunnel/_devtunnel.py -------------------------------------------------------------------------------- /libraries/python/mcp-tunnel/mcp_tunnel/_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-tunnel/mcp_tunnel/_dir.py -------------------------------------------------------------------------------- /libraries/python/mcp-tunnel/mcp_tunnel/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-tunnel/mcp_tunnel/_main.py -------------------------------------------------------------------------------- /libraries/python/mcp-tunnel/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-tunnel/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/mcp-tunnel/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/mcp-tunnel/uv.lock -------------------------------------------------------------------------------- /libraries/python/openai-client/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/.vscode/settings.json -------------------------------------------------------------------------------- /libraries/python/openai-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/Makefile -------------------------------------------------------------------------------- /libraries/python/openai-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/README.md -------------------------------------------------------------------------------- /libraries/python/openai-client/openai_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/openai_client/client.py -------------------------------------------------------------------------------- /libraries/python/openai-client/openai_client/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/openai_client/config.py -------------------------------------------------------------------------------- /libraries/python/openai-client/openai_client/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/openai_client/errors.py -------------------------------------------------------------------------------- /libraries/python/openai-client/openai_client/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/openai_client/logging.py -------------------------------------------------------------------------------- /libraries/python/openai-client/openai_client/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/openai_client/tokens.py -------------------------------------------------------------------------------- /libraries/python/openai-client/openai_client/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/openai_client/tools.py -------------------------------------------------------------------------------- /libraries/python/openai-client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/openai-client/tests/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/tests/test_messages.py -------------------------------------------------------------------------------- /libraries/python/openai-client/tests/test_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/tests/test_tokens.py -------------------------------------------------------------------------------- /libraries/python/openai-client/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/openai-client/uv.lock -------------------------------------------------------------------------------- /libraries/python/semantic-workbench-api-model/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/semantic-workbench-api-model/Makefile -------------------------------------------------------------------------------- /libraries/python/semantic-workbench-api-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/semantic-workbench-api-model/README.md -------------------------------------------------------------------------------- /libraries/python/semantic-workbench-api-model/semantic_workbench_api_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/semantic-workbench-api-model/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/semantic-workbench-api-model/uv.lock -------------------------------------------------------------------------------- /libraries/python/semantic-workbench-assistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/semantic-workbench-assistant/Makefile -------------------------------------------------------------------------------- /libraries/python/semantic-workbench-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/semantic-workbench-assistant/README.md -------------------------------------------------------------------------------- /libraries/python/semantic-workbench-assistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/semantic-workbench-assistant/uv.lock -------------------------------------------------------------------------------- /libraries/python/skills/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/skills/.vscode/settings.json -------------------------------------------------------------------------------- /libraries/python/skills/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/skills/Makefile -------------------------------------------------------------------------------- /libraries/python/skills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/skills/README.md -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/skills/skill-library/Makefile -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/skills/skill-library/README.md -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/skills/skill-library/pyproject.toml -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/agility_story/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_candidates/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_claims/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_email_headers/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_incident/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_paper/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_proposition/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_prose/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_prose_json/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_spiritual_text/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_tech_impact/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_threat_report/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/analyze_threat_report_trends/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/check_agreement/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/clean_text/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/compare_and_contrast/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/create_aphorisms/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/create_better_frame/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/create_command/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/create_logo/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/create_network_threat_landscape/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/create_newsletter_entry/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/create_npc/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/create_report_finding/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/create_security_update/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/create_video_chapters/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/explain_code/user.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/explain_docs/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/extract_algorithm_update_recommendations/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/extract_article_wisdom/dmiessler/extract_wisdom-1.0.0/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/extract_article_wisdom/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/extract_poc/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/extract_product_features/dmiessler/extract_wisdom-1.0.0/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/extract_recommendations/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/extract_references/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/extract_videoid/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/extract_wisdom/dmiessler/extract_wisdom-1.0.0/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/improve_academic_writing/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/improve_report_finding/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/improve_writing/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/loaded: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/rate_content/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/rate_value/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/summarize/dmiessler/summarize/user.md: -------------------------------------------------------------------------------- 1 | CONTENT: 2 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/summarize/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/summarize_micro/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/summarize_newsletter/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/summarize_paper/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/summarize_pull-requests/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/transcribe_minutes/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/write_nuclei_template_rule/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/fabric/patterns/write_semgrep_rule/user.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/skills/guided_conversation/conversation_guides/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/skill_library/tests/tst_skill/routines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/python/skills/skill-library/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/libraries/python/skills/skill-library/uv.lock -------------------------------------------------------------------------------- /mcp-servers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/Makefile -------------------------------------------------------------------------------- /mcp-servers/ai-assist-content/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/ai-assist-content/.vscode/settings.json -------------------------------------------------------------------------------- /mcp-servers/ai-assist-content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/ai-assist-content/README.md -------------------------------------------------------------------------------- /mcp-servers/ai-assist-content/mcp-llms-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/ai-assist-content/mcp-llms-full.txt -------------------------------------------------------------------------------- /mcp-servers/ai-assist-content/mcp-metadata-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/ai-assist-content/mcp-metadata-tips.md -------------------------------------------------------------------------------- /mcp-servers/ai-assist-content/mcp-python-sdk-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/ai-assist-content/mcp-python-sdk-README.md -------------------------------------------------------------------------------- /mcp-servers/ai-assist-content/pydanticai-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/ai-assist-content/pydanticai-tutorial.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bing-search/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bing-search/.env.example -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bing-search/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bing-search/.gitignore -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bing-search/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bing-search/.vscode/launch.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bing-search/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bing-search/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bing-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bing-search/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bing-search/mcp_server_bing_search/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bing-search/mcp_server_bing_search/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bing-search/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bing-search/pyproject.toml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bing-search/tests/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bing-search/tests/test_tools.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bing-search/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bing-search/uv.lock -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bundle/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bundle/.vscode/launch.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bundle/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bundle/.vscode/settings.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bundle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bundle/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bundle/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bundle/mcp_server_bundle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bundle/mcp_server_bundle/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bundle/mcp_server_bundle/main.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bundle/pyinstaller.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bundle/pyinstaller.spec -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bundle/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bundle/pyproject.toml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-bundle/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-bundle/uv.lock -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem-edit/.env.example -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem-edit/.gitignore -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem-edit/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem-edit/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/mcp_server_filesystem_edit/app_handling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/mcp_server_filesystem_edit/evals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/mcp_server_filesystem_edit/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/mcp_server_filesystem_edit/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/mcp_server_filesystem_edit/tools/edit_adapters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem-edit/pyproject.toml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem-edit/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem-edit/uv.lock -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem/.env.example: -------------------------------------------------------------------------------- 1 | # Optional for the service 2 | #LOG_LEVEL=DEBUG 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem/.gitignore -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem/.vscode/launch.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem/.vscode/settings.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem/pyproject.toml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-filesystem/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-filesystem/uv.lock -------------------------------------------------------------------------------- /mcp-servers/mcp-server-fusion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-fusion/.gitignore -------------------------------------------------------------------------------- /mcp-servers/mcp-server-fusion/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-fusion/.vscode/launch.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-fusion/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-fusion/.vscode/settings.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-fusion/AddInIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-fusion/AddInIcon.svg -------------------------------------------------------------------------------- /mcp-servers/mcp-server-fusion/FusionMCPServerAddIn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-fusion/FusionMCPServerAddIn.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-fusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-fusion/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-fusion/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-fusion/config.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-fusion/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-fusion/requirements.txt -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/.env.example -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/.gitignore -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/.vscode/launch.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/.vscode/settings.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/mcp_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/mcp_server/__init__.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/mcp_server/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/mcp_server/config.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/mcp_server/giphy_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/mcp_server/giphy_search.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/mcp_server/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/mcp_server/sampling.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/mcp_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/mcp_server/server.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/mcp_server/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/mcp_server/start.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/mcp_server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/mcp_server/utils.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/pyproject.toml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-giphy/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-giphy/uv.lock -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-user-bio/.env.example: -------------------------------------------------------------------------------- 1 | # Optional for the service 2 | #LOG_LEVEL=DEBUG 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-user-bio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-user-bio/.gitignore -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-user-bio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-user-bio/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-user-bio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-user-bio/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-user-bio/mcp_server_memory_user_bio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-user-bio/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-user-bio/pyproject.toml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-user-bio/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-user-bio/uv.lock -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-whiteboard/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-whiteboard/.env.example -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-whiteboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-whiteboard/.gitignore -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-whiteboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-whiteboard/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-whiteboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-whiteboard/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-whiteboard/mcp_server_memory_whiteboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-whiteboard/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-whiteboard/pyproject.toml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-memory-whiteboard/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-memory-whiteboard/uv.lock -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/.env.example -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/.vscode/launch.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/.vscode/settings.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/build.sh -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/data/word/test_cases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/data/word/test_cases.yaml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/mcp_server/__init__.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/app_interaction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/mcp_server/config.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/mcp_server/constants.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/evals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/mcp_server/helpers.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/markdown_edit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/mcp_server/server.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/mcp_server/start.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/mcp_server/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/mcp_server/types.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/pyproject.toml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/tests/test_word_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/tests/test_word_editor.py -------------------------------------------------------------------------------- /mcp-servers/mcp-server-office/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-office/uv.lock -------------------------------------------------------------------------------- /mcp-servers/mcp-server-open-deep-research-clone/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-open-deep-research-clone/uv.lock -------------------------------------------------------------------------------- /mcp-servers/mcp-server-open-deep-research/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-open-deep-research/.env.example -------------------------------------------------------------------------------- /mcp-servers/mcp-server-open-deep-research/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-open-deep-research/.gitignore -------------------------------------------------------------------------------- /mcp-servers/mcp-server-open-deep-research/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-open-deep-research/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-open-deep-research/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-open-deep-research/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-open-deep-research/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-open-deep-research/uv.lock -------------------------------------------------------------------------------- /mcp-servers/mcp-server-template/.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-template/.taplo.toml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-template/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-template/.vscode/settings.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-template/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-template/copier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-template/copier.yml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/.eslintrc.cjs -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/.gitignore: -------------------------------------------------------------------------------- 1 | *.vsix 2 | .vscode-test/** 3 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/.npmrc: -------------------------------------------------------------------------------- 1 | enable-pre-post-scripts = true 2 | node-linker=hoisted 3 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/.vscode-test.mjs -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/.vscode/extensions.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/.vscode/launch.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/.vscode/settings.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/.vscode/tasks.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/.vscodeignore -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/ASSISTANT_BOOTSTRAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/ASSISTANT_BOOTSTRAP.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/LICENSE -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/eslint.config.mjs -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/images/icon.png -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/out/extension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/out/extension.d.ts -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/out/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/out/extension.js -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/out/test/extension.test.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/out/tools/code_checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/out/tools/code_checker.js -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/out/tools/debug_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/out/tools/debug_tools.js -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/out/tools/focus_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/out/tools/focus_editor.js -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/out/utils/port.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/out/utils/port.d.ts -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/out/utils/port.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/out/utils/port.js -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/package.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/pnpm-lock.yaml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/prettier.config.cjs -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/src/extension.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/src/extension.d.ts -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/src/extension.ts -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/src/test/extension.test.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/src/tools/code_checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/src/tools/code_checker.ts -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/src/tools/debug_tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/src/tools/debug_tools.ts -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/src/tools/focus_editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/src/tools/focus_editor.ts -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/src/utils/port.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/src/utils/port.d.ts -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/src/utils/port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/src/utils/port.ts -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/tsconfig.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /mcp-servers/mcp-server-vscode/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-vscode/webpack.config.js -------------------------------------------------------------------------------- /mcp-servers/mcp-server-web-research/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-web-research/.env.example -------------------------------------------------------------------------------- /mcp-servers/mcp-server-web-research/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-web-research/.gitignore -------------------------------------------------------------------------------- /mcp-servers/mcp-server-web-research/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-web-research/.vscode/launch.json -------------------------------------------------------------------------------- /mcp-servers/mcp-server-web-research/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-web-research/Makefile -------------------------------------------------------------------------------- /mcp-servers/mcp-server-web-research/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-web-research/README.md -------------------------------------------------------------------------------- /mcp-servers/mcp-server-web-research/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-web-research/pyproject.toml -------------------------------------------------------------------------------- /mcp-servers/mcp-server-web-research/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/mcp-servers/mcp-server-web-research/uv.lock -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/ruff.toml -------------------------------------------------------------------------------- /semantic-workbench.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/semantic-workbench.code-workspace -------------------------------------------------------------------------------- /tools/build_ai_context_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/build_ai_context_files.py -------------------------------------------------------------------------------- /tools/collect_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/collect_files.py -------------------------------------------------------------------------------- /tools/docker/Dockerfile.assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/docker/Dockerfile.assistant -------------------------------------------------------------------------------- /tools/docker/Dockerfile.mcp-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/docker/Dockerfile.mcp-server -------------------------------------------------------------------------------- /tools/docker/azure_website_sshd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/docker/azure_website_sshd.conf -------------------------------------------------------------------------------- /tools/docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /tools/makefiles/docker-assistant.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/makefiles/docker-assistant.mk -------------------------------------------------------------------------------- /tools/makefiles/docker-mcp-server.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/makefiles/docker-mcp-server.mk -------------------------------------------------------------------------------- /tools/makefiles/docker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/makefiles/docker.mk -------------------------------------------------------------------------------- /tools/makefiles/python.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/makefiles/python.mk -------------------------------------------------------------------------------- /tools/makefiles/recursive.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/makefiles/recursive.mk -------------------------------------------------------------------------------- /tools/makefiles/shell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/makefiles/shell.mk -------------------------------------------------------------------------------- /tools/reset-service-data.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/reset-service-data.ps1 -------------------------------------------------------------------------------- /tools/reset-service-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/reset-service-data.sh -------------------------------------------------------------------------------- /tools/run-app.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-app.ps1 -------------------------------------------------------------------------------- /tools/run-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-app.sh -------------------------------------------------------------------------------- /tools/run-canonical-agent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-canonical-agent.ps1 -------------------------------------------------------------------------------- /tools/run-canonical-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-canonical-agent.sh -------------------------------------------------------------------------------- /tools/run-dotnet-examples-with-aspire.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-dotnet-examples-with-aspire.sh -------------------------------------------------------------------------------- /tools/run-python-example1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-python-example1.sh -------------------------------------------------------------------------------- /tools/run-python-example2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-python-example2.ps1 -------------------------------------------------------------------------------- /tools/run-python-example2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-python-example2.sh -------------------------------------------------------------------------------- /tools/run-service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-service.ps1 -------------------------------------------------------------------------------- /tools/run-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-service.sh -------------------------------------------------------------------------------- /tools/run-workbench-chatbot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-workbench-chatbot.ps1 -------------------------------------------------------------------------------- /tools/run-workbench-chatbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/tools/run-workbench-chatbot.sh -------------------------------------------------------------------------------- /workbench-app/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /workbench-app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/.env.example -------------------------------------------------------------------------------- /workbench-app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/.eslintrc.cjs -------------------------------------------------------------------------------- /workbench-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/.gitignore -------------------------------------------------------------------------------- /workbench-app/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/.vscode/launch.json -------------------------------------------------------------------------------- /workbench-app/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/.vscode/settings.json -------------------------------------------------------------------------------- /workbench-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/Dockerfile -------------------------------------------------------------------------------- /workbench-app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/Makefile -------------------------------------------------------------------------------- /workbench-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/README.md -------------------------------------------------------------------------------- /workbench-app/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/docker-entrypoint.sh -------------------------------------------------------------------------------- /workbench-app/docs/APP_DEV_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/docs/APP_DEV_GUIDE.md -------------------------------------------------------------------------------- /workbench-app/docs/MESSAGE_METADATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/docs/MESSAGE_METADATA.md -------------------------------------------------------------------------------- /workbench-app/docs/MESSAGE_TYPES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/docs/MESSAGE_TYPES.md -------------------------------------------------------------------------------- /workbench-app/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/docs/README.md -------------------------------------------------------------------------------- /workbench-app/docs/STATE_INSPECTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/docs/STATE_INSPECTORS.md -------------------------------------------------------------------------------- /workbench-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/index.html -------------------------------------------------------------------------------- /workbench-app/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/nginx.conf -------------------------------------------------------------------------------- /workbench-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/package.json -------------------------------------------------------------------------------- /workbench-app/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/pnpm-lock.yaml -------------------------------------------------------------------------------- /workbench-app/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/prettier.config.cjs -------------------------------------------------------------------------------- /workbench-app/public/assets/background-1-upscaled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/public/assets/background-1-upscaled.jpg -------------------------------------------------------------------------------- /workbench-app/public/assets/background-1-upscaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/public/assets/background-1-upscaled.png -------------------------------------------------------------------------------- /workbench-app/public/assets/background-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/public/assets/background-1.jpg -------------------------------------------------------------------------------- /workbench-app/public/assets/background-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/public/assets/background-1.png -------------------------------------------------------------------------------- /workbench-app/public/assets/background-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/public/assets/background-2.jpg -------------------------------------------------------------------------------- /workbench-app/public/assets/background-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/public/assets/background-2.png -------------------------------------------------------------------------------- /workbench-app/public/assets/experimental-feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/public/assets/experimental-feature.jpg -------------------------------------------------------------------------------- /workbench-app/public/assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/public/assets/favicon.svg -------------------------------------------------------------------------------- /workbench-app/public/assets/workflow-designer-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/public/assets/workflow-designer-1.jpg -------------------------------------------------------------------------------- /workbench-app/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/run.sh -------------------------------------------------------------------------------- /workbench-app/src/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/Constants.ts -------------------------------------------------------------------------------- /workbench-app/src/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/Root.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/AppFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/AppFooter.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/AppHeader.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/AppMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/AppMenu.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/AppView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/AppView.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/CodeLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/CodeLabel.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/CommandButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/CommandButton.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/ConfirmLeave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/ConfirmLeave.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/ContentExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/ContentExport.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/ContentImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/ContentImport.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/CopyButton.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/DialogControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/DialogControl.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/DynamicIframe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/DynamicIframe.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/ErrorMessageBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/ErrorMessageBar.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/ExperimentalNotice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/ExperimentalNotice.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/Loading.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/MenuItemControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/MenuItemControl.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/MiniControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/MiniControl.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/MyItemsManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/MyItemsManager.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/OverflowMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/OverflowMenu.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/PresenceMotionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/PresenceMotionList.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/ProfileSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/ProfileSettings.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/App/TooltipWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/App/TooltipWrapper.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/Conversations/FileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/Conversations/FileItem.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/Conversations/FileList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/Conversations/FileList.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/Conversations/MyShares.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/Conversations/MyShares.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/FrontDoor/Chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/FrontDoor/Chat/Chat.tsx -------------------------------------------------------------------------------- /workbench-app/src/components/FrontDoor/MainContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/components/FrontDoor/MainContent.tsx -------------------------------------------------------------------------------- /workbench-app/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/global.d.ts -------------------------------------------------------------------------------- /workbench-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/index.css -------------------------------------------------------------------------------- /workbench-app/src/libs/AppStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/AppStorage.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/AuthHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/AuthHelper.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/EventSubscriptionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/EventSubscriptionManager.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/Theme.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/Utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/Utility.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useAssistantCapabilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useAssistantCapabilities.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useChatCanvasController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useChatCanvasController.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useConversationEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useConversationEvents.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useConversationUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useConversationUtility.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useCreateConversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useCreateConversation.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useDebugComponentLifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useDebugComponentLifecycle.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useDragAndDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useDragAndDrop.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useEnvironment.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useExportUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useExportUtility.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useHistoryUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useHistoryUtility.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useKeySequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useKeySequence.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useMediaQuery.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useMicrosoftGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useMicrosoftGraph.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useNotify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useNotify.tsx -------------------------------------------------------------------------------- /workbench-app/src/libs/useParticipantUtility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useParticipantUtility.tsx -------------------------------------------------------------------------------- /workbench-app/src/libs/useSiteUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useSiteUtility.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useWorkbenchEventSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useWorkbenchEventSource.ts -------------------------------------------------------------------------------- /workbench-app/src/libs/useWorkbenchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/libs/useWorkbenchService.ts -------------------------------------------------------------------------------- /workbench-app/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/main.tsx -------------------------------------------------------------------------------- /workbench-app/src/models/Assistant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/Assistant.ts -------------------------------------------------------------------------------- /workbench-app/src/models/AssistantCapability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/AssistantCapability.ts -------------------------------------------------------------------------------- /workbench-app/src/models/AssistantServiceInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/AssistantServiceInfo.ts -------------------------------------------------------------------------------- /workbench-app/src/models/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/Config.ts -------------------------------------------------------------------------------- /workbench-app/src/models/Conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/Conversation.ts -------------------------------------------------------------------------------- /workbench-app/src/models/ConversationFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/ConversationFile.ts -------------------------------------------------------------------------------- /workbench-app/src/models/ConversationMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/ConversationMessage.ts -------------------------------------------------------------------------------- /workbench-app/src/models/ConversationMessageDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/ConversationMessageDebug.ts -------------------------------------------------------------------------------- /workbench-app/src/models/ConversationParticipant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/ConversationParticipant.ts -------------------------------------------------------------------------------- /workbench-app/src/models/ConversationShare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/ConversationShare.ts -------------------------------------------------------------------------------- /workbench-app/src/models/ConversationShareRedemption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/ConversationShareRedemption.ts -------------------------------------------------------------------------------- /workbench-app/src/models/ConversationState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/ConversationState.ts -------------------------------------------------------------------------------- /workbench-app/src/models/ServiceEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/ServiceEnvironment.ts -------------------------------------------------------------------------------- /workbench-app/src/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/models/User.ts -------------------------------------------------------------------------------- /workbench-app/src/redux/app/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/redux/app/hooks.ts -------------------------------------------------------------------------------- /workbench-app/src/redux/app/rtkQueryErrorLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/redux/app/rtkQueryErrorLogger.ts -------------------------------------------------------------------------------- /workbench-app/src/redux/app/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/redux/app/store.ts -------------------------------------------------------------------------------- /workbench-app/src/redux/features/app/AppState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/redux/features/app/AppState.ts -------------------------------------------------------------------------------- /workbench-app/src/redux/features/app/appSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/redux/features/app/appSlice.ts -------------------------------------------------------------------------------- /workbench-app/src/routes/AcceptTerms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/routes/AcceptTerms.tsx -------------------------------------------------------------------------------- /workbench-app/src/routes/AssistantEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/routes/AssistantEditor.tsx -------------------------------------------------------------------------------- /workbench-app/src/routes/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/routes/Dashboard.tsx -------------------------------------------------------------------------------- /workbench-app/src/routes/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/routes/ErrorPage.tsx -------------------------------------------------------------------------------- /workbench-app/src/routes/FrontDoor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/routes/FrontDoor.tsx -------------------------------------------------------------------------------- /workbench-app/src/routes/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/routes/Login.tsx -------------------------------------------------------------------------------- /workbench-app/src/routes/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/routes/Settings.tsx -------------------------------------------------------------------------------- /workbench-app/src/routes/ShareRedeem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/routes/ShareRedeem.tsx -------------------------------------------------------------------------------- /workbench-app/src/routes/Shares.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/routes/Shares.tsx -------------------------------------------------------------------------------- /workbench-app/src/services/workbench/assistant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/services/workbench/assistant.ts -------------------------------------------------------------------------------- /workbench-app/src/services/workbench/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/services/workbench/conversation.ts -------------------------------------------------------------------------------- /workbench-app/src/services/workbench/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/services/workbench/file.ts -------------------------------------------------------------------------------- /workbench-app/src/services/workbench/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/services/workbench/index.ts -------------------------------------------------------------------------------- /workbench-app/src/services/workbench/participant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/services/workbench/participant.ts -------------------------------------------------------------------------------- /workbench-app/src/services/workbench/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/services/workbench/share.ts -------------------------------------------------------------------------------- /workbench-app/src/services/workbench/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/services/workbench/state.ts -------------------------------------------------------------------------------- /workbench-app/src/services/workbench/workbench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/src/services/workbench/workbench.ts -------------------------------------------------------------------------------- /workbench-app/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /workbench-app/tools/filtered-ts-prune.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/tools/filtered-ts-prune.cjs -------------------------------------------------------------------------------- /workbench-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/tsconfig.json -------------------------------------------------------------------------------- /workbench-app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-app/vite.config.ts -------------------------------------------------------------------------------- /workbench-service/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/.env.example -------------------------------------------------------------------------------- /workbench-service/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/.vscode/extensions.json -------------------------------------------------------------------------------- /workbench-service/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/.vscode/launch.json -------------------------------------------------------------------------------- /workbench-service/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/.vscode/settings.json -------------------------------------------------------------------------------- /workbench-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/Dockerfile -------------------------------------------------------------------------------- /workbench-service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/Makefile -------------------------------------------------------------------------------- /workbench-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/README.md -------------------------------------------------------------------------------- /workbench-service/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/alembic.ini -------------------------------------------------------------------------------- /workbench-service/devdb/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/devdb/docker-compose.yaml -------------------------------------------------------------------------------- /workbench-service/devdb/postgresql-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/devdb/postgresql-init.sh -------------------------------------------------------------------------------- /workbench-service/migrations/README: -------------------------------------------------------------------------------- 1 | alembic migrations for workbench postgresql db 2 | -------------------------------------------------------------------------------- /workbench-service/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/migrations/env.py -------------------------------------------------------------------------------- /workbench-service/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/migrations/script.py.mako -------------------------------------------------------------------------------- /workbench-service/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/pyproject.toml -------------------------------------------------------------------------------- /workbench-service/semantic_workbench_service/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/semantic_workbench_service/api.py -------------------------------------------------------------------------------- /workbench-service/semantic_workbench_service/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/semantic_workbench_service/auth.py -------------------------------------------------------------------------------- /workbench-service/semantic_workbench_service/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/semantic_workbench_service/config.py -------------------------------------------------------------------------------- /workbench-service/semantic_workbench_service/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/semantic_workbench_service/db.py -------------------------------------------------------------------------------- /workbench-service/semantic_workbench_service/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/semantic_workbench_service/event.py -------------------------------------------------------------------------------- /workbench-service/semantic_workbench_service/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/semantic_workbench_service/files.py -------------------------------------------------------------------------------- /workbench-service/semantic_workbench_service/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/semantic_workbench_service/query.py -------------------------------------------------------------------------------- /workbench-service/semantic_workbench_service/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/semantic_workbench_service/service.py -------------------------------------------------------------------------------- /workbench-service/semantic_workbench_service/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/semantic_workbench_service/start.py -------------------------------------------------------------------------------- /workbench-service/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench-service/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/tests/conftest.py -------------------------------------------------------------------------------- /workbench-service/tests/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/tests/docker-compose.yaml -------------------------------------------------------------------------------- /workbench-service/tests/test_assistant_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/tests/test_assistant_api_key.py -------------------------------------------------------------------------------- /workbench-service/tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/tests/test_files.py -------------------------------------------------------------------------------- /workbench-service/tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/tests/test_integration.py -------------------------------------------------------------------------------- /workbench-service/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/tests/test_middleware.py -------------------------------------------------------------------------------- /workbench-service/tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/tests/test_migrations.py -------------------------------------------------------------------------------- /workbench-service/tests/test_workbench_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/tests/test_workbench_service.py -------------------------------------------------------------------------------- /workbench-service/tests/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/tests/types.py -------------------------------------------------------------------------------- /workbench-service/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/semanticworkbench/HEAD/workbench-service/uv.lock --------------------------------------------------------------------------------