├── .clinerules ├── rules-code │ └── 👨‍💻_code_guidelines.md ├── rules │ └── 🧭_general_guidelines.md ├── tests │ └── 🧪_testing_guidelines.md ├── ⚙️_techContext.md ├── 🏃_current-sprint.md ├── 🏗️_systemPatterns.md ├── 💻_01-coding.md ├── 📊_progress.md ├── 📋_projectbrief.md ├── 📖_README.md ├── 📚_02-documentation.md ├── 🔄_activeContext.md ├── 🔍_productContext.md └── 🧠_memory-bank.md ├── .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 ├── LICENSE ├── README.md ├── __tests__ ├── README.md ├── integration │ ├── create-sparc.test.js │ ├── mcp-wizard-cli.test.js │ ├── mcp-wizard-workflow.test.js │ ├── mcp-wizard.test.js │ └── mock-registry-wizard.test.js ├── setup.js ├── unit │ ├── aigi-command.test.js │ ├── cli-commands.test.js │ ├── cli.test.js │ ├── config-manager.test.js │ ├── file-manager-enhanced.test.js │ ├── file-manager.test.js │ ├── index.test.js │ ├── mcp-security-module.test.js │ ├── mcp-security.test.js │ ├── mcp-wizard-cli-options.test.js │ ├── mcp-wizard-cli.test.js │ ├── mcp-wizard.test.js │ ├── mock-registry-client.test.js │ ├── project-generator.test.js │ ├── registry-client.test.js │ ├── symlink-manager.test.js │ └── wizard-core.test.js └── utils │ ├── mock-registry.js │ └── test-utils.js ├── aiGI ├── .roo │ ├── README.md │ ├── code │ │ └── code.md │ ├── critic │ │ └── critic.md │ ├── final-assembly │ │ └── final-assembly.md │ ├── mcp │ │ └── mcp.md │ ├── memory-manager │ │ └── memory-manager.md │ ├── orchestrator │ │ └── orchestrator.md │ ├── prompt-generator │ │ └── prompt-generator.md │ ├── reflection │ │ └── reflection.md │ ├── rules │ │ ├── apply_diff_guidelines.md │ │ ├── file_operations_guidelines.md │ │ ├── insert_content.md │ │ ├── rules.md │ │ ├── search_replace.md │ │ ├── tdd_guidelines.md │ │ └── tool_guidelines_index.md │ ├── scorer │ │ └── scorer.md │ ├── tdd │ │ └── tdd.md │ └── tutorial │ │ └── tutorial.md ├── .roomodes ├── aigi.md └── plans │ ├── aiGI.md │ └── research.md ├── audit-security.js ├── bin └── index.js ├── clinerules-bank ├── README.md ├── clients │ ├── client-a.md │ └── client-b.md ├── docs │ └── folder-system-guide.md ├── frameworks │ ├── react.md │ └── vue.md ├── manage-rules.sh ├── orchestration │ ├── architect-role.md │ ├── auto-coder-role.md │ ├── debugger-role.md │ ├── deployment-monitor-role.md │ ├── docs-writer-role.md │ ├── mcp-integration-role.md │ ├── optimizer-role.md │ ├── security-reviewer-role.md │ ├── sparc-methodology.md │ ├── specification-writer-role.md │ ├── system-integrator-role.md │ └── tdd-role.md └── project-types │ ├── api-service.md │ └── frontend-app.md ├── examples ├── file-manager-demo.js ├── mcp-wizard-demo.js └── mock-registry-demo.js ├── jest.config.js ├── package.json ├── plans ├── README.md ├── data-flow.md ├── error-handling.md ├── extension-points.md ├── file-structure.md ├── mcp-registry-api-spec.md ├── mcp-roomode-templates.md ├── mcp-wizard-architecture.md ├── mcp-wizard-implementation-roadmap.md ├── mcp-wizard.md ├── phases │ ├── 1-specification.md │ ├── 2-pseudocode.md │ ├── 3-architecture.md │ ├── 4-refinement.md │ └── 5-completion.md └── system-component-diagram.md ├── src ├── cli │ ├── commands │ │ ├── add.js │ │ ├── aigi.js │ │ ├── configure-mcp.js │ │ ├── help.js │ │ ├── help │ │ │ ├── aigi.md │ │ │ ├── init.md │ │ │ ├── minimal.md │ │ │ └── wizard.md │ │ ├── init.js │ │ ├── minimal.js │ │ └── wizard.js │ └── index.js ├── core │ ├── config-manager │ │ ├── index.js │ │ └── schema.js │ ├── file-manager │ │ ├── README.md │ │ ├── index.js │ │ └── symlink.js │ ├── mcp-wizard │ │ ├── CLI-README.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── config-generator │ │ │ ├── index.js │ │ │ ├── schema.js │ │ │ └── templates.js │ │ ├── examples │ │ │ ├── mcp.json.example │ │ │ └── roomodes.example │ │ ├── index.js │ │ ├── security.js │ │ ├── validation.js │ │ └── wizard-core.js │ ├── project-generator │ │ └── index.js │ └── registry-client │ │ ├── README-mock.md │ │ ├── README.md │ │ ├── index.js │ │ ├── mock-registry-client.js │ │ ├── models.js │ │ ├── registry-client.js │ │ └── registry-error.js ├── index.js └── utils │ └── index.js ├── templates └── minimal-roo │ ├── .roo │ ├── README.md │ ├── mcp.json │ ├── rules-code │ │ └── code_guidelines.md │ └── rules │ │ ├── general_guidelines.md │ │ ├── orchestration_template.md │ │ └── tool_usage_guidelines.md │ ├── .roomodes │ └── README.md └── tests ├── integration ├── index.js └── index.ts └── unit ├── index.js └── index.ts /.clinerules/rules-code/👨‍💻_code_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/rules-code/👨‍💻_code_guidelines.md -------------------------------------------------------------------------------- /.clinerules/rules/🧭_general_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/rules/🧭_general_guidelines.md -------------------------------------------------------------------------------- /.clinerules/tests/🧪_testing_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/tests/🧪_testing_guidelines.md -------------------------------------------------------------------------------- /.clinerules/⚙️_techContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/⚙️_techContext.md -------------------------------------------------------------------------------- /.clinerules/🏃_current-sprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/🏃_current-sprint.md -------------------------------------------------------------------------------- /.clinerules/🏗️_systemPatterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/🏗️_systemPatterns.md -------------------------------------------------------------------------------- /.clinerules/💻_01-coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/💻_01-coding.md -------------------------------------------------------------------------------- /.clinerules/📊_progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/📊_progress.md -------------------------------------------------------------------------------- /.clinerules/📋_projectbrief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/📋_projectbrief.md -------------------------------------------------------------------------------- /.clinerules/📖_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/📖_README.md -------------------------------------------------------------------------------- /.clinerules/📚_02-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/📚_02-documentation.md -------------------------------------------------------------------------------- /.clinerules/🔄_activeContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/🔄_activeContext.md -------------------------------------------------------------------------------- /.clinerules/🔍_productContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/🔍_productContext.md -------------------------------------------------------------------------------- /.clinerules/🧠_memory-bank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.clinerules/🧠_memory-bank.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /.roo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/README.md -------------------------------------------------------------------------------- /.roo/mcp-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/mcp-list.txt -------------------------------------------------------------------------------- /.roo/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/mcp.json -------------------------------------------------------------------------------- /.roo/mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/mcp.md -------------------------------------------------------------------------------- /.roo/rules-architect/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-architect/rules.md -------------------------------------------------------------------------------- /.roo/rules-ask/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-ask/rules.md -------------------------------------------------------------------------------- /.roo/rules-code/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-code/apply_diff_guidelines.md -------------------------------------------------------------------------------- /.roo/rules-code/code_editing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-code/code_editing.md -------------------------------------------------------------------------------- /.roo/rules-code/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-code/file_operations_guidelines.md -------------------------------------------------------------------------------- /.roo/rules-code/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-code/insert_content.md -------------------------------------------------------------------------------- /.roo/rules-code/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-code/rules.md -------------------------------------------------------------------------------- /.roo/rules-code/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-code/search_replace.md -------------------------------------------------------------------------------- /.roo/rules-code/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-code/tool_guidelines_index.md -------------------------------------------------------------------------------- /.roo/rules-debug/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-debug/rules.md -------------------------------------------------------------------------------- /.roo/rules-devops/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-devops/rules.md -------------------------------------------------------------------------------- /.roo/rules-docs-writer/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-docs-writer/rules.md -------------------------------------------------------------------------------- /.roo/rules-integration/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-integration/rules.md -------------------------------------------------------------------------------- /.roo/rules-mcp/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-mcp/rules.md -------------------------------------------------------------------------------- /.roo/rules-post-deployment-monitoring-mode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-post-deployment-monitoring-mode/rules.md -------------------------------------------------------------------------------- /.roo/rules-refinement-optimization-mode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-refinement-optimization-mode/rules.md -------------------------------------------------------------------------------- /.roo/rules-security-review/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-security-review/rules.md -------------------------------------------------------------------------------- /.roo/rules-sparc/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-sparc/rules.md -------------------------------------------------------------------------------- /.roo/rules-spec-pseudocode/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-spec-pseudocode/rules.md -------------------------------------------------------------------------------- /.roo/rules-supabase-admin/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-supabase-admin/rules.md -------------------------------------------------------------------------------- /.roo/rules-tdd/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-tdd/rules.md -------------------------------------------------------------------------------- /.roo/rules-tutorial/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules-tutorial/rules.md -------------------------------------------------------------------------------- /.roo/rules/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules/apply_diff_guidelines.md -------------------------------------------------------------------------------- /.roo/rules/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules/file_operations_guidelines.md -------------------------------------------------------------------------------- /.roo/rules/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules/insert_content.md -------------------------------------------------------------------------------- /.roo/rules/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules/rules.md -------------------------------------------------------------------------------- /.roo/rules/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules/search_replace.md -------------------------------------------------------------------------------- /.roo/rules/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roo/rules/tool_guidelines_index.md -------------------------------------------------------------------------------- /.roomodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/.roomodes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/README.md -------------------------------------------------------------------------------- /__tests__/integration/create-sparc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/integration/create-sparc.test.js -------------------------------------------------------------------------------- /__tests__/integration/mcp-wizard-cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/integration/mcp-wizard-cli.test.js -------------------------------------------------------------------------------- /__tests__/integration/mcp-wizard-workflow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/integration/mcp-wizard-workflow.test.js -------------------------------------------------------------------------------- /__tests__/integration/mcp-wizard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/integration/mcp-wizard.test.js -------------------------------------------------------------------------------- /__tests__/integration/mock-registry-wizard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/integration/mock-registry-wizard.test.js -------------------------------------------------------------------------------- /__tests__/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/setup.js -------------------------------------------------------------------------------- /__tests__/unit/aigi-command.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/aigi-command.test.js -------------------------------------------------------------------------------- /__tests__/unit/cli-commands.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/cli-commands.test.js -------------------------------------------------------------------------------- /__tests__/unit/cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/cli.test.js -------------------------------------------------------------------------------- /__tests__/unit/config-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/config-manager.test.js -------------------------------------------------------------------------------- /__tests__/unit/file-manager-enhanced.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/file-manager-enhanced.test.js -------------------------------------------------------------------------------- /__tests__/unit/file-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/file-manager.test.js -------------------------------------------------------------------------------- /__tests__/unit/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/index.test.js -------------------------------------------------------------------------------- /__tests__/unit/mcp-security-module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/mcp-security-module.test.js -------------------------------------------------------------------------------- /__tests__/unit/mcp-security.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/mcp-security.test.js -------------------------------------------------------------------------------- /__tests__/unit/mcp-wizard-cli-options.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/mcp-wizard-cli-options.test.js -------------------------------------------------------------------------------- /__tests__/unit/mcp-wizard-cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/mcp-wizard-cli.test.js -------------------------------------------------------------------------------- /__tests__/unit/mcp-wizard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/mcp-wizard.test.js -------------------------------------------------------------------------------- /__tests__/unit/mock-registry-client.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/mock-registry-client.test.js -------------------------------------------------------------------------------- /__tests__/unit/project-generator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/project-generator.test.js -------------------------------------------------------------------------------- /__tests__/unit/registry-client.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/registry-client.test.js -------------------------------------------------------------------------------- /__tests__/unit/symlink-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/symlink-manager.test.js -------------------------------------------------------------------------------- /__tests__/unit/wizard-core.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/unit/wizard-core.test.js -------------------------------------------------------------------------------- /__tests__/utils/mock-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/utils/mock-registry.js -------------------------------------------------------------------------------- /__tests__/utils/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/__tests__/utils/test-utils.js -------------------------------------------------------------------------------- /aiGI/.roo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/README.md -------------------------------------------------------------------------------- /aiGI/.roo/code/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/code/code.md -------------------------------------------------------------------------------- /aiGI/.roo/critic/critic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/critic/critic.md -------------------------------------------------------------------------------- /aiGI/.roo/final-assembly/final-assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/final-assembly/final-assembly.md -------------------------------------------------------------------------------- /aiGI/.roo/mcp/mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/mcp/mcp.md -------------------------------------------------------------------------------- /aiGI/.roo/memory-manager/memory-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/memory-manager/memory-manager.md -------------------------------------------------------------------------------- /aiGI/.roo/orchestrator/orchestrator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/orchestrator/orchestrator.md -------------------------------------------------------------------------------- /aiGI/.roo/prompt-generator/prompt-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/prompt-generator/prompt-generator.md -------------------------------------------------------------------------------- /aiGI/.roo/reflection/reflection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/reflection/reflection.md -------------------------------------------------------------------------------- /aiGI/.roo/rules/apply_diff_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/rules/apply_diff_guidelines.md -------------------------------------------------------------------------------- /aiGI/.roo/rules/file_operations_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/rules/file_operations_guidelines.md -------------------------------------------------------------------------------- /aiGI/.roo/rules/insert_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/rules/insert_content.md -------------------------------------------------------------------------------- /aiGI/.roo/rules/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/rules/rules.md -------------------------------------------------------------------------------- /aiGI/.roo/rules/search_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/rules/search_replace.md -------------------------------------------------------------------------------- /aiGI/.roo/rules/tdd_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/rules/tdd_guidelines.md -------------------------------------------------------------------------------- /aiGI/.roo/rules/tool_guidelines_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/rules/tool_guidelines_index.md -------------------------------------------------------------------------------- /aiGI/.roo/scorer/scorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/scorer/scorer.md -------------------------------------------------------------------------------- /aiGI/.roo/tdd/tdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/tdd/tdd.md -------------------------------------------------------------------------------- /aiGI/.roo/tutorial/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roo/tutorial/tutorial.md -------------------------------------------------------------------------------- /aiGI/.roomodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/.roomodes -------------------------------------------------------------------------------- /aiGI/aigi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/aigi.md -------------------------------------------------------------------------------- /aiGI/plans/aiGI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/plans/aiGI.md -------------------------------------------------------------------------------- /aiGI/plans/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/aiGI/plans/research.md -------------------------------------------------------------------------------- /audit-security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/audit-security.js -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/bin/index.js -------------------------------------------------------------------------------- /clinerules-bank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/README.md -------------------------------------------------------------------------------- /clinerules-bank/clients/client-a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/clients/client-a.md -------------------------------------------------------------------------------- /clinerules-bank/clients/client-b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/clients/client-b.md -------------------------------------------------------------------------------- /clinerules-bank/docs/folder-system-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/docs/folder-system-guide.md -------------------------------------------------------------------------------- /clinerules-bank/frameworks/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/frameworks/react.md -------------------------------------------------------------------------------- /clinerules-bank/frameworks/vue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/frameworks/vue.md -------------------------------------------------------------------------------- /clinerules-bank/manage-rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/manage-rules.sh -------------------------------------------------------------------------------- /clinerules-bank/orchestration/architect-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/architect-role.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/auto-coder-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/auto-coder-role.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/debugger-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/debugger-role.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/deployment-monitor-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/deployment-monitor-role.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/docs-writer-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/docs-writer-role.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/mcp-integration-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/mcp-integration-role.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/optimizer-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/optimizer-role.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/security-reviewer-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/security-reviewer-role.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/sparc-methodology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/sparc-methodology.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/specification-writer-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/specification-writer-role.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/system-integrator-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/system-integrator-role.md -------------------------------------------------------------------------------- /clinerules-bank/orchestration/tdd-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/orchestration/tdd-role.md -------------------------------------------------------------------------------- /clinerules-bank/project-types/api-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/project-types/api-service.md -------------------------------------------------------------------------------- /clinerules-bank/project-types/frontend-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/clinerules-bank/project-types/frontend-app.md -------------------------------------------------------------------------------- /examples/file-manager-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/examples/file-manager-demo.js -------------------------------------------------------------------------------- /examples/mcp-wizard-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/examples/mcp-wizard-demo.js -------------------------------------------------------------------------------- /examples/mock-registry-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/examples/mock-registry-demo.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/package.json -------------------------------------------------------------------------------- /plans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/README.md -------------------------------------------------------------------------------- /plans/data-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/data-flow.md -------------------------------------------------------------------------------- /plans/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/error-handling.md -------------------------------------------------------------------------------- /plans/extension-points.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/extension-points.md -------------------------------------------------------------------------------- /plans/file-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/file-structure.md -------------------------------------------------------------------------------- /plans/mcp-registry-api-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/mcp-registry-api-spec.md -------------------------------------------------------------------------------- /plans/mcp-roomode-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/mcp-roomode-templates.md -------------------------------------------------------------------------------- /plans/mcp-wizard-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/mcp-wizard-architecture.md -------------------------------------------------------------------------------- /plans/mcp-wizard-implementation-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/mcp-wizard-implementation-roadmap.md -------------------------------------------------------------------------------- /plans/mcp-wizard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/mcp-wizard.md -------------------------------------------------------------------------------- /plans/phases/1-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/phases/1-specification.md -------------------------------------------------------------------------------- /plans/phases/2-pseudocode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/phases/2-pseudocode.md -------------------------------------------------------------------------------- /plans/phases/3-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/phases/3-architecture.md -------------------------------------------------------------------------------- /plans/phases/4-refinement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/phases/4-refinement.md -------------------------------------------------------------------------------- /plans/phases/5-completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/phases/5-completion.md -------------------------------------------------------------------------------- /plans/system-component-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/plans/system-component-diagram.md -------------------------------------------------------------------------------- /src/cli/commands/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/add.js -------------------------------------------------------------------------------- /src/cli/commands/aigi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/aigi.js -------------------------------------------------------------------------------- /src/cli/commands/configure-mcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/configure-mcp.js -------------------------------------------------------------------------------- /src/cli/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/help.js -------------------------------------------------------------------------------- /src/cli/commands/help/aigi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/help/aigi.md -------------------------------------------------------------------------------- /src/cli/commands/help/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/help/init.md -------------------------------------------------------------------------------- /src/cli/commands/help/minimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/help/minimal.md -------------------------------------------------------------------------------- /src/cli/commands/help/wizard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/help/wizard.md -------------------------------------------------------------------------------- /src/cli/commands/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/init.js -------------------------------------------------------------------------------- /src/cli/commands/minimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/minimal.js -------------------------------------------------------------------------------- /src/cli/commands/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/commands/wizard.js -------------------------------------------------------------------------------- /src/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/cli/index.js -------------------------------------------------------------------------------- /src/core/config-manager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/config-manager/index.js -------------------------------------------------------------------------------- /src/core/config-manager/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/config-manager/schema.js -------------------------------------------------------------------------------- /src/core/file-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/file-manager/README.md -------------------------------------------------------------------------------- /src/core/file-manager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/file-manager/index.js -------------------------------------------------------------------------------- /src/core/file-manager/symlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/file-manager/symlink.js -------------------------------------------------------------------------------- /src/core/mcp-wizard/CLI-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/CLI-README.md -------------------------------------------------------------------------------- /src/core/mcp-wizard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/README.md -------------------------------------------------------------------------------- /src/core/mcp-wizard/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/SECURITY.md -------------------------------------------------------------------------------- /src/core/mcp-wizard/config-generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/config-generator/index.js -------------------------------------------------------------------------------- /src/core/mcp-wizard/config-generator/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/config-generator/schema.js -------------------------------------------------------------------------------- /src/core/mcp-wizard/config-generator/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/config-generator/templates.js -------------------------------------------------------------------------------- /src/core/mcp-wizard/examples/mcp.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/examples/mcp.json.example -------------------------------------------------------------------------------- /src/core/mcp-wizard/examples/roomodes.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/examples/roomodes.example -------------------------------------------------------------------------------- /src/core/mcp-wizard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/index.js -------------------------------------------------------------------------------- /src/core/mcp-wizard/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/security.js -------------------------------------------------------------------------------- /src/core/mcp-wizard/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/validation.js -------------------------------------------------------------------------------- /src/core/mcp-wizard/wizard-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/mcp-wizard/wizard-core.js -------------------------------------------------------------------------------- /src/core/project-generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/project-generator/index.js -------------------------------------------------------------------------------- /src/core/registry-client/README-mock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/registry-client/README-mock.md -------------------------------------------------------------------------------- /src/core/registry-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/registry-client/README.md -------------------------------------------------------------------------------- /src/core/registry-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/registry-client/index.js -------------------------------------------------------------------------------- /src/core/registry-client/mock-registry-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/registry-client/mock-registry-client.js -------------------------------------------------------------------------------- /src/core/registry-client/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/registry-client/models.js -------------------------------------------------------------------------------- /src/core/registry-client/registry-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/registry-client/registry-client.js -------------------------------------------------------------------------------- /src/core/registry-client/registry-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/core/registry-client/registry-error.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /templates/minimal-roo/.roo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/templates/minimal-roo/.roo/README.md -------------------------------------------------------------------------------- /templates/minimal-roo/.roo/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/templates/minimal-roo/.roo/mcp.json -------------------------------------------------------------------------------- /templates/minimal-roo/.roo/rules-code/code_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/templates/minimal-roo/.roo/rules-code/code_guidelines.md -------------------------------------------------------------------------------- /templates/minimal-roo/.roo/rules/general_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/templates/minimal-roo/.roo/rules/general_guidelines.md -------------------------------------------------------------------------------- /templates/minimal-roo/.roo/rules/orchestration_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/templates/minimal-roo/.roo/rules/orchestration_template.md -------------------------------------------------------------------------------- /templates/minimal-roo/.roo/rules/tool_usage_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/templates/minimal-roo/.roo/rules/tool_usage_guidelines.md -------------------------------------------------------------------------------- /templates/minimal-roo/.roomodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/templates/minimal-roo/.roomodes -------------------------------------------------------------------------------- /templates/minimal-roo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/rUv-dev/HEAD/templates/minimal-roo/README.md -------------------------------------------------------------------------------- /tests/integration/index.js: -------------------------------------------------------------------------------- 1 | // Integration test index file 2 | module.exports = {}; -------------------------------------------------------------------------------- /tests/integration/index.ts: -------------------------------------------------------------------------------- 1 | // Integration test index file 2 | export {}; -------------------------------------------------------------------------------- /tests/unit/index.js: -------------------------------------------------------------------------------- 1 | // Unit test index file 2 | module.exports = {}; -------------------------------------------------------------------------------- /tests/unit/index.ts: -------------------------------------------------------------------------------- 1 | // Unit test index file 2 | export {}; --------------------------------------------------------------------------------