├── .gitignore ├── .vite └── deps │ ├── _metadata.json │ └── package.json ├── .vscodeignore ├── LICENSE ├── README.md ├── backend ├── .dockerignore ├── .env.example ├── Dockerfile ├── data │ └── .gitkeep ├── env.template ├── main.py ├── models.py ├── requirements.txt ├── restart_server.py ├── services │ ├── __init__.py │ ├── agent_core │ │ └── unified_samurai_agent.py │ ├── analysis │ │ ├── code_parser.py │ │ └── memory_categorization.py │ ├── context │ │ ├── code_context_storage.py │ │ ├── context_service.py │ │ └── vector_context_service.py │ ├── core │ │ ├── embedding_service.py │ │ ├── file_service.py │ │ ├── project_settings_service.py │ │ └── utils.py │ ├── llm_providers │ │ ├── claude_service.py │ │ ├── gemini_service.py │ │ ├── llm_abstract_service.py │ │ ├── llm_provider_service.py │ │ └── openai_service.py │ ├── memory │ │ ├── consolidated_memory.py │ │ ├── intelligent_memory_consolidation.py │ │ ├── intelligent_memory_manager.py │ │ └── project_detail_service.py │ ├── response │ │ ├── response_generator.py │ │ └── response_service.py │ └── tools │ │ ├── agent_tools.py │ │ └── task_service.py ├── tests │ ├── debug_elements.py │ ├── test_absolute_path_solution.py │ ├── test_agent_tools_fix.py │ ├── test_agent_tools_prompt_fix.py │ ├── test_agent_tools_skip_step1.py │ ├── test_api_key_warning.py │ ├── test_code_context_extraction.py │ ├── test_code_context_extraction_error.py │ ├── test_code_context_integration.py │ ├── test_code_context_task_creation.py │ ├── test_code_context_task_creation_integration.py │ ├── test_code_parser_fix.py │ ├── test_codebase_connection_path_resolution.py │ ├── test_codebase_path_fix.py │ ├── test_combined_content.py │ ├── test_comprehensive_file_exclusion.py │ ├── test_create_tasks_button_intent.py │ ├── test_curly_brace_fix.py │ ├── test_direct_action_strict_rules.py │ ├── test_e2e_code_context.py │ ├── test_e2e_markdown_response.py │ ├── test_efficient_code_context.py │ ├── test_exact_flow.py │ ├── test_external_paths.py │ ├── test_feature_exploration_conversation.py │ ├── test_intent_analysis_with_previous_intent.py │ ├── test_intent_classification.py │ ├── test_intent_classification_real.py │ ├── test_intent_tracking_integration.py │ ├── test_intent_type_streaming.py │ ├── test_interactive_questions_integration.py │ ├── test_isolate_error.py │ ├── test_json_parsing_error.py │ ├── test_kaizen_integration.py │ ├── test_llm_api_endpoints.py │ ├── test_llm_cost_integration.py │ ├── test_llm_cost_tracking.py │ ├── test_llm_provider_integration.py │ ├── test_log_scenario_fix.py │ ├── test_markdown_extraction.py │ ├── test_method_matching_fix.py │ ├── test_method_matching_integration.py │ ├── test_mode_selection.py │ ├── test_multiple_data_models.py │ ├── test_parse_ai_json_response_fix.py │ ├── test_path_validation_fix.py │ ├── test_path_validation_security.py │ ├── test_project_codebase_isolation.py │ ├── test_project_context_id_fix.py │ ├── test_project_data_model.py │ ├── test_project_detail_async.py │ ├── test_project_detail_service_improved.py │ ├── test_project_detail_service_integration.py │ ├── test_question_detector.py │ ├── test_real_llm_error.py │ ├── test_real_response_parsing.py │ ├── test_real_scenario_fix.py │ ├── test_security_validation.py │ ├── test_session_end_background.py │ ├── test_simplified_path_validation.py │ ├── test_skip_step1_integration.py │ ├── test_spec_clarification_batch_optimization.py │ ├── test_spec_clarification_improvements.py │ ├── test_spec_clarification_rephrasing.py │ ├── test_spec_clarification_rephrasing_demo.py │ ├── test_spec_clarification_rephrasing_fix.py │ ├── test_spec_clarification_rephrasing_integration.py │ ├── test_step2_parsing_fix.py │ ├── test_step_by_step_debug.py │ ├── test_task_creation_markdown_integration.py │ ├── test_task_creation_parent_assignment.py │ ├── test_task_description_length.py │ ├── test_task_json_to_markdown.py │ ├── test_tuple_get_error.py │ ├── test_tuple_get_error_fix.py │ ├── test_two_step_code_context.py │ ├── test_two_step_real_scenario.py │ ├── test_update_task_tool.py │ ├── test_user_intent_tracking.py │ ├── test_virtual_env_exclusion.py │ └── test_virtual_env_exclusion_integration.py └── utils │ └── question_detector.py ├── docker-compose.yml ├── frontend ├── .gitignore ├── .vite │ └── deps │ │ ├── _metadata.json │ │ ├── chunk-6IFP4TAF.js │ │ ├── chunk-6IFP4TAF.js.map │ │ ├── chunk-DDNM7ENY.js │ │ ├── chunk-DDNM7ENY.js.map │ │ ├── package.json │ │ ├── react-dom.js │ │ ├── react-dom.js.map │ │ ├── react-dom_client.js │ │ ├── react-dom_client.js.map │ │ ├── react-markdown.js │ │ ├── react-markdown.js.map │ │ ├── react.js │ │ ├── react.js.map │ │ ├── react_jsx-dev-runtime.js │ │ └── react_jsx-dev-runtime.js.map ├── index.html ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── compact-layout.css │ ├── components │ │ ├── BasicScrollTest.tsx │ │ ├── Chat.tsx │ │ ├── CodebaseIntegrationSection.tsx │ │ ├── CompactMemoryItem.tsx │ │ ├── CompactTaskItem.tsx │ │ ├── ConfirmModal.tsx │ │ ├── CreateTasksButton.tsx │ │ ├── FullScreenModal.tsx │ │ ├── InteractiveQuestionButtons.tsx │ │ ├── LLMSelectionDropdown.tsx │ │ ├── MemoryDetailModal.tsx │ │ ├── MemoryPanel.tsx │ │ ├── ModeSelectionDropdown.tsx │ │ ├── MonthlyCostDisplay.tsx │ │ ├── ProactiveSuggestion.tsx │ │ ├── ProgressDisplay.css │ │ ├── ProgressDisplay.tsx │ │ ├── ProjectSelector.tsx │ │ ├── ScrollTest.tsx │ │ ├── SimpleScrollTest.tsx │ │ ├── TaskBoard.css │ │ ├── TaskBoard.tsx │ │ ├── TaskDetailsView.tsx │ │ ├── TaskListView.tsx │ │ ├── TaskPanel.tsx │ │ ├── ViewControls.tsx │ │ ├── VirtualizedList.tsx │ │ └── __tests__ │ │ │ ├── CodebaseIntegrationSection.test.tsx │ │ │ ├── CompactTaskItem.test.tsx │ │ │ ├── InteractiveQuestionButtons.test.tsx │ │ │ ├── ModeSelectionDropdown.test.tsx │ │ │ ├── TaskBoard.test.tsx │ │ │ ├── TaskBoardAutoScroll.test.tsx │ │ │ ├── TaskListView.test.tsx │ │ │ └── scroll-restoration-manual.test.tsx │ ├── hooks │ │ ├── __tests__ │ │ │ ├── useAutoScroll.test.ts │ │ │ ├── useTaskExpansionPersistence.test.ts │ │ │ └── useTaskScrollPersistence.test.ts │ │ ├── useAutoScroll.ts │ │ ├── useConversationPersistence.ts │ │ ├── useProjects.ts │ │ ├── useTaskExpansionPersistence.ts │ │ └── useTaskScrollPersistence.ts │ ├── index.css │ ├── main.tsx │ ├── services │ │ └── api.ts │ ├── test-setup.ts │ ├── tests │ │ ├── TaskDetailsView.test.tsx │ │ ├── TaskListView.test.tsx │ │ ├── auto-scroll-integration.test.tsx │ │ ├── auto-scroll.test.tsx │ │ ├── chatbox-markdown-rendering.test.tsx │ │ ├── create-tasks-button-persistence.test.tsx │ │ ├── create-tasks-button-visual.test.tsx │ │ ├── create-tasks-button.test.tsx │ │ ├── layout-redesign.test.tsx │ │ ├── memory-content-test.test.tsx │ │ ├── proactive-suggestion.test.tsx │ │ ├── progress-display.test.tsx │ │ ├── progress-streaming.test.tsx │ │ ├── project-detail-async.test.tsx │ │ ├── scroll-position-restoration-e2e.test.tsx │ │ ├── simple-ui-test.test.tsx │ │ ├── streaming-integration.test.tsx │ │ ├── task-ascii-tree.test.tsx │ │ ├── task-board-integration.test.tsx │ │ ├── task-completion-test.test.tsx │ │ ├── task-description-width.test.tsx │ │ ├── task-hierarchy-top-level.test.tsx │ │ ├── task-hierarchy.test.tsx │ │ ├── task-scroll-e2e.test.tsx │ │ ├── task-scroll-persistence.test.tsx │ │ ├── task-sorting-integration.test.tsx │ │ ├── task-sorting.test.tsx │ │ ├── task-warnings.test.tsx │ │ ├── ui-critical-fixes.test.tsx │ │ ├── unified-click-behavior.test.tsx │ │ └── warnings-integration.test.tsx │ ├── types │ │ └── index.ts │ └── utils │ │ ├── __tests__ │ │ └── taskExpansionUtils.test.ts │ │ └── taskExpansionUtils.ts ├── test-auto-scroll.html ├── test-progress-manual.html ├── test-warnings.html ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── integration-tests ├── README.md ├── debug-utils.js ├── package-lock.json ├── package.json ├── quick-fixes.js ├── run-tests.js ├── test-codebase-connection.js ├── test-create-tasks-button.js ├── test-delete-operations.js ├── test-frontend-connection.js ├── test-frontend-hierarchy-e2e.js ├── test-frontend-integration.js ├── test-hierarchy-flow.js ├── test-integration.js ├── test-project-detail-async.js ├── test-project-detail.js ├── test-unified-agent-api.js ├── test-unified-agent-integration.js ├── test_debug_remaining_issues.py └── test_e2e_complete_workflow.py ├── samurai-agent-demo.gif ├── samurai-agent-screenshot-task.png ├── samurai-agent-screenshot.png ├── samurai-agent.code-workspace ├── samurai_agent_beta_v2.gif └── vscode └── samurai-agent ├── .vscode-test.mjs ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── README.md ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── samurai-agent-0.0.1.vsix ├── src ├── extension.ts └── test │ └── extension.test.ts ├── tsconfig.json ├── vsc-extension-quickstart.md └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.vite/deps/_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/.vite/deps/_metadata.json -------------------------------------------------------------------------------- /.vite/deps/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/README.md -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/.dockerignore -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/data/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/data/.gitkeep -------------------------------------------------------------------------------- /backend/env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/env.template -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/models.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/restart_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/restart_server.py -------------------------------------------------------------------------------- /backend/services/__init__.py: -------------------------------------------------------------------------------- 1 | # Services package for Samurai Agent -------------------------------------------------------------------------------- /backend/services/agent_core/unified_samurai_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/agent_core/unified_samurai_agent.py -------------------------------------------------------------------------------- /backend/services/analysis/code_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/analysis/code_parser.py -------------------------------------------------------------------------------- /backend/services/analysis/memory_categorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/analysis/memory_categorization.py -------------------------------------------------------------------------------- /backend/services/context/code_context_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/context/code_context_storage.py -------------------------------------------------------------------------------- /backend/services/context/context_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/context/context_service.py -------------------------------------------------------------------------------- /backend/services/context/vector_context_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/context/vector_context_service.py -------------------------------------------------------------------------------- /backend/services/core/embedding_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/core/embedding_service.py -------------------------------------------------------------------------------- /backend/services/core/file_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/core/file_service.py -------------------------------------------------------------------------------- /backend/services/core/project_settings_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/core/project_settings_service.py -------------------------------------------------------------------------------- /backend/services/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/core/utils.py -------------------------------------------------------------------------------- /backend/services/llm_providers/claude_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/llm_providers/claude_service.py -------------------------------------------------------------------------------- /backend/services/llm_providers/gemini_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/llm_providers/gemini_service.py -------------------------------------------------------------------------------- /backend/services/llm_providers/llm_abstract_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/llm_providers/llm_abstract_service.py -------------------------------------------------------------------------------- /backend/services/llm_providers/llm_provider_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/llm_providers/llm_provider_service.py -------------------------------------------------------------------------------- /backend/services/llm_providers/openai_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/llm_providers/openai_service.py -------------------------------------------------------------------------------- /backend/services/memory/consolidated_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/memory/consolidated_memory.py -------------------------------------------------------------------------------- /backend/services/memory/intelligent_memory_consolidation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/memory/intelligent_memory_consolidation.py -------------------------------------------------------------------------------- /backend/services/memory/intelligent_memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/memory/intelligent_memory_manager.py -------------------------------------------------------------------------------- /backend/services/memory/project_detail_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/memory/project_detail_service.py -------------------------------------------------------------------------------- /backend/services/response/response_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/response/response_generator.py -------------------------------------------------------------------------------- /backend/services/response/response_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/response/response_service.py -------------------------------------------------------------------------------- /backend/services/tools/agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/tools/agent_tools.py -------------------------------------------------------------------------------- /backend/services/tools/task_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/services/tools/task_service.py -------------------------------------------------------------------------------- /backend/tests/debug_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/debug_elements.py -------------------------------------------------------------------------------- /backend/tests/test_absolute_path_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_absolute_path_solution.py -------------------------------------------------------------------------------- /backend/tests/test_agent_tools_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_agent_tools_fix.py -------------------------------------------------------------------------------- /backend/tests/test_agent_tools_prompt_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_agent_tools_prompt_fix.py -------------------------------------------------------------------------------- /backend/tests/test_agent_tools_skip_step1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_agent_tools_skip_step1.py -------------------------------------------------------------------------------- /backend/tests/test_api_key_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_api_key_warning.py -------------------------------------------------------------------------------- /backend/tests/test_code_context_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_code_context_extraction.py -------------------------------------------------------------------------------- /backend/tests/test_code_context_extraction_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_code_context_extraction_error.py -------------------------------------------------------------------------------- /backend/tests/test_code_context_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_code_context_integration.py -------------------------------------------------------------------------------- /backend/tests/test_code_context_task_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_code_context_task_creation.py -------------------------------------------------------------------------------- /backend/tests/test_code_context_task_creation_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_code_context_task_creation_integration.py -------------------------------------------------------------------------------- /backend/tests/test_code_parser_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_code_parser_fix.py -------------------------------------------------------------------------------- /backend/tests/test_codebase_connection_path_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_codebase_connection_path_resolution.py -------------------------------------------------------------------------------- /backend/tests/test_codebase_path_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_codebase_path_fix.py -------------------------------------------------------------------------------- /backend/tests/test_combined_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_combined_content.py -------------------------------------------------------------------------------- /backend/tests/test_comprehensive_file_exclusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_comprehensive_file_exclusion.py -------------------------------------------------------------------------------- /backend/tests/test_create_tasks_button_intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_create_tasks_button_intent.py -------------------------------------------------------------------------------- /backend/tests/test_curly_brace_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_curly_brace_fix.py -------------------------------------------------------------------------------- /backend/tests/test_direct_action_strict_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_direct_action_strict_rules.py -------------------------------------------------------------------------------- /backend/tests/test_e2e_code_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_e2e_code_context.py -------------------------------------------------------------------------------- /backend/tests/test_e2e_markdown_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_e2e_markdown_response.py -------------------------------------------------------------------------------- /backend/tests/test_efficient_code_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_efficient_code_context.py -------------------------------------------------------------------------------- /backend/tests/test_exact_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_exact_flow.py -------------------------------------------------------------------------------- /backend/tests/test_external_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_external_paths.py -------------------------------------------------------------------------------- /backend/tests/test_feature_exploration_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_feature_exploration_conversation.py -------------------------------------------------------------------------------- /backend/tests/test_intent_analysis_with_previous_intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_intent_analysis_with_previous_intent.py -------------------------------------------------------------------------------- /backend/tests/test_intent_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_intent_classification.py -------------------------------------------------------------------------------- /backend/tests/test_intent_classification_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_intent_classification_real.py -------------------------------------------------------------------------------- /backend/tests/test_intent_tracking_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_intent_tracking_integration.py -------------------------------------------------------------------------------- /backend/tests/test_intent_type_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_intent_type_streaming.py -------------------------------------------------------------------------------- /backend/tests/test_interactive_questions_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_interactive_questions_integration.py -------------------------------------------------------------------------------- /backend/tests/test_isolate_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_isolate_error.py -------------------------------------------------------------------------------- /backend/tests/test_json_parsing_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_json_parsing_error.py -------------------------------------------------------------------------------- /backend/tests/test_kaizen_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_kaizen_integration.py -------------------------------------------------------------------------------- /backend/tests/test_llm_api_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_llm_api_endpoints.py -------------------------------------------------------------------------------- /backend/tests/test_llm_cost_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_llm_cost_integration.py -------------------------------------------------------------------------------- /backend/tests/test_llm_cost_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_llm_cost_tracking.py -------------------------------------------------------------------------------- /backend/tests/test_llm_provider_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_llm_provider_integration.py -------------------------------------------------------------------------------- /backend/tests/test_log_scenario_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_log_scenario_fix.py -------------------------------------------------------------------------------- /backend/tests/test_markdown_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_markdown_extraction.py -------------------------------------------------------------------------------- /backend/tests/test_method_matching_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_method_matching_fix.py -------------------------------------------------------------------------------- /backend/tests/test_method_matching_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_method_matching_integration.py -------------------------------------------------------------------------------- /backend/tests/test_mode_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_mode_selection.py -------------------------------------------------------------------------------- /backend/tests/test_multiple_data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_multiple_data_models.py -------------------------------------------------------------------------------- /backend/tests/test_parse_ai_json_response_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_parse_ai_json_response_fix.py -------------------------------------------------------------------------------- /backend/tests/test_path_validation_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_path_validation_fix.py -------------------------------------------------------------------------------- /backend/tests/test_path_validation_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_path_validation_security.py -------------------------------------------------------------------------------- /backend/tests/test_project_codebase_isolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_project_codebase_isolation.py -------------------------------------------------------------------------------- /backend/tests/test_project_context_id_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_project_context_id_fix.py -------------------------------------------------------------------------------- /backend/tests/test_project_data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_project_data_model.py -------------------------------------------------------------------------------- /backend/tests/test_project_detail_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_project_detail_async.py -------------------------------------------------------------------------------- /backend/tests/test_project_detail_service_improved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_project_detail_service_improved.py -------------------------------------------------------------------------------- /backend/tests/test_project_detail_service_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_project_detail_service_integration.py -------------------------------------------------------------------------------- /backend/tests/test_question_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_question_detector.py -------------------------------------------------------------------------------- /backend/tests/test_real_llm_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_real_llm_error.py -------------------------------------------------------------------------------- /backend/tests/test_real_response_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_real_response_parsing.py -------------------------------------------------------------------------------- /backend/tests/test_real_scenario_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_real_scenario_fix.py -------------------------------------------------------------------------------- /backend/tests/test_security_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_security_validation.py -------------------------------------------------------------------------------- /backend/tests/test_session_end_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_session_end_background.py -------------------------------------------------------------------------------- /backend/tests/test_simplified_path_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_simplified_path_validation.py -------------------------------------------------------------------------------- /backend/tests/test_skip_step1_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_skip_step1_integration.py -------------------------------------------------------------------------------- /backend/tests/test_spec_clarification_batch_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_spec_clarification_batch_optimization.py -------------------------------------------------------------------------------- /backend/tests/test_spec_clarification_improvements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_spec_clarification_improvements.py -------------------------------------------------------------------------------- /backend/tests/test_spec_clarification_rephrasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_spec_clarification_rephrasing.py -------------------------------------------------------------------------------- /backend/tests/test_spec_clarification_rephrasing_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_spec_clarification_rephrasing_demo.py -------------------------------------------------------------------------------- /backend/tests/test_spec_clarification_rephrasing_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_spec_clarification_rephrasing_fix.py -------------------------------------------------------------------------------- /backend/tests/test_spec_clarification_rephrasing_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_spec_clarification_rephrasing_integration.py -------------------------------------------------------------------------------- /backend/tests/test_step2_parsing_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_step2_parsing_fix.py -------------------------------------------------------------------------------- /backend/tests/test_step_by_step_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_step_by_step_debug.py -------------------------------------------------------------------------------- /backend/tests/test_task_creation_markdown_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_task_creation_markdown_integration.py -------------------------------------------------------------------------------- /backend/tests/test_task_creation_parent_assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_task_creation_parent_assignment.py -------------------------------------------------------------------------------- /backend/tests/test_task_description_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_task_description_length.py -------------------------------------------------------------------------------- /backend/tests/test_task_json_to_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_task_json_to_markdown.py -------------------------------------------------------------------------------- /backend/tests/test_tuple_get_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_tuple_get_error.py -------------------------------------------------------------------------------- /backend/tests/test_tuple_get_error_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_tuple_get_error_fix.py -------------------------------------------------------------------------------- /backend/tests/test_two_step_code_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_two_step_code_context.py -------------------------------------------------------------------------------- /backend/tests/test_two_step_real_scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_two_step_real_scenario.py -------------------------------------------------------------------------------- /backend/tests/test_update_task_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_update_task_tool.py -------------------------------------------------------------------------------- /backend/tests/test_user_intent_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_user_intent_tracking.py -------------------------------------------------------------------------------- /backend/tests/test_virtual_env_exclusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_virtual_env_exclusion.py -------------------------------------------------------------------------------- /backend/tests/test_virtual_env_exclusion_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/tests/test_virtual_env_exclusion_integration.py -------------------------------------------------------------------------------- /backend/utils/question_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/backend/utils/question_detector.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.vite/deps/_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/_metadata.json -------------------------------------------------------------------------------- /frontend/.vite/deps/chunk-6IFP4TAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/chunk-6IFP4TAF.js -------------------------------------------------------------------------------- /frontend/.vite/deps/chunk-6IFP4TAF.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/chunk-6IFP4TAF.js.map -------------------------------------------------------------------------------- /frontend/.vite/deps/chunk-DDNM7ENY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/chunk-DDNM7ENY.js -------------------------------------------------------------------------------- /frontend/.vite/deps/chunk-DDNM7ENY.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/chunk-DDNM7ENY.js.map -------------------------------------------------------------------------------- /frontend/.vite/deps/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/.vite/deps/react-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/react-dom.js -------------------------------------------------------------------------------- /frontend/.vite/deps/react-dom.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/react-dom.js.map -------------------------------------------------------------------------------- /frontend/.vite/deps/react-dom_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/react-dom_client.js -------------------------------------------------------------------------------- /frontend/.vite/deps/react-dom_client.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/react-dom_client.js.map -------------------------------------------------------------------------------- /frontend/.vite/deps/react-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/react-markdown.js -------------------------------------------------------------------------------- /frontend/.vite/deps/react-markdown.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/react-markdown.js.map -------------------------------------------------------------------------------- /frontend/.vite/deps/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/react.js -------------------------------------------------------------------------------- /frontend/.vite/deps/react.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/react.js.map -------------------------------------------------------------------------------- /frontend/.vite/deps/react_jsx-dev-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/react_jsx-dev-runtime.js -------------------------------------------------------------------------------- /frontend/.vite/deps/react_jsx-dev-runtime.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/.vite/deps/react_jsx-dev-runtime.js.map -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/compact-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/compact-layout.css -------------------------------------------------------------------------------- /frontend/src/components/BasicScrollTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/BasicScrollTest.tsx -------------------------------------------------------------------------------- /frontend/src/components/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/Chat.tsx -------------------------------------------------------------------------------- /frontend/src/components/CodebaseIntegrationSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/CodebaseIntegrationSection.tsx -------------------------------------------------------------------------------- /frontend/src/components/CompactMemoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/CompactMemoryItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/CompactTaskItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/CompactTaskItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/ConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/ConfirmModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/CreateTasksButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/CreateTasksButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/FullScreenModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/FullScreenModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/InteractiveQuestionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/InteractiveQuestionButtons.tsx -------------------------------------------------------------------------------- /frontend/src/components/LLMSelectionDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/LLMSelectionDropdown.tsx -------------------------------------------------------------------------------- /frontend/src/components/MemoryDetailModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/MemoryDetailModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/MemoryPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/MemoryPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/ModeSelectionDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/ModeSelectionDropdown.tsx -------------------------------------------------------------------------------- /frontend/src/components/MonthlyCostDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/MonthlyCostDisplay.tsx -------------------------------------------------------------------------------- /frontend/src/components/ProactiveSuggestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/ProactiveSuggestion.tsx -------------------------------------------------------------------------------- /frontend/src/components/ProgressDisplay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/ProgressDisplay.css -------------------------------------------------------------------------------- /frontend/src/components/ProgressDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/ProgressDisplay.tsx -------------------------------------------------------------------------------- /frontend/src/components/ProjectSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/ProjectSelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/ScrollTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/ScrollTest.tsx -------------------------------------------------------------------------------- /frontend/src/components/SimpleScrollTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/SimpleScrollTest.tsx -------------------------------------------------------------------------------- /frontend/src/components/TaskBoard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/TaskBoard.css -------------------------------------------------------------------------------- /frontend/src/components/TaskBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/TaskBoard.tsx -------------------------------------------------------------------------------- /frontend/src/components/TaskDetailsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/TaskDetailsView.tsx -------------------------------------------------------------------------------- /frontend/src/components/TaskListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/TaskListView.tsx -------------------------------------------------------------------------------- /frontend/src/components/TaskPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/TaskPanel.tsx -------------------------------------------------------------------------------- /frontend/src/components/ViewControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/ViewControls.tsx -------------------------------------------------------------------------------- /frontend/src/components/VirtualizedList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/VirtualizedList.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/CodebaseIntegrationSection.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/__tests__/CodebaseIntegrationSection.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/CompactTaskItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/__tests__/CompactTaskItem.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/InteractiveQuestionButtons.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/__tests__/InteractiveQuestionButtons.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/ModeSelectionDropdown.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/__tests__/ModeSelectionDropdown.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/TaskBoard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/__tests__/TaskBoard.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/TaskBoardAutoScroll.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/__tests__/TaskBoardAutoScroll.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/TaskListView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/__tests__/TaskListView.test.tsx -------------------------------------------------------------------------------- /frontend/src/components/__tests__/scroll-restoration-manual.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/components/__tests__/scroll-restoration-manual.test.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/useAutoScroll.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/hooks/__tests__/useAutoScroll.test.ts -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/useTaskExpansionPersistence.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/hooks/__tests__/useTaskExpansionPersistence.test.ts -------------------------------------------------------------------------------- /frontend/src/hooks/__tests__/useTaskScrollPersistence.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/hooks/__tests__/useTaskScrollPersistence.test.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useAutoScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/hooks/useAutoScroll.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useConversationPersistence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/hooks/useConversationPersistence.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useProjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/hooks/useProjects.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useTaskExpansionPersistence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/hooks/useTaskExpansionPersistence.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useTaskScrollPersistence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/hooks/useTaskScrollPersistence.ts -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/services/api.ts -------------------------------------------------------------------------------- /frontend/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/test-setup.ts -------------------------------------------------------------------------------- /frontend/src/tests/TaskDetailsView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/TaskDetailsView.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/TaskListView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/TaskListView.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/auto-scroll-integration.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/auto-scroll-integration.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/auto-scroll.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/auto-scroll.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/chatbox-markdown-rendering.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/chatbox-markdown-rendering.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/create-tasks-button-persistence.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/create-tasks-button-persistence.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/create-tasks-button-visual.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/create-tasks-button-visual.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/create-tasks-button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/create-tasks-button.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/layout-redesign.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/layout-redesign.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/memory-content-test.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/memory-content-test.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/proactive-suggestion.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/proactive-suggestion.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/progress-display.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/progress-display.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/progress-streaming.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/progress-streaming.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/project-detail-async.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/project-detail-async.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/scroll-position-restoration-e2e.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/scroll-position-restoration-e2e.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/simple-ui-test.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/simple-ui-test.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/streaming-integration.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/streaming-integration.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-ascii-tree.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-ascii-tree.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-board-integration.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-board-integration.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-completion-test.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-completion-test.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-description-width.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-description-width.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-hierarchy-top-level.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-hierarchy-top-level.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-hierarchy.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-hierarchy.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-scroll-e2e.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-scroll-e2e.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-scroll-persistence.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-scroll-persistence.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-sorting-integration.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-sorting-integration.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-sorting.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-sorting.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/task-warnings.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/task-warnings.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/ui-critical-fixes.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/ui-critical-fixes.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/unified-click-behavior.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/unified-click-behavior.test.tsx -------------------------------------------------------------------------------- /frontend/src/tests/warnings-integration.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/tests/warnings-integration.test.tsx -------------------------------------------------------------------------------- /frontend/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/types/index.ts -------------------------------------------------------------------------------- /frontend/src/utils/__tests__/taskExpansionUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/utils/__tests__/taskExpansionUtils.test.ts -------------------------------------------------------------------------------- /frontend/src/utils/taskExpansionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/src/utils/taskExpansionUtils.ts -------------------------------------------------------------------------------- /frontend/test-auto-scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/test-auto-scroll.html -------------------------------------------------------------------------------- /frontend/test-progress-manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/test-progress-manual.html -------------------------------------------------------------------------------- /frontend/test-warnings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/test-warnings.html -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /integration-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/README.md -------------------------------------------------------------------------------- /integration-tests/debug-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/debug-utils.js -------------------------------------------------------------------------------- /integration-tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/package-lock.json -------------------------------------------------------------------------------- /integration-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/package.json -------------------------------------------------------------------------------- /integration-tests/quick-fixes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/quick-fixes.js -------------------------------------------------------------------------------- /integration-tests/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/run-tests.js -------------------------------------------------------------------------------- /integration-tests/test-codebase-connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-codebase-connection.js -------------------------------------------------------------------------------- /integration-tests/test-create-tasks-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-create-tasks-button.js -------------------------------------------------------------------------------- /integration-tests/test-delete-operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-delete-operations.js -------------------------------------------------------------------------------- /integration-tests/test-frontend-connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-frontend-connection.js -------------------------------------------------------------------------------- /integration-tests/test-frontend-hierarchy-e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-frontend-hierarchy-e2e.js -------------------------------------------------------------------------------- /integration-tests/test-frontend-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-frontend-integration.js -------------------------------------------------------------------------------- /integration-tests/test-hierarchy-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-hierarchy-flow.js -------------------------------------------------------------------------------- /integration-tests/test-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-integration.js -------------------------------------------------------------------------------- /integration-tests/test-project-detail-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-project-detail-async.js -------------------------------------------------------------------------------- /integration-tests/test-project-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-project-detail.js -------------------------------------------------------------------------------- /integration-tests/test-unified-agent-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-unified-agent-api.js -------------------------------------------------------------------------------- /integration-tests/test-unified-agent-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test-unified-agent-integration.js -------------------------------------------------------------------------------- /integration-tests/test_debug_remaining_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test_debug_remaining_issues.py -------------------------------------------------------------------------------- /integration-tests/test_e2e_complete_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/integration-tests/test_e2e_complete_workflow.py -------------------------------------------------------------------------------- /samurai-agent-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/samurai-agent-demo.gif -------------------------------------------------------------------------------- /samurai-agent-screenshot-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/samurai-agent-screenshot-task.png -------------------------------------------------------------------------------- /samurai-agent-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/samurai-agent-screenshot.png -------------------------------------------------------------------------------- /samurai-agent.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/samurai-agent.code-workspace -------------------------------------------------------------------------------- /samurai_agent_beta_v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/samurai_agent_beta_v2.gif -------------------------------------------------------------------------------- /vscode/samurai-agent/.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/.vscode-test.mjs -------------------------------------------------------------------------------- /vscode/samurai-agent/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/.vscode/extensions.json -------------------------------------------------------------------------------- /vscode/samurai-agent/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/.vscode/launch.json -------------------------------------------------------------------------------- /vscode/samurai-agent/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/.vscode/settings.json -------------------------------------------------------------------------------- /vscode/samurai-agent/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/.vscode/tasks.json -------------------------------------------------------------------------------- /vscode/samurai-agent/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/.vscodeignore -------------------------------------------------------------------------------- /vscode/samurai-agent/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/CHANGELOG.md -------------------------------------------------------------------------------- /vscode/samurai-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/README.md -------------------------------------------------------------------------------- /vscode/samurai-agent/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/eslint.config.mjs -------------------------------------------------------------------------------- /vscode/samurai-agent/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/package-lock.json -------------------------------------------------------------------------------- /vscode/samurai-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/package.json -------------------------------------------------------------------------------- /vscode/samurai-agent/samurai-agent-0.0.1.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/samurai-agent-0.0.1.vsix -------------------------------------------------------------------------------- /vscode/samurai-agent/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/src/extension.ts -------------------------------------------------------------------------------- /vscode/samurai-agent/src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/src/test/extension.test.ts -------------------------------------------------------------------------------- /vscode/samurai-agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/tsconfig.json -------------------------------------------------------------------------------- /vscode/samurai-agent/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /vscode/samurai-agent/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuking1192/samurai-agent/HEAD/vscode/samurai-agent/webpack.config.js --------------------------------------------------------------------------------