├── .cursor └── rules │ ├── 00-architecture │ ├── 0-clean-architecture.mdc │ └── 0-feature-based-architecture.mdc │ ├── 01-standards │ ├── 1-clean-code-frontend.mdc │ ├── 1-clean-code.mdc │ ├── 1-naming-conventions.mdc │ ├── 1-psr-12-conventions.mdc │ └── 1-psr-4-conventions.mdc │ ├── 02-programming-languages │ ├── 2-python-naming-conventions.mdc │ ├── 2-python.mdc │ ├── 2-typescript-naming-conventions.mdc │ └── 2-typescript.mdc │ ├── 03-frameworks-and-libraries │ ├── 3-mobx@6.mdc │ ├── 3-nestjs.mdc │ ├── 3-react-router@7.5-server-data-loading.mdc │ ├── 3-react.mdc │ ├── 3-symfony@7-best-practices.mdc │ └── 3-tailwind@4.1.mdc │ ├── 04-tools-and-configurations │ ├── .gitkeep │ └── 4-package-installation.mdc │ ├── 05-workflows-and-processes │ ├── .gitkeep │ └── 5-bug-finder.mdc │ ├── 06-templates-and-models │ └── .gitkeep │ ├── 07-quality-assurance │ ├── .gitkeep │ ├── 7-testing-backend.mdc │ ├── 7-testing-frontend.mdc │ ├── 7-testing-standards.mdc │ ├── 7-tests-integration.mdc │ └── 7-tests-units.mdc │ ├── 08-domain-specific-rules │ └── .gitkeep │ ├── 09-other │ └── .gitkeep │ └── meta-generator.mdc ├── .cursorindexignore ├── .env.example ├── .github └── pull_request_template.md ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── README.md ├── biome.json ├── docs └── images │ ├── cursor-rules-live-hidden.png │ └── presentation-video.png ├── lefthook.yml ├── memory-bank ├── activeContext.md ├── productContext.md ├── progress.md ├── projectbrief.md ├── systemPatterns.md └── techContext.md ├── meta-rules ├── meta-compress.mdc └── semantic-language.yaml └── vscode └── ai-driven-dev-rules ├── .vscode-test.mjs ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── ai-driven-dev-rules-0.0.3.vsix ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── src ├── api │ ├── github.ts │ └── types.ts ├── commands │ └── index.ts ├── extension.ts ├── services │ ├── download.ts │ ├── explorerStateService.ts │ ├── httpClient.ts │ ├── logger.ts │ ├── rateLimitManager.ts │ ├── selection.ts │ ├── statusBarService.ts │ ├── storage.ts │ └── updateCheckService.ts ├── utils │ ├── githubApiResponseHandler.ts │ └── githubUtils.ts └── views │ ├── explorer │ ├── explorerView.ts │ ├── treeItem.ts │ ├── treeItemFactory.ts │ └── treeProvider.ts │ └── welcome │ ├── getStarted.ts │ └── welcomeView.ts ├── tsconfig.json └── vsc-extension-quickstart.md /.cursor/rules/00-architecture/0-clean-architecture.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/00-architecture/0-clean-architecture.mdc -------------------------------------------------------------------------------- /.cursor/rules/00-architecture/0-feature-based-architecture.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/00-architecture/0-feature-based-architecture.mdc -------------------------------------------------------------------------------- /.cursor/rules/01-standards/1-clean-code-frontend.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/01-standards/1-clean-code-frontend.mdc -------------------------------------------------------------------------------- /.cursor/rules/01-standards/1-clean-code.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/01-standards/1-clean-code.mdc -------------------------------------------------------------------------------- /.cursor/rules/01-standards/1-naming-conventions.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/01-standards/1-naming-conventions.mdc -------------------------------------------------------------------------------- /.cursor/rules/01-standards/1-psr-12-conventions.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/01-standards/1-psr-12-conventions.mdc -------------------------------------------------------------------------------- /.cursor/rules/01-standards/1-psr-4-conventions.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/01-standards/1-psr-4-conventions.mdc -------------------------------------------------------------------------------- /.cursor/rules/02-programming-languages/2-python-naming-conventions.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/02-programming-languages/2-python-naming-conventions.mdc -------------------------------------------------------------------------------- /.cursor/rules/02-programming-languages/2-python.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/02-programming-languages/2-python.mdc -------------------------------------------------------------------------------- /.cursor/rules/02-programming-languages/2-typescript-naming-conventions.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/02-programming-languages/2-typescript-naming-conventions.mdc -------------------------------------------------------------------------------- /.cursor/rules/02-programming-languages/2-typescript.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/02-programming-languages/2-typescript.mdc -------------------------------------------------------------------------------- /.cursor/rules/03-frameworks-and-libraries/3-mobx@6.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/03-frameworks-and-libraries/3-mobx@6.mdc -------------------------------------------------------------------------------- /.cursor/rules/03-frameworks-and-libraries/3-nestjs.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/03-frameworks-and-libraries/3-nestjs.mdc -------------------------------------------------------------------------------- /.cursor/rules/03-frameworks-and-libraries/3-react-router@7.5-server-data-loading.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/03-frameworks-and-libraries/3-react-router@7.5-server-data-loading.mdc -------------------------------------------------------------------------------- /.cursor/rules/03-frameworks-and-libraries/3-react.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/03-frameworks-and-libraries/3-react.mdc -------------------------------------------------------------------------------- /.cursor/rules/03-frameworks-and-libraries/3-symfony@7-best-practices.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/03-frameworks-and-libraries/3-symfony@7-best-practices.mdc -------------------------------------------------------------------------------- /.cursor/rules/03-frameworks-and-libraries/3-tailwind@4.1.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/03-frameworks-and-libraries/3-tailwind@4.1.mdc -------------------------------------------------------------------------------- /.cursor/rules/04-tools-and-configurations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.cursor/rules/04-tools-and-configurations/4-package-installation.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/04-tools-and-configurations/4-package-installation.mdc -------------------------------------------------------------------------------- /.cursor/rules/05-workflows-and-processes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.cursor/rules/05-workflows-and-processes/5-bug-finder.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/05-workflows-and-processes/5-bug-finder.mdc -------------------------------------------------------------------------------- /.cursor/rules/06-templates-and-models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.cursor/rules/07-quality-assurance/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.cursor/rules/07-quality-assurance/7-testing-backend.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/07-quality-assurance/7-testing-backend.mdc -------------------------------------------------------------------------------- /.cursor/rules/07-quality-assurance/7-testing-frontend.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/07-quality-assurance/7-testing-frontend.mdc -------------------------------------------------------------------------------- /.cursor/rules/07-quality-assurance/7-testing-standards.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/07-quality-assurance/7-testing-standards.mdc -------------------------------------------------------------------------------- /.cursor/rules/07-quality-assurance/7-tests-integration.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/07-quality-assurance/7-tests-integration.mdc -------------------------------------------------------------------------------- /.cursor/rules/07-quality-assurance/7-tests-units.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/07-quality-assurance/7-tests-units.mdc -------------------------------------------------------------------------------- /.cursor/rules/08-domain-specific-rules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.cursor/rules/09-other/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.cursor/rules/meta-generator.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.cursor/rules/meta-generator.mdc -------------------------------------------------------------------------------- /.cursorindexignore: -------------------------------------------------------------------------------- 1 | meta-rules/ 2 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.env.example -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/biome.json -------------------------------------------------------------------------------- /docs/images/cursor-rules-live-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/docs/images/cursor-rules-live-hidden.png -------------------------------------------------------------------------------- /docs/images/presentation-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/docs/images/presentation-video.png -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/lefthook.yml -------------------------------------------------------------------------------- /memory-bank/activeContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/memory-bank/activeContext.md -------------------------------------------------------------------------------- /memory-bank/productContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/memory-bank/productContext.md -------------------------------------------------------------------------------- /memory-bank/progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/memory-bank/progress.md -------------------------------------------------------------------------------- /memory-bank/projectbrief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/memory-bank/projectbrief.md -------------------------------------------------------------------------------- /memory-bank/systemPatterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/memory-bank/systemPatterns.md -------------------------------------------------------------------------------- /memory-bank/techContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/memory-bank/techContext.md -------------------------------------------------------------------------------- /meta-rules/meta-compress.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/meta-rules/meta-compress.mdc -------------------------------------------------------------------------------- /meta-rules/semantic-language.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/meta-rules/semantic-language.yaml -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/.vscode-test.mjs -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/.vscode/extensions.json -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/.vscode/launch.json -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/.vscode/settings.json -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/.vscode/tasks.json -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/.vscodeignore -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/CHANGELOG.md -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/LICENSE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/README.md -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/ai-driven-dev-rules-0.0.3.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/ai-driven-dev-rules-0.0.3.vsix -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/eslint.config.mjs -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/package-lock.json -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/package.json -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/pnpm-lock.yaml -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/api/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/api/github.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/api/types.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/commands/index.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/extension.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/services/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/services/download.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/services/explorerStateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/services/explorerStateService.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/services/httpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/services/httpClient.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/services/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/services/logger.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/services/rateLimitManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/services/rateLimitManager.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/services/selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/services/selection.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/services/statusBarService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/services/statusBarService.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/services/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/services/storage.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/services/updateCheckService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/services/updateCheckService.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/utils/githubApiResponseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/utils/githubApiResponseHandler.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/utils/githubUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/utils/githubUtils.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/views/explorer/explorerView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/views/explorer/explorerView.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/views/explorer/treeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/views/explorer/treeItem.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/views/explorer/treeItemFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/views/explorer/treeItemFactory.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/views/explorer/treeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/views/explorer/treeProvider.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/views/welcome/getStarted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/views/welcome/getStarted.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/src/views/welcome/welcomeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/src/views/welcome/welcomeView.ts -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/tsconfig.json -------------------------------------------------------------------------------- /vscode/ai-driven-dev-rules/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-driven-dev/rules/HEAD/vscode/ai-driven-dev-rules/vsc-extension-quickstart.md --------------------------------------------------------------------------------