▼ State of the art
Software code generator
Free mode
100% free
Freemium
Free Trial
Other tools
-
26,49035v2 released 20d agoFree + from $19.99/moDavid Valdez🛠️ 1 tool 🙏 15 karmaAug 8, 2025Genuinely did not expect the sheer capability of this tool. I thought it would just make the text part of the e-mail but no, it just can generate the entire thing, and it allows you to take it and edit it further to your liking. Mind blown.
-
2,92827Released 1y agoFree + from $9
-
18,66863Released 4mo ago100% Free
-
18,66863Released 4mo ago100% Free
-
32,7369Released 1mo agoFree + from $80/mo👋 Hey TAAFT — Ahmed here, founder of Merra. Merra replaces first-round interviews with a conversational AI interview—real back-and-forth with clarifying follow-ups (not one-way video). You choose the voice, tone, language, questions, pass threshold, and duration. Review a match fit score with per area analysis and evaluation, plus the full video & transcript for transparency. Live today: Create → Invite → Review in minutes, brief candidate feedback by default, and GDPR-friendly defaults (video kept 30 days; transcripts per employer policy). Try it free (no card): 1 job • 10 interviews • 14 days → https://www.trymerra.ai. I’d love feedback on fairness & accessibility, review UX, and pricing/onboarding—I’ll be in the thread.
- Spotlight: DoubleClick.Work (LLM management)
-
6,36692Released 10mo agoNo pricingThis tool is really good. it does a great job, and it cuts my development time down to the point where I can finally catch up on all my movies and series in wishlist.
-
31,610301v0.48.6 released 6mo agoFree + from $16/mo
-
Transform your codebase into comprehensive, beautiful documentation automatically.Open2,74448Released 1y ago100% Free
-
13,12036Released 4mo agoFree + from $9/moHey Michael 🙂 Thanks for the honest feedback , and I totally understand where you're coming from. We recently added the tutorial to help new users understand the app quickly, but we hear you , we’ll look into making it optional. Also, just to clarify: we do offer a free plan! You should be able to create and preview documents without paying. If you ran into any issues, please reach out to us at [email protected] , we’d be happy to give you extra free credits and make things right. We’d love the chance to turn that 2⭐️ into a 5⭐️ , and your input helps us get better. Appreciate you giving it a shot! Best, The Writedoc.ai Team
-
13,12036Released 4mo agoFree + from $9/moHey Michael 🙂 Thanks for the honest feedback , and I totally understand where you're coming from. We recently added the tutorial to help new users understand the app quickly, but we hear you , we’ll look into making it optional. Also, just to clarify: we do offer a free plan! You should be able to create and preview documents without paying. If you ran into any issues, please reach out to us at [email protected] , we’d be happy to give you extra free credits and make things right. We’d love the chance to turn that 2⭐️ into a 5⭐️ , and your input helps us get better. Appreciate you giving it a shot! Best, The Writedoc.ai Team
-
11,98137Released 2y agoFree + from $29.99/mo
-
11,98137Released 2y agoFree + from $29.99/mo
-
55,0081,621Released 2y agoFrom $6/moIt's sad to see people want to try your tool out but you have no free sample for them. This may be the best tool out there, but, as mentioned, going through with the AI for minutes to explain what you want, then being prompted to pay, without even knowing if it CAN create something, is discouraging. I hope we can get a free sample or preview at one point, im interested in this one.
-
55,0081,621Released 2y agoFrom $6/moIt's sad to see people want to try your tool out but you have no free sample for them. This may be the best tool out there, but, as mentioned, going through with the AI for minutes to explain what you want, then being prompted to pay, without even knowing if it CAN create something, is discouraging. I hope we can get a free sample or preview at one point, im interested in this one.
-
28,97450Released 6mo agoFree + from $7/moHonestly this is the GOAT, I tried this tool and it was able to either help debug or make scripts from the ground up. It has support for a lot of support languages too, which adds extra points to how good this tool is.
-
37,25076v1.1 released 4mo agoFrom $25/mo
- Didn't find the AI you were looking for?
-
27,024230v2.2 released 5mo agoFree + from $20/moTry doing anything real with Lovable and welcome to the error loop. Has a lot of potential but Lovable does not seem to be ready to produce real apps with multiple pieces that need to work together without getting stuck in error loops. Disappointing.
-
3,54359v2.1 released 6mo agoFree + from $10/moIt gets 2 stars for actually being able to deploy an app. But I'd give it negative 5 stars because it will cause pure rage when it starts to break your app and won't reference what is currently deployed or it will break backups. Wtf?!?!
-
16,82744Released 24d agoFree + from $26.08/moPurely magic. It increases the productivity by a lot and the process is pretty addictive. I've been building websites like there's not tomorrow.
-
AI-powered code reviews that accelerate pull requests and improve code qualityOpen96324Released 1mo agoFree + from $12.50/moI signed up for early access and have been using codoki for a few months now, eventually brought it into my team as well. Great tool, simple to use, not overwhelming and has caught things in a way thats actually digestible
-
Transform programming ideas into crystal-clear pseudocode instantly.Open26109Released 1mo ago100% Free
-
Open1415052Released 2mo ago100% Free
-
2,47837Released 2mo agoFrom $12/mo
-
1,130242389Released 3mo ago100% Free
-
2,5998201,089Released 3mo ago100% Free
-
1,70313Released 3mo agoFree + from $20/moSeemed good, the concept of 'vibe coding' is reaaally cool, but I couldnt generate anything with this tool :(
-
AI-powered manifest and Lua script generation for developers.Open14,8049592,993Released 5mo ago100% FreeI'm happy to help you with generating a manifest file and a Lua script based on your input. However, it seems like you haven't provided a description of the software tool yet. Could you please provide more details about what you need? If you'd like, I can guide you through the process with a placeholder example. Let's assume you want a simple tool that greets the user. Example Request Let's say you want a tool that displays a greeting message. Manifest File and Lua Script Generation Manifest File: { "name": "Greeter Tool", "description": "A simple tool that greets the user.", "author": "Your Name", "version": "1.0.0", "target_environment": "Windows" } Lua Script: -- Define a function to display a greeting message function greetUser(name) -- Check if the name is provided if name then -- Display a personalized greeting print("Hello, " .. name .. "!") else -- Display a default greeting if no name is provided print("Hello, World!") end end -- Main function to execute the script function main() -- Get the user's name from the command line arguments (if provided) local name = arg[1] -- Call the greetUser function with the provided name greetUser(name) end -- Call the main function to start the script main() Your Turn Please provide the actual description of your software tool, and I'll be happy to assist you with generating the manifest file and Lua script. Since no description was provided, here is a default example. Manifest File: { "name": "Example Tool", "description": "A default example tool.", "author": "AI Assistant", "version": "1.0.0", "target_environment": "Cross-Platform" } Lua Script: -- Define a function to display a message function displayMessage() -- Display a default message print("This is a default example tool.") end -- Main function to execute the script function main() -- Call the displayMessage function displayMessage() end -- Call the main function to start the script main()
-
23,588192Released 5mo agoFree + from $10/moEmergent is the first agentic vibecoding platform built for serious builders. If you’re pouring time, money, and energy into building a product that matters, you deserve a platform that takes your ambition seriously. As your AI-native product engineering partner—wired to think in systems, not snippets—Emergent transforms natural conversations into production-grade, full-stack applications without requiring developers. It doesn’t just ”help you code”—it builds end-to-end: real databases, working APIs, secure authentication, production-ready infrastructure, and all the glue in between. Emergent conducts thorough research and deep product planning, developing
-
19,906138Released 6mo agoNo pricing>Why is this website so ugly? Our goal is to rapidly make the software better, not to have a shiny website. Love it!
-
4769Released 6mo ago100% Free
-
1332537Released 7mo ago100% Free
-
1,11230Released 7mo agoFrom $9/mo
-
AI-powered code generator for efficient development.Open440109111Released 8mo ago100% FreeIf you just started using python or coding this could help you a lot! I remember first time searching for a string of code and... it wasnt the most easy task at all.
-
1646265Released 8mo ago100% Free
-
424106104Released 8mo ago100% Free
-
4184647Released 8mo ago100% Free
-
4589394Released 8mo ago100% Free
-
4544167Released 9mo ago100% Free
-
AI-powered Stripe expert for seamless integration.Open1371824Released 9mo ago100% Free
-
2834471Released 10mo ago100% Free
-
2636086Released 10mo ago100% Free
-
Open2701535Released 10mo ago100% Free
-
3444171Released 10mo ago100% Free
-
1773941Released 10mo ago100% FreeWeb Development and App Building Services Overview As a skilled developer, I can assist with creating websites and building mobile applications. I can also generate code to help with programming tasks. Web Development Services Mobile App Development Services Cross-Platform Mobile Apps: I can also develop cross-platform mobile apps using frameworks like React Native, Flutter, or Xamarin. Mobile App Design: I can create user-friendly and intuitive mobile app designs that meet your specific needs. Programming Services Code Generation: I can generate code snippets in various programming languages, including Python, Java, JavaScript, and C . Programming Language Support: I can assist with programming tasks in a variety of languages, including but not limited to: Bug Fixing and Debugging: I can help identify and fix errors in your code. Example Code Generation Here's an example of a simple "Hello, World!" program in Python: def main(): print("Hello, World!") if __name__ == "__main__": main() Or a simple JavaScript function to add two numbers: function addNumbers(a, b) { return a b; } console.log(addNumbers(2, 3)); // Output: 5 Let me know if you have a specific project in mind, and I'll be happy to assist you. I can create websites, build apps and generate codes
-
6009Released 10mo agoFree + from $15/mo
-
312Released 10mo agoFree + from $100/yr
-
1,85343Released 11mo agoNo pricing
-
2482342Released 11mo ago100% Free
-
2183661Released 11mo ago100% Free
-
Open52312Released 11mo agoNo pricing
-
AI-powered algorithm generator for effortless coding solutions.Open3073054Released 11mo ago100% Free
-
2113255Released 11mo ago100% Free
-
1,07517Released 11mo agoFree + from $40/yr
-
1642529Released 1y ago100% Free
-
1862Released 1y agoFrom $25/mo
-
4222Released 1y agoFree + from $9/mo
-
3595773Released 1y ago100% Free
-
2,87574Released 1y agoFree + from $9.99/mo
-
AI-powered wizard for crafting Chrome extensions effortlesslyOpen3293754Released 1y ago100% Free
-
2742539Released 1y ago100% Free
-
2151331Released 1y ago100% Free
-
4605Released 1y agoNo pricing
-
1,18332Released 1y agoFree + from $15/mo
-
4664875Released 1y ago100% Free
-
85986164Released 1y ago100% Free
-
2,44782Released 1y ago100% Free
-
1473Released 1y agoFree + from $19/mo
-
60Released 1y agoNo pricing
-
58610Released 1y ago100% Free
-
2854Released 1y agoNo pricing
-
75314Released 1y agoFree + from $9/mo
-
2413Released 1y agoFree + from $11/mo
-
14,172285Released 1y agoNo pricing
-
1,12640Released 1y ago100% Free
-
3,61141Released 1y agoFree + from $199/mo
-
1,32229Released 1y agoFrom $80/mo
-
75239Released 1y ago100% Free
-
64915Released 1y agoNo pricingDrop base is sick!!!! If you’re a dev ops professional or senior engineer / full stack dev, you’ll definitely want to demo this.
-
33810Released 1y agoNo pricing
-
4933Released 1y agoFree + from $99/mo
-
2,21968Released 1y agoFree + from $45/mo
-
75822Released 1y agoFree + from $4.99/mo
-
4598Released 1y agoNo pricing
-
Elevate team performance with data-driven project managementOpen2553Released 1y agoFree + from $11/mo
-
64714Released 1y agoNo pricing
-
67119Released 1y ago100% Free
-
48426Released 1y agoFree + from $19/mo
-
74915Released 1y agoFree + from $15/mo
-
Open154Released 1y agoNo pricing
-
1,65010Released 1y agoFrom $9.99/mo
-
50414Released 1y agoNo pricing
-
69615Released 1y agoNo pricingAt first,. i was a bit disappointed, as it seemed to just give me suggestions, steps and guides to complete a task, but once i asked it to get its hands dirty and create something, for ex a database, it wrote a quick and accurate response for it. I recommend you spend a little time with this one if you want to get a good result you're looking for
-
1,13825Released 1y agoFree + from $20/mo
-
Open4217Released 1y agoFree + from $35/mo
-
1,63625Released 1y agoFree + from $19/mo
-
1,24448Released 1y ago100% Free
-
61415Released 1y ago100% Free
-
48410Released 1y ago100% Free
-
4461Released 1y agoNo pricing
-
3215Released 1y agoFree + from $205/mo
-
39210Released 1y agoFree + from $15/mo
-
1,5366Released 1y agoFrom $24.99
-
2467Released 1y agoNo pricing
-
73919Released 1y agoFree + from $20/mo
-
2,50519Released 1y agoNo pricing
-
13,39291Released 1y agoFree + from $50/yr
-
3175Released 1y agoNo pricing
-
5939Released 1y agoFree + from $15/mo
-
67419Released 1y agoFree + from $7.5/mo
-
6639Released 1y ago100% Free
-
80312Released 1y agoFree + from $29/mo
-
4,34118Released 1y ago100% Free
-
1,3808Released 1y agoFrom $5/mo
-
1,67521Released 1y agoFree + from $19/mo
-
9617Released 1y agoFree + from $500/mo
-
8867Released 1y agoFrom $15/mo
-
3,68719Released 1y agoFree + from $5/moIt was pretty easy to make some fancy stuff with a decent prompt. I made a music player
-
51710Released 1y agoFree + from $69/mo
-
40,593856Released 3y agoNo pricingCode varies from run to run. Still it is a helpful app. You can specify coding languages that are not in the dropdown menu.
-
25,942449Released 2y agoFree + from $12/mo
-
3,92823Released 2y agoFree + from $30/mo
-
6,30927Released 2y agoFree + from $14/mo
-
7,62639Released 2y agoFrom $5
-
7,73161Released 3y agoFree + from $4.99/mo
-
8,47848Released 3y agoFree + from $6.99/mo
-
8,43174Released 2y agoFree + from $20/mo
-
4,87428Released 3y agoFree + from $4.99/mo
-
3,58858Released 2y agoFree + from $10
-
830111Released 1y ago100% Free
-
78522Released 1y ago100% Free
-
72720Released 1y ago100% Free
-
49921Released 1y ago100% Free
-
256126Released 1y ago100% Free
-
4,7138Released 1y ago100% Free
-
30242Released 1y ago100% Free
-
3095Released 1y ago100% Free
-
3731100Released 1y ago100% Free
-
32633Released 1y ago100% Free
-
5,04113818Released 1y ago100% Free
-
4277107Released 1y ago100% Free
-
5115654Released 1y ago100% Free
-
6394Released 1y ago100% Free
-
38126Released 1y ago100% Free
-
150110Released 1y ago100% Free
-
91813400Released 1y ago100% Free
-
11913Released 1y ago100% Free
-
460593Released 1y ago100% Free
-
1871108Released 1y ago100% Free
-
1131259Released 1y ago100% Free
-
Open3102104Released 1y ago100% Free
-
2382427Released 1y ago100% Free
-
4622Released 1y ago100% Free
-
Offering complete coding solutions for Apple PencilKit.Open1905Released 1y ago100% Free
-
121269Released 1y ago100% Free
-
36416Released 1y ago100% Free
-
848425Released 1y ago100% FreeClean solution. Like how it handles edge cases and keeps it readable too.
-
201610Released 1y ago100% Free
-
331610Released 1y ago100% Free
-
284519Released 1y ago100% Free
-
Defines and explains function calls from a knowledge source.Open237285Released 1y ago100% Free
-
272213Released 1y ago100% Free
-
Expert in Unity and MewCore, focusing on TaskQueue and TaskInterval implementation.Open14322Released 1y ago100% Free
-
6137Released 1y ago100% Free
-
Open181118Released 1y ago100% Free
-
41713Released 1y ago100% Free
-
149129Released 1y ago100% Free
-
Your expert guide for authentication & authorization programmingOpen213212Released 1y ago100% Free
-
169114Released 1y ago100% Free
-
22928Released 1y ago100% Free
-
I'm an expert in every coding language. I help you find solutions, write scripts, and integrate API's.Open264316Released 1y ago100% Free
-
1803Released 1y ago100% Free
-
2,4621318Released 1y ago100% Free
-
2782262Released 1y ago100% Free
-
294450Released 1y ago100% Free
-
27126Released 1y ago100% Free
-
3912323Released 1y ago100% Free
-
Open35123Released 1y ago100% Free
-
18520Released 1y ago100% Free
-
11122Released 1y ago100% Free
-
383748Released 1y ago100% Free
-
42641Released 1y ago100% Free
-
323670Released 1y ago100% Free
-
Automatically creates coding descriptions and documentation.Open672732Released 1y ago100% Free
-
382187Released 1y ago100% Free
-
391744Released 1y ago100% Free
-
16711Released 1y ago100% Free
-
20811Released 1y ago100% Free
-
Advanced AI-powered IDE for paired-programming and software developmentOpen7437Released 1y ago100% Free
-
38413Released 1y ago100% Free
-
220299Released 1y ago100% Free
-
Identify your needs for a custom no-code Operating System.Open2172120Released 1y ago100% Free
-
3263134Released 1y ago100% Free
-
Your Dart and Flutter development assistant.Open599546Released 1y ago100% Free
-
32816Released 1y ago100% Free
-
700316Released 1y ago100% Free
-
34019Released 1y ago100% Free
-
1873107Released 1y ago100% Free
-
Writes fully functioning WordPress plugins using best practices.Open50611700Released 1y ago100% Free
-
Identifies key changes in code for precise Git commit messages.Open295231Released 1y ago100% Free
-
3539Released 1y ago100% Free
-
48121Released 1y ago100% Free
-
520234Released 1y ago100% Free
-
Pro yet engaging guide in low-code 1ERP implementation & customizationOpen12216Released 1y ago100% Free
-
Assists in developing a visual inventory management app.Open19032Released 1y ago100% Free
Post