▼ Latest
Manifest & lua generator
Free mode
100% free
Freemium
Free Trial
Verified tools
-
2,50020Released 2y agoFree + from $99/mo
Other tools
-
3,87637Released 2y ago100% FreeRustleAug 8, 2023I have used this for several personal assistant applications and it works amazingly. Obviously it is still restricted to the flaws of any model you are using it with, but the ability to constrain prompts is incredibly helpful (especially when it comes to getting things like JSON format from the AI).
-
43714Released 29d agoFree + from $25/mo
-
4,52771v4 released 6mo agoNo pricingA huge disappointment. It fails standard tasks that Sonnet 3.5 completes with no issue. I’ll be skipping this version.
-
6706Released 1y agoFree + from $20/mo
- Sponsor:Rocket.new Vibe Coding
-
2,41821Released 2y ago100% Free
-
1,19420Released 1y agoNo pricing
-
1,59623Released 2y agoNo pricing
-
2661Released 1y agoFrom $19/mo
-
1,78113Released 2y agoFree + from $500/mo
-
27910Released 1y agoFree + from $5.99/mo
-
66322Released 1y ago100% Free
-
1,53033Released 1y agoFree + from $10/mo
- Didn't find the AI you were looking for?
-
1,77326Released 1y agoFree + from $0.1
-
53012Released 1y agoFree + from $20/mo
-
1,00210Released 2y agoNo pricing
-
1,5996Released 2y agoFrom $1
-
1,43715Released 8mo agoNo pricing
-
4,05619Released 2y ago100% Free
-
7,98067Released 2y ago100% FreeI tried two different prompts and did not get an image for either
-
4,13744Released 3y agoFree + from $21/mo
-
1,34035Released 1y agoNo pricing
-
AI-powered manifest and Lua script generation for developers.Open14,7619572,978Released 4mo 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()