├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── LICENSE ├── README.md ├── demo.gif └── demo1.gif /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Kodezi 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | [twitter-shield]: https://img.shields.io/twitter/follow/kodezihq?style=social 3 | [twitter-url]: https://twitter.com/kodezihq 4 | [github-shield]: https://img.shields.io/github/stars/Kodezi/kodezi-extension?style=social 5 | [github-url]: https://github.com/Kodezi/kodezi-extension.git 6 | [vscode-shield]: https://img.shields.io/visual-studio-marketplace/r/kodezi.kodezi?logo=visual-studio-code&style=social 7 | [vscode-url]: https://marketplace.visualstudio.com/items?itemName=kodezi.kodezi 8 | [youtube-shield]: https://img.shields.io/youtube/channel/views/UCrw0CEXixhbouv3GICHhV5w?style=social 9 | [youtube-url]: https://www.youtube.com/UCrw0CEXixhbouv3GICHhV5w 10 | 11 | [discord-shield]: https://dcbadge.vercel.app/api/server/kodezi?style=social 12 | [discord-url]: https://discord.gg/kodezi 13 | 14 | [![Github Repo][github-shield]][github-url] 15 | [![VSCode Plugin][vscode-shield]][vscode-url] 16 | [![Youtube][youtube-shield]][youtube-url] 17 | [![Discord][discord-shield]][discord-url] 18 | [![Twitter Follow][twitter-shield]][twitter-url] 19 | 20 | # Kodezi Extension 21 | 22 | > Kodezi is an AI Dev-tool platform providing tools to maximize programming productivity. Our first product consists of an autocorrect for programmers. 23 | 24 | [![Demo](demo1.gif)](https://www.loom.com/share/69927b250b094e38b73998cc0e12b7a8) 25 | 26 | Kodezi for VS Code uses Large Language Models trained on a Massive Code Dataset to 27 | 28 | * Debug your code automatically 29 | * Optimize your code. 30 | * Convert Code from one programming language to another. 31 | * Generate Documentation for your code. 32 | * Generate Code from Natural Language Instructions. 33 | 34 | We provide State of the art ecosystem for a programmer to 10x productivity to help you achieve milestones faster and to learn new possible solutions to complex problems. 35 | 36 | ## Quick menu: 37 | 38 | **[Getting Started](#getting-started)**
39 | **[Pricing](#pricing)**
40 | **[Features](#features)**
41 | **[Language Support](#language-support)**
42 | **[Docs](#docs)**
43 | **[FAQ](#faq)**
44 | 45 | ## Getting Started 46 | 47 | * **Install the [Kodezi Extension](https://marketplace.visualstudio.com/items?itemName=kodezi.kodezi)**
48 | * **Click through the login pop-up browser option and follow it to Kodezi; we recommend using login with Google to avoid email verification.** 49 | 50 | ## Pricing 51 | 52 | - Our Free Tier offers 50 free credits per month which gives you a taste of what it feels like to work your magic with our tools. Our free tier's credit usage varies per feature. [Learn more](https://docs.kodezi.com/pricing/credits). 53 | 54 | - The Kodezi Pro version, allows users to get 5,000 credits per month, usage for credits is the same across all features. 1 feature used equals 1 credit used. 55 | - We offer tiers to match your usage refer to kodezi.com/pricing to find the one which appeals to you best. 56 | 57 | ## Features 58 | - ### Code Debugging 59 | Will efficiently find bugs and errors in your code for almost all languages and will provide descriptions of the errors and bugs for the most popular languages. [Learn more](https://docs.kodezi.com/feature-guides/debugging) 60 | - ### Code Optimization 61 | Will effortlessly optimize your code, reducing the space time complexity of your code. [Learn more](https://docs.kodezi.com/feature-guides/optimizing) 62 | - ### Code Converting 63 | Will convert your algorithms from one language to another, keeping the flow of your code intact. [Learn more](https://docs.kodezi.com/feature-guides/converting) 64 | - ### Code Documentation 65 | Will generate production level documentation of your code to increase productivity in teams [Learn more](https://docs.kodezi.com/feature-guides/generate-documents) 66 | - ### Code Generation 67 | Will generate Code from your Natural Language Instructions. [Learn more](https://docs.kodezi.com/feature-guides/generate-code) 68 | 69 | ### Language Support 70 | > JavaScript, Java, Ruby, C, Bash, Solidity, Python, Node.js, C++, Scheme, Go, Rust, Clojure, Haskell, Kotlin, Lua, C#, FSharp, Swift, R, Perl, Dart, Erlang, TypeScript, PHP, SQLite, Scala, Nix, Objective-C, CSS3, Sass, HTML, and XML. 71 | 72 | **Learn more about our supported languages for each feature in our [Docs](https://docs.kodezi.com/)!** 73 | ### Docs 74 | - To learn more about Kodezi and internal functionalities access our [Documentation](https://docs.kodezi.com/)! 75 | ## FAQ 76 | - Something not working the way you hoped? Kodezi support is always happy to help. Feel free to contact us anytime at support@kodezi.com 77 | 78 | ## Community 79 | - Join our Community [Discord](https://discord.gg/kodezi) 80 | 81 | --- 82 | 83 | ### More information 84 | 85 | - [Website](https://kodezi.com/) 86 | - [Twitter](https://twitter.com/kodezihq) 87 | - [Youtube](https://www.youtube.com/kodezi) 88 | - [Discord](https://discord.gg/kodezi) 89 | 90 | _Built by the Kodezi team_ 91 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodezi/kodezi-extension/9e2488304dbb60d13a9811abcef43e9cc4bd88bd/demo.gif -------------------------------------------------------------------------------- /demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodezi/kodezi-extension/9e2488304dbb60d13a9811abcef43e9cc4bd88bd/demo1.gif --------------------------------------------------------------------------------