├── .claude-flow └── metrics │ ├── agent-metrics.json │ ├── performance.json │ └── task-metrics.json ├── .gitignore ├── NAVIGATION_GUIDE.md ├── ORGANIZATION_SUMMARY.md ├── README.md ├── UX_IMPROVEMENTS.md ├── organized_tutorial ├── .knowledge_base.json ├── .learning_history.json ├── README.md ├── WFGY_AUTONOMOUS_LEARNING_REPORT.md ├── WFGY_CLAIM_VALIDATION_REPORT.md ├── WFGY_COMPLEX_REFACTOR_CASE_STUDY.md ├── WFGY_DEFINITIVE_BULLETPROOF_ANALYSIS.md ├── WFGY_FINAL_VALIDATION_REPORT.md ├── WFGY_RAG_CHATBOT_CASE_STUDY.md ├── autonomous-learning-test │ ├── .quality_score │ ├── README.md │ ├── app.py │ ├── config.py │ ├── models │ │ └── document.py │ ├── repositories │ │ ├── document_repository.py │ │ └── user_repository.py │ ├── requirements.txt │ └── services │ │ ├── document_service.py │ │ └── user_service.py ├── backups │ ├── EXAMPLES_backup.md │ ├── README_backup.md │ ├── idea_to_app_corrected_backup.sh │ ├── idea_to_app_wfgy_enhanced_backup.sh │ ├── idea_to_app_wfgy_enhanced_fixed.sh │ ├── idea_to_app_wfgy_enhanced_working.sh │ └── wfgy-enhancement-analysis.md ├── bulletproof-test │ ├── .bbcr_contradictions │ ├── .bbcr_resolutions │ ├── .bbmc_issues │ ├── .bbmc_validations │ ├── .quality_score │ ├── app.py │ ├── config.py │ ├── models │ │ ├── __init__.py │ │ ├── base.py │ │ └── user.py │ ├── repositories │ │ ├── __init__.py │ │ └── base_repository.py │ └── services │ │ ├── __init__.py │ │ └── base_service.py ├── complex-legacy-refactor │ ├── .claude-flow │ │ └── metrics │ │ │ ├── agent-metrics.json │ │ │ ├── performance.json │ │ │ └── task-metrics.json │ ├── .dr_house_improvements │ ├── .dr_house_issues │ ├── .dr_house_score │ ├── .env.example │ ├── .fix_prompt │ ├── .gitignore │ ├── .roo │ │ ├── README.md │ │ ├── mcp-list.txt │ │ ├── mcp.json │ │ ├── mcp.md │ │ ├── rules-architect │ │ │ └── rules.md │ │ ├── rules-ask │ │ │ └── rules.md │ │ ├── rules-code │ │ │ ├── apply_diff_guidelines.md │ │ │ ├── code_editing.md │ │ │ ├── file_operations_guidelines.md │ │ │ ├── insert_content.md │ │ │ ├── rules.md │ │ │ ├── search_replace.md │ │ │ └── tool_guidelines_index.md │ │ ├── rules-debug │ │ │ └── rules.md │ │ ├── rules-devops │ │ │ └── rules.md │ │ ├── rules-docs-writer │ │ │ └── rules.md │ │ ├── rules-integration │ │ │ └── rules.md │ │ ├── rules-mcp │ │ │ └── rules.md │ │ ├── rules-post-deployment-monitoring-mode │ │ │ └── rules.md │ │ ├── rules-refinement-optimization-mode │ │ │ └── rules.md │ │ ├── rules-security-review │ │ │ └── rules.md │ │ ├── rules-sparc │ │ │ └── rules.md │ │ ├── rules-spec-pseudocode │ │ │ └── rules.md │ │ ├── rules-supabase-admin │ │ │ └── rules.md │ │ ├── rules-tdd │ │ │ └── rules.md │ │ ├── rules-tutorial │ │ │ └── rules.md │ │ └── rules │ │ │ ├── apply_diff_guidelines.md │ │ │ ├── file_operations_guidelines.md │ │ │ ├── insert_content.md │ │ │ ├── rules.md │ │ │ ├── search_replace.md │ │ │ └── tool_guidelines_index.md │ ├── .roomodes │ ├── CLAUDE.md │ ├── DR_HOUSE_AUTO_FIX_REPORT.md │ ├── README.md │ ├── coordination.md │ ├── memory-bank.md │ ├── package.json │ ├── src │ │ └── index.js │ └── tests │ │ └── basic.test.js ├── complex-refactor-test │ ├── legacy_app.py │ └── requirements.txt ├── documentation │ ├── 01_main_readme.md │ ├── 02_getting_started.md │ ├── 03_usage_guide.md │ ├── 04_project_organization.md │ ├── 05_dependency_management.md │ ├── 06_quick_start.md │ ├── 07_wfgy_implementation.md │ ├── 08_code_refactor_guide.md │ ├── 09_dr_house_guide.md │ └── 10_auto_fix_guide.md ├── examples │ └── 01_project_examples.md ├── fixed-bulletproof-test │ ├── .env.example │ ├── .quality_score │ ├── README.md │ ├── app.py │ ├── config.py │ ├── models │ │ └── document.py │ ├── repositories │ │ ├── document_repository.py │ │ └── user_repository.py │ ├── requirements.txt │ ├── services │ │ ├── document_service.py │ │ └── user_service.py │ └── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_services.py ├── rag-chatbot-test │ ├── legacy_rag_system.py │ └── requirements.txt ├── scripts │ ├── 01_original.sh │ ├── 02_basic_corrected.sh │ ├── 03_wfgy_enhanced.sh │ ├── 04_complete_with_deps.sh │ ├── 05_enhanced_ux.sh │ ├── 05_ultimate_ux.sh │ ├── 05_wfgy_enhanced_backup.sh │ ├── 06_code_refactor_orchestrator.sh │ ├── 07_simple_refactor.sh │ ├── 08_brutal_assessor.sh │ ├── 09_complete_with_house.sh │ ├── 10_refactor_with_house.sh │ ├── 11_auto_fix_with_house.sh │ ├── 12_wfgy_complex_refactor.sh │ ├── 13_wfgy_advanced_fix.sh │ ├── 14_wfgy_rag_specialized.sh │ ├── 15_wfgy_definitive_bulletproof.sh │ ├── 16_wfgy_fixed_bulletproof.sh │ ├── 17_wfgy_autonomous_learning.sh │ ├── 18_wfgy_background_autonomous.sh │ ├── wfgy_attention.py │ ├── wfgy_contradiction.py │ ├── wfgy_integrated.py │ ├── wfgy_pipeline.py │ └── wfgy_validation.py ├── validation-test-fixed │ ├── .bbcr_contradictions │ ├── .bbcr_resolutions │ ├── .bbmc_issues │ ├── .bbmc_validations │ ├── .quality_score │ ├── app.py │ ├── config.py │ ├── models │ │ ├── __init__.py │ │ ├── base.py │ │ └── user.py │ ├── repositories │ │ ├── __init__.py │ │ └── base_repository.py │ └── services │ │ ├── __init__.py │ │ └── base_service.py ├── wfgy-final-refactor │ ├── .bbcr_contradictions │ ├── .bbcr_resolutions │ ├── .bbmc_issues │ ├── .bbmc_validations │ ├── .quality_score │ ├── app.py │ ├── config.py │ ├── models │ │ ├── __init__.py │ │ ├── order.py │ │ └── user.py │ ├── repositories │ │ ├── __init__.py │ │ └── user_repository.py │ └── services │ │ ├── __init__.py │ │ └── user_service.py ├── wfgy-legacy-refactor │ ├── .bbcr_contradictions │ ├── .bbcr_resolutions │ ├── .bbmc_issues │ ├── .bbmc_validations │ ├── .env.example │ ├── .quality_score │ ├── README.md │ ├── app.py │ ├── config.py │ ├── models │ │ ├── __init__.py │ │ ├── order.py │ │ └── user.py │ ├── repositories │ │ ├── __init__.py │ │ ├── order_repository.py │ │ └── user_repository.py │ ├── requirements.txt │ ├── services │ │ ├── __init__.py │ │ ├── interfaces.py │ │ ├── order_service.py │ │ ├── report_service.py │ │ └── user_service.py │ └── tests │ │ ├── __init__.py │ │ └── test_user_service.py └── wfgy-rag-chatbot │ ├── .bbcr_contradictions │ ├── .bbcr_resolutions │ ├── .bbmc_issues │ ├── .bbmc_validations │ ├── .quality_score │ ├── app.py │ ├── config.py │ ├── models │ ├── __init__.py │ ├── chunk.py │ ├── document.py │ ├── order.py │ ├── query.py │ └── user.py │ ├── repositories │ ├── __init__.py │ └── user_repository.py │ └── services │ ├── __init__.py │ ├── embedding_service.py │ ├── pdf_processor.py │ ├── rag_chat_service.py │ ├── user_service.py │ └── vector_store.py ├── run_tutorial.sh ├── test_corrected ├── .claude-flow │ └── metrics │ │ ├── agent-metrics.json │ │ ├── performance.json │ │ ├── system-metrics.json │ │ └── task-metrics.json ├── .env.example ├── .gitignore ├── .roo │ ├── README.md │ ├── mcp-list.txt │ ├── mcp.json │ ├── mcp.md │ ├── rules-architect │ │ └── rules.md │ ├── rules-ask │ │ └── rules.md │ ├── rules-code │ │ ├── apply_diff_guidelines.md │ │ ├── code_editing.md │ │ ├── file_operations_guidelines.md │ │ ├── insert_content.md │ │ ├── rules.md │ │ ├── search_replace.md │ │ └── tool_guidelines_index.md │ ├── rules-debug │ │ └── rules.md │ ├── rules-devops │ │ └── rules.md │ ├── rules-docs-writer │ │ └── rules.md │ ├── rules-integration │ │ └── rules.md │ ├── rules-mcp │ │ └── rules.md │ ├── rules-post-deployment-monitoring-mode │ │ └── rules.md │ ├── rules-refinement-optimization-mode │ │ └── rules.md │ ├── rules-security-review │ │ └── rules.md │ ├── rules-sparc │ │ └── rules.md │ ├── rules-spec-pseudocode │ │ └── rules.md │ ├── rules-supabase-admin │ │ └── rules.md │ ├── rules-tdd │ │ └── rules.md │ ├── rules-tutorial │ │ └── rules.md │ └── rules │ │ ├── apply_diff_guidelines.md │ │ ├── file_operations_guidelines.md │ │ ├── insert_content.md │ │ ├── rules.md │ │ ├── search_replace.md │ │ └── tool_guidelines_index.md ├── .roomodes ├── CLAUDE.md ├── README.md ├── architecture │ ├── component-diagram.md │ ├── data-flow.md │ ├── deployment.md │ └── system-architecture.md ├── deployment │ ├── README.md │ ├── ci-cd │ │ └── github-actions.yml │ ├── configs │ │ ├── development │ │ │ └── local.env │ │ └── production │ │ │ └── secrets-template.yml │ ├── docker │ │ ├── .env.example │ │ ├── Dockerfile │ │ └── docker-compose.yml │ ├── kubernetes │ │ ├── base │ │ │ ├── configmap.yml │ │ │ └── namespace.yml │ │ ├── environments │ │ │ ├── production │ │ │ │ └── ingress.yml │ │ │ └── staging │ │ │ │ └── ingress.yml │ │ └── services │ │ │ ├── api-gateway.yml │ │ │ ├── auth-service.yml │ │ │ └── user-service.yml │ ├── monitoring │ │ ├── alerting-rules.yml │ │ ├── grafana-dashboards.json │ │ └── prometheus.yml │ └── scripts │ │ ├── database-migrations.sql │ │ └── deploy.sh ├── docs │ ├── interfaces.md │ ├── requirements.md │ └── specifications.md ├── package.json ├── src │ ├── app.js │ ├── application │ │ └── services │ │ │ └── UserService.js │ ├── domain │ │ └── user │ │ │ └── User.js │ ├── infrastructure │ │ ├── external │ │ │ ├── AuditLogService.js │ │ │ └── EmailService.js │ │ └── repositories │ │ │ └── UserRepository.js │ ├── presentation │ │ ├── controllers │ │ │ └── UserController.js │ │ ├── middleware │ │ │ └── authMiddleware.js │ │ └── routes │ │ │ └── userRoutes.js │ ├── server.js │ └── shared │ │ ├── config │ │ └── index.js │ │ ├── errors │ │ └── index.js │ │ ├── logger │ │ └── index.js │ │ └── utils │ │ └── hashingService.js └── tests │ ├── fixtures │ └── builders │ │ └── userBuilder.js │ ├── mock-patterns.md │ ├── mocks │ └── factories │ │ └── userRepositoryMockFactory.js │ ├── sample-tests │ ├── controllers │ │ └── userController.test.js │ └── services │ │ └── userService.test.js │ ├── setup │ └── jest.setup.js │ ├── test-config.js │ ├── test-framework.md │ └── utils │ └── customMatchers.js └── test_project ├── .claude-flow └── metrics │ ├── agent-metrics.json │ ├── performance.json │ └── task-metrics.json ├── .gitignore ├── .roo ├── README.md ├── mcp-list.txt ├── mcp.json ├── mcp.md ├── rules-architect │ └── rules.md ├── rules-ask │ └── rules.md ├── rules-code │ ├── apply_diff_guidelines.md │ ├── code_editing.md │ ├── file_operations_guidelines.md │ ├── insert_content.md │ ├── rules.md │ ├── search_replace.md │ └── tool_guidelines_index.md ├── rules-debug │ └── rules.md ├── rules-devops │ └── rules.md ├── rules-docs-writer │ └── rules.md ├── rules-integration │ └── rules.md ├── rules-mcp │ └── rules.md ├── rules-post-deployment-monitoring-mode │ └── rules.md ├── rules-refinement-optimization-mode │ └── rules.md ├── rules-security-review │ └── rules.md ├── rules-sparc │ └── rules.md ├── rules-spec-pseudocode │ └── rules.md ├── rules-supabase-admin │ └── rules.md ├── rules-tdd │ └── rules.md ├── rules-tutorial │ └── rules.md └── rules │ ├── apply_diff_guidelines.md │ ├── file_operations_guidelines.md │ ├── insert_content.md │ ├── rules.md │ ├── search_replace.md │ └── tool_guidelines_index.md ├── .roomodes └── CLAUDE.md /.claude-flow/metrics/agent-metrics.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.claude-flow/metrics/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/.claude-flow/metrics/performance.json -------------------------------------------------------------------------------- /.claude-flow/metrics/task-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/.claude-flow/metrics/task-metrics.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/.gitignore -------------------------------------------------------------------------------- /NAVIGATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/NAVIGATION_GUIDE.md -------------------------------------------------------------------------------- /ORGANIZATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/ORGANIZATION_SUMMARY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/README.md -------------------------------------------------------------------------------- /UX_IMPROVEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/UX_IMPROVEMENTS.md -------------------------------------------------------------------------------- /organized_tutorial/.knowledge_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/.knowledge_base.json -------------------------------------------------------------------------------- /organized_tutorial/.learning_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/.learning_history.json -------------------------------------------------------------------------------- /organized_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/README.md -------------------------------------------------------------------------------- /organized_tutorial/WFGY_AUTONOMOUS_LEARNING_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/WFGY_AUTONOMOUS_LEARNING_REPORT.md -------------------------------------------------------------------------------- /organized_tutorial/WFGY_CLAIM_VALIDATION_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/WFGY_CLAIM_VALIDATION_REPORT.md -------------------------------------------------------------------------------- /organized_tutorial/WFGY_COMPLEX_REFACTOR_CASE_STUDY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/WFGY_COMPLEX_REFACTOR_CASE_STUDY.md -------------------------------------------------------------------------------- /organized_tutorial/WFGY_DEFINITIVE_BULLETPROOF_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/WFGY_DEFINITIVE_BULLETPROOF_ANALYSIS.md -------------------------------------------------------------------------------- /organized_tutorial/WFGY_FINAL_VALIDATION_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/WFGY_FINAL_VALIDATION_REPORT.md -------------------------------------------------------------------------------- /organized_tutorial/WFGY_RAG_CHATBOT_CASE_STUDY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/WFGY_RAG_CHATBOT_CASE_STUDY.md -------------------------------------------------------------------------------- /organized_tutorial/autonomous-learning-test/.quality_score: -------------------------------------------------------------------------------- 1 | 95 2 | -------------------------------------------------------------------------------- /organized_tutorial/autonomous-learning-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/autonomous-learning-test/README.md -------------------------------------------------------------------------------- /organized_tutorial/autonomous-learning-test/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/autonomous-learning-test/app.py -------------------------------------------------------------------------------- /organized_tutorial/autonomous-learning-test/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/autonomous-learning-test/config.py -------------------------------------------------------------------------------- /organized_tutorial/autonomous-learning-test/models/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/autonomous-learning-test/models/document.py -------------------------------------------------------------------------------- /organized_tutorial/autonomous-learning-test/repositories/document_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/autonomous-learning-test/repositories/document_repository.py -------------------------------------------------------------------------------- /organized_tutorial/autonomous-learning-test/repositories/user_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/autonomous-learning-test/repositories/user_repository.py -------------------------------------------------------------------------------- /organized_tutorial/autonomous-learning-test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/autonomous-learning-test/requirements.txt -------------------------------------------------------------------------------- /organized_tutorial/autonomous-learning-test/services/document_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/autonomous-learning-test/services/document_service.py -------------------------------------------------------------------------------- /organized_tutorial/autonomous-learning-test/services/user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/autonomous-learning-test/services/user_service.py -------------------------------------------------------------------------------- /organized_tutorial/backups/EXAMPLES_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/backups/EXAMPLES_backup.md -------------------------------------------------------------------------------- /organized_tutorial/backups/README_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/backups/README_backup.md -------------------------------------------------------------------------------- /organized_tutorial/backups/idea_to_app_corrected_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/backups/idea_to_app_corrected_backup.sh -------------------------------------------------------------------------------- /organized_tutorial/backups/idea_to_app_wfgy_enhanced_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/backups/idea_to_app_wfgy_enhanced_backup.sh -------------------------------------------------------------------------------- /organized_tutorial/backups/idea_to_app_wfgy_enhanced_fixed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/backups/idea_to_app_wfgy_enhanced_fixed.sh -------------------------------------------------------------------------------- /organized_tutorial/backups/idea_to_app_wfgy_enhanced_working.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/backups/idea_to_app_wfgy_enhanced_working.sh -------------------------------------------------------------------------------- /organized_tutorial/backups/wfgy-enhancement-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/backups/wfgy-enhancement-analysis.md -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/.bbcr_contradictions: -------------------------------------------------------------------------------- 1 | BBCR: Mixed concerns detected in functions 2 | -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/.bbcr_resolutions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/.bbcr_resolutions -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/.bbmc_issues: -------------------------------------------------------------------------------- 1 | BBMC: Wildcard imports detected - namespace pollution 2 | -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/.bbmc_validations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/.bbmc_validations -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/.quality_score: -------------------------------------------------------------------------------- 1 | 70 2 | -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/app.py -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/config.py -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/models/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/models/base.py -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/models/user.py -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/repositories/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/repositories/base_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/repositories/base_repository.py -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/services/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/bulletproof-test/services/base_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/bulletproof-test/services/base_service.py -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.claude-flow/metrics/agent-metrics.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.claude-flow/metrics/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.claude-flow/metrics/performance.json -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.claude-flow/metrics/task-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.claude-flow/metrics/task-metrics.json -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.dr_house_improvements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.dr_house_improvements -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.dr_house_issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.dr_house_issues -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.dr_house_score: -------------------------------------------------------------------------------- 1 | 85 2 | -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.env.example -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.fix_prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.fix_prompt -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.gitignore -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/README.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/mcp-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/mcp-list.txt -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/mcp.json -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/mcp.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-architect/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-architect/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-ask/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-ask/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-code/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-code/apply_diff_guidelines.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-code/code_editing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-code/code_editing.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-code/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-code/file_operations_guidelines.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-code/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-code/insert_content.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-code/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-code/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-code/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-code/search_replace.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-code/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-code/tool_guidelines_index.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-debug/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-debug/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-devops/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-devops/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-docs-writer/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-docs-writer/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-integration/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-integration/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-mcp/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-mcp/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-post-deployment-monitoring-mode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-post-deployment-monitoring-mode/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-refinement-optimization-mode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-refinement-optimization-mode/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-security-review/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-security-review/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-sparc/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-sparc/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-spec-pseudocode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-spec-pseudocode/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-supabase-admin/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-supabase-admin/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-tdd/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-tdd/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules-tutorial/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules-tutorial/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules/apply_diff_guidelines.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules/file_operations_guidelines.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules/insert_content.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules/rules.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules/search_replace.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roo/rules/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roo/rules/tool_guidelines_index.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/.roomodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/.roomodes -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/CLAUDE.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/DR_HOUSE_AUTO_FIX_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/DR_HOUSE_AUTO_FIX_REPORT.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/README.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/coordination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/coordination.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/memory-bank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/memory-bank.md -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/package.json -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/src/index.js -------------------------------------------------------------------------------- /organized_tutorial/complex-legacy-refactor/tests/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-legacy-refactor/tests/basic.test.js -------------------------------------------------------------------------------- /organized_tutorial/complex-refactor-test/legacy_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/complex-refactor-test/legacy_app.py -------------------------------------------------------------------------------- /organized_tutorial/complex-refactor-test/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.31.0 2 | sqlite3 3 | -------------------------------------------------------------------------------- /organized_tutorial/documentation/01_main_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/documentation/01_main_readme.md -------------------------------------------------------------------------------- /organized_tutorial/documentation/02_getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/documentation/02_getting_started.md -------------------------------------------------------------------------------- /organized_tutorial/documentation/03_usage_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/documentation/03_usage_guide.md -------------------------------------------------------------------------------- /organized_tutorial/documentation/04_project_organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/documentation/04_project_organization.md -------------------------------------------------------------------------------- /organized_tutorial/documentation/05_dependency_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/documentation/05_dependency_management.md -------------------------------------------------------------------------------- /organized_tutorial/documentation/06_quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/documentation/06_quick_start.md -------------------------------------------------------------------------------- /organized_tutorial/documentation/07_wfgy_implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/documentation/07_wfgy_implementation.md -------------------------------------------------------------------------------- /organized_tutorial/documentation/08_code_refactor_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/documentation/08_code_refactor_guide.md -------------------------------------------------------------------------------- /organized_tutorial/documentation/09_dr_house_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/documentation/09_dr_house_guide.md -------------------------------------------------------------------------------- /organized_tutorial/documentation/10_auto_fix_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/documentation/10_auto_fix_guide.md -------------------------------------------------------------------------------- /organized_tutorial/examples/01_project_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/examples/01_project_examples.md -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/.env.example -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/.quality_score: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/README.md -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/app.py -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/config.py -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/models/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/models/document.py -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/repositories/document_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/repositories/document_repository.py -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/repositories/user_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/repositories/user_repository.py -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/requirements.txt -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/services/document_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/services/document_service.py -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/services/user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/services/user_service.py -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Comprehensive Test Suite - BBAM Priority 3 3 | """ 4 | -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/tests/test_models.py -------------------------------------------------------------------------------- /organized_tutorial/fixed-bulletproof-test/tests/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/fixed-bulletproof-test/tests/test_services.py -------------------------------------------------------------------------------- /organized_tutorial/rag-chatbot-test/legacy_rag_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/rag-chatbot-test/legacy_rag_system.py -------------------------------------------------------------------------------- /organized_tutorial/rag-chatbot-test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/rag-chatbot-test/requirements.txt -------------------------------------------------------------------------------- /organized_tutorial/scripts/01_original.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/01_original.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/02_basic_corrected.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/02_basic_corrected.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/03_wfgy_enhanced.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/03_wfgy_enhanced.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/04_complete_with_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/04_complete_with_deps.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/05_enhanced_ux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/05_enhanced_ux.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/05_ultimate_ux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/05_ultimate_ux.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/05_wfgy_enhanced_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/05_wfgy_enhanced_backup.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/06_code_refactor_orchestrator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/06_code_refactor_orchestrator.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/07_simple_refactor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/07_simple_refactor.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/08_brutal_assessor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/08_brutal_assessor.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/09_complete_with_house.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/09_complete_with_house.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/10_refactor_with_house.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/10_refactor_with_house.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/11_auto_fix_with_house.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/11_auto_fix_with_house.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/12_wfgy_complex_refactor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/12_wfgy_complex_refactor.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/13_wfgy_advanced_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/13_wfgy_advanced_fix.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/14_wfgy_rag_specialized.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/14_wfgy_rag_specialized.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/15_wfgy_definitive_bulletproof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/15_wfgy_definitive_bulletproof.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/16_wfgy_fixed_bulletproof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/16_wfgy_fixed_bulletproof.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/17_wfgy_autonomous_learning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/17_wfgy_autonomous_learning.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/18_wfgy_background_autonomous.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/18_wfgy_background_autonomous.sh -------------------------------------------------------------------------------- /organized_tutorial/scripts/wfgy_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/wfgy_attention.py -------------------------------------------------------------------------------- /organized_tutorial/scripts/wfgy_contradiction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/wfgy_contradiction.py -------------------------------------------------------------------------------- /organized_tutorial/scripts/wfgy_integrated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/wfgy_integrated.py -------------------------------------------------------------------------------- /organized_tutorial/scripts/wfgy_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/wfgy_pipeline.py -------------------------------------------------------------------------------- /organized_tutorial/scripts/wfgy_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/scripts/wfgy_validation.py -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/.bbcr_contradictions: -------------------------------------------------------------------------------- 1 | BBCR: Mixed concerns detected in functions 2 | -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/.bbcr_resolutions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/.bbcr_resolutions -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/.bbmc_issues: -------------------------------------------------------------------------------- 1 | BBMC: Wildcard imports detected - namespace pollution 2 | -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/.bbmc_validations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/.bbmc_validations -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/.quality_score: -------------------------------------------------------------------------------- 1 | 70 2 | -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/app.py -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/config.py -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/models/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/models/base.py -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/models/user.py -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/repositories/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/repositories/base_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/repositories/base_repository.py -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/services/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/validation-test-fixed/services/base_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/validation-test-fixed/services/base_service.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/.bbcr_contradictions: -------------------------------------------------------------------------------- 1 | BBCR: Mixed concerns detected in functions 2 | -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/.bbcr_resolutions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/.bbcr_resolutions -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/.bbmc_issues: -------------------------------------------------------------------------------- 1 | BBMC: Wildcard imports detected - namespace pollution 2 | -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/.bbmc_validations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/.bbmc_validations -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/.quality_score: -------------------------------------------------------------------------------- 1 | 70 2 | -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/app.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/config.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/models/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/models/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/models/order.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/models/user.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/repositories/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/repositories/user_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/repositories/user_repository.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/services/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-final-refactor/services/user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-final-refactor/services/user_service.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/.bbcr_contradictions: -------------------------------------------------------------------------------- 1 | BBCR: Mixed concerns detected in functions 2 | -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/.bbcr_resolutions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/.bbcr_resolutions -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/.bbmc_issues: -------------------------------------------------------------------------------- 1 | BBMC: Wildcard imports detected - namespace pollution 2 | -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/.bbmc_validations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/.bbmc_validations -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/.env.example -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/.quality_score: -------------------------------------------------------------------------------- 1 | 70 2 | -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/README.md -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/app.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/config.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/models/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/models/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/models/order.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/models/user.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/repositories/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/repositories/order_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/repositories/order_repository.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/repositories/user_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/repositories/user_repository.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/requirements.txt -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/services/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/services/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/services/interfaces.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/services/order_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/services/order_service.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/services/report_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/services/report_service.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/services/user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/services/user_service.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/tests/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-legacy-refactor/tests/test_user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-legacy-refactor/tests/test_user_service.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/.bbcr_contradictions: -------------------------------------------------------------------------------- 1 | BBCR: Mixed concerns detected in functions 2 | -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/.bbcr_resolutions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/.bbcr_resolutions -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/.bbmc_issues: -------------------------------------------------------------------------------- 1 | BBMC: Wildcard imports detected - namespace pollution 2 | -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/.bbmc_validations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/.bbmc_validations -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/.quality_score: -------------------------------------------------------------------------------- 1 | 70 2 | -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/app.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/config.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/models/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/models/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/models/chunk.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/models/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/models/document.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/models/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/models/order.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/models/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/models/query.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/models/user.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/repositories/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/repositories/user_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/repositories/user_repository.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/services/__init__.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/services/embedding_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/services/embedding_service.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/services/pdf_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/services/pdf_processor.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/services/rag_chat_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/services/rag_chat_service.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/services/user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/services/user_service.py -------------------------------------------------------------------------------- /organized_tutorial/wfgy-rag-chatbot/services/vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/organized_tutorial/wfgy-rag-chatbot/services/vector_store.py -------------------------------------------------------------------------------- /run_tutorial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/run_tutorial.sh -------------------------------------------------------------------------------- /test_corrected/.claude-flow/metrics/agent-metrics.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test_corrected/.claude-flow/metrics/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.claude-flow/metrics/performance.json -------------------------------------------------------------------------------- /test_corrected/.claude-flow/metrics/system-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.claude-flow/metrics/system-metrics.json -------------------------------------------------------------------------------- /test_corrected/.claude-flow/metrics/task-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.claude-flow/metrics/task-metrics.json -------------------------------------------------------------------------------- /test_corrected/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.env.example -------------------------------------------------------------------------------- /test_corrected/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.gitignore -------------------------------------------------------------------------------- /test_corrected/.roo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/README.md -------------------------------------------------------------------------------- /test_corrected/.roo/mcp-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/mcp-list.txt -------------------------------------------------------------------------------- /test_corrected/.roo/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/mcp.json -------------------------------------------------------------------------------- /test_corrected/.roo/mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/mcp.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-architect/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-architect/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-ask/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-ask/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-code/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-code/apply_diff_guidelines.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-code/code_editing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-code/code_editing.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-code/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-code/file_operations_guidelines.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-code/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-code/insert_content.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-code/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-code/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-code/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-code/search_replace.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-code/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-code/tool_guidelines_index.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-debug/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-debug/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-devops/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-devops/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-docs-writer/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-docs-writer/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-integration/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-integration/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-mcp/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-mcp/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-post-deployment-monitoring-mode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-post-deployment-monitoring-mode/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-refinement-optimization-mode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-refinement-optimization-mode/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-security-review/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-security-review/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-sparc/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-sparc/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-spec-pseudocode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-spec-pseudocode/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-supabase-admin/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-supabase-admin/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-tdd/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-tdd/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules-tutorial/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules-tutorial/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules/apply_diff_guidelines.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules/file_operations_guidelines.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules/insert_content.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules/rules.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules/search_replace.md -------------------------------------------------------------------------------- /test_corrected/.roo/rules/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roo/rules/tool_guidelines_index.md -------------------------------------------------------------------------------- /test_corrected/.roomodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/.roomodes -------------------------------------------------------------------------------- /test_corrected/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/CLAUDE.md -------------------------------------------------------------------------------- /test_corrected/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/README.md -------------------------------------------------------------------------------- /test_corrected/architecture/component-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/architecture/component-diagram.md -------------------------------------------------------------------------------- /test_corrected/architecture/data-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/architecture/data-flow.md -------------------------------------------------------------------------------- /test_corrected/architecture/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/architecture/deployment.md -------------------------------------------------------------------------------- /test_corrected/architecture/system-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/architecture/system-architecture.md -------------------------------------------------------------------------------- /test_corrected/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/README.md -------------------------------------------------------------------------------- /test_corrected/deployment/ci-cd/github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/ci-cd/github-actions.yml -------------------------------------------------------------------------------- /test_corrected/deployment/configs/development/local.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/configs/development/local.env -------------------------------------------------------------------------------- /test_corrected/deployment/configs/production/secrets-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/configs/production/secrets-template.yml -------------------------------------------------------------------------------- /test_corrected/deployment/docker/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/docker/.env.example -------------------------------------------------------------------------------- /test_corrected/deployment/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/docker/Dockerfile -------------------------------------------------------------------------------- /test_corrected/deployment/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/docker/docker-compose.yml -------------------------------------------------------------------------------- /test_corrected/deployment/kubernetes/base/configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/kubernetes/base/configmap.yml -------------------------------------------------------------------------------- /test_corrected/deployment/kubernetes/base/namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/kubernetes/base/namespace.yml -------------------------------------------------------------------------------- /test_corrected/deployment/kubernetes/environments/production/ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/kubernetes/environments/production/ingress.yml -------------------------------------------------------------------------------- /test_corrected/deployment/kubernetes/environments/staging/ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/kubernetes/environments/staging/ingress.yml -------------------------------------------------------------------------------- /test_corrected/deployment/kubernetes/services/api-gateway.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/kubernetes/services/api-gateway.yml -------------------------------------------------------------------------------- /test_corrected/deployment/kubernetes/services/auth-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/kubernetes/services/auth-service.yml -------------------------------------------------------------------------------- /test_corrected/deployment/kubernetes/services/user-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/kubernetes/services/user-service.yml -------------------------------------------------------------------------------- /test_corrected/deployment/monitoring/alerting-rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/monitoring/alerting-rules.yml -------------------------------------------------------------------------------- /test_corrected/deployment/monitoring/grafana-dashboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/monitoring/grafana-dashboards.json -------------------------------------------------------------------------------- /test_corrected/deployment/monitoring/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/monitoring/prometheus.yml -------------------------------------------------------------------------------- /test_corrected/deployment/scripts/database-migrations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/scripts/database-migrations.sql -------------------------------------------------------------------------------- /test_corrected/deployment/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/deployment/scripts/deploy.sh -------------------------------------------------------------------------------- /test_corrected/docs/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/docs/interfaces.md -------------------------------------------------------------------------------- /test_corrected/docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/docs/requirements.md -------------------------------------------------------------------------------- /test_corrected/docs/specifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/docs/specifications.md -------------------------------------------------------------------------------- /test_corrected/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/package.json -------------------------------------------------------------------------------- /test_corrected/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/app.js -------------------------------------------------------------------------------- /test_corrected/src/application/services/UserService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/application/services/UserService.js -------------------------------------------------------------------------------- /test_corrected/src/domain/user/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/domain/user/User.js -------------------------------------------------------------------------------- /test_corrected/src/infrastructure/external/AuditLogService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/infrastructure/external/AuditLogService.js -------------------------------------------------------------------------------- /test_corrected/src/infrastructure/external/EmailService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/infrastructure/external/EmailService.js -------------------------------------------------------------------------------- /test_corrected/src/infrastructure/repositories/UserRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/infrastructure/repositories/UserRepository.js -------------------------------------------------------------------------------- /test_corrected/src/presentation/controllers/UserController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/presentation/controllers/UserController.js -------------------------------------------------------------------------------- /test_corrected/src/presentation/middleware/authMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/presentation/middleware/authMiddleware.js -------------------------------------------------------------------------------- /test_corrected/src/presentation/routes/userRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/presentation/routes/userRoutes.js -------------------------------------------------------------------------------- /test_corrected/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/server.js -------------------------------------------------------------------------------- /test_corrected/src/shared/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/shared/config/index.js -------------------------------------------------------------------------------- /test_corrected/src/shared/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/shared/errors/index.js -------------------------------------------------------------------------------- /test_corrected/src/shared/logger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/shared/logger/index.js -------------------------------------------------------------------------------- /test_corrected/src/shared/utils/hashingService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/src/shared/utils/hashingService.js -------------------------------------------------------------------------------- /test_corrected/tests/fixtures/builders/userBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/tests/fixtures/builders/userBuilder.js -------------------------------------------------------------------------------- /test_corrected/tests/mock-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/tests/mock-patterns.md -------------------------------------------------------------------------------- /test_corrected/tests/mocks/factories/userRepositoryMockFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/tests/mocks/factories/userRepositoryMockFactory.js -------------------------------------------------------------------------------- /test_corrected/tests/sample-tests/controllers/userController.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/tests/sample-tests/controllers/userController.test.js -------------------------------------------------------------------------------- /test_corrected/tests/sample-tests/services/userService.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/tests/sample-tests/services/userService.test.js -------------------------------------------------------------------------------- /test_corrected/tests/setup/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/tests/setup/jest.setup.js -------------------------------------------------------------------------------- /test_corrected/tests/test-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/tests/test-config.js -------------------------------------------------------------------------------- /test_corrected/tests/test-framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/tests/test-framework.md -------------------------------------------------------------------------------- /test_corrected/tests/utils/customMatchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_corrected/tests/utils/customMatchers.js -------------------------------------------------------------------------------- /test_project/.claude-flow/metrics/agent-metrics.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test_project/.claude-flow/metrics/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.claude-flow/metrics/performance.json -------------------------------------------------------------------------------- /test_project/.claude-flow/metrics/task-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.claude-flow/metrics/task-metrics.json -------------------------------------------------------------------------------- /test_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.gitignore -------------------------------------------------------------------------------- /test_project/.roo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/README.md -------------------------------------------------------------------------------- /test_project/.roo/mcp-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/mcp-list.txt -------------------------------------------------------------------------------- /test_project/.roo/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/mcp.json -------------------------------------------------------------------------------- /test_project/.roo/mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/mcp.md -------------------------------------------------------------------------------- /test_project/.roo/rules-architect/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-architect/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-ask/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-ask/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-code/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-code/apply_diff_guidelines.md -------------------------------------------------------------------------------- /test_project/.roo/rules-code/code_editing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-code/code_editing.md -------------------------------------------------------------------------------- /test_project/.roo/rules-code/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-code/file_operations_guidelines.md -------------------------------------------------------------------------------- /test_project/.roo/rules-code/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-code/insert_content.md -------------------------------------------------------------------------------- /test_project/.roo/rules-code/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-code/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-code/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-code/search_replace.md -------------------------------------------------------------------------------- /test_project/.roo/rules-code/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-code/tool_guidelines_index.md -------------------------------------------------------------------------------- /test_project/.roo/rules-debug/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-debug/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-devops/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-devops/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-docs-writer/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-docs-writer/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-integration/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-integration/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-mcp/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-mcp/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-post-deployment-monitoring-mode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-post-deployment-monitoring-mode/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-refinement-optimization-mode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-refinement-optimization-mode/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-security-review/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-security-review/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-sparc/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-sparc/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-spec-pseudocode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-spec-pseudocode/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-supabase-admin/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-supabase-admin/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-tdd/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-tdd/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules-tutorial/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules-tutorial/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules/apply_diff_guidelines.md -------------------------------------------------------------------------------- /test_project/.roo/rules/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules/file_operations_guidelines.md -------------------------------------------------------------------------------- /test_project/.roo/rules/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules/insert_content.md -------------------------------------------------------------------------------- /test_project/.roo/rules/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules/rules.md -------------------------------------------------------------------------------- /test_project/.roo/rules/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules/search_replace.md -------------------------------------------------------------------------------- /test_project/.roo/rules/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roo/rules/tool_guidelines_index.md -------------------------------------------------------------------------------- /test_project/.roomodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/.roomodes -------------------------------------------------------------------------------- /test_project/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancyJGLisboa/claude-flow-tutorial-suite/HEAD/test_project/CLAUDE.md --------------------------------------------------------------------------------