> SUBMIT_A_TOOL
All in AI Pro is open source. Add tools by editing a JSON file and opening a Pull Request.
01 // FORK THE REPO
Clone the repository and set up your local environment.
git clone https://github.com/allinaipro cd allinaipro-static
02 // EDIT tools.json
Open src/data/tools.json and add your entry:
{
"name": "Your Tool Name",
"category": "Coding",
"subcategory": "Code Generation",
"description": "One line description (max 200 chars).",
"url": "https://yourtool.com",
"tags": ["tag1", "tag2"],
"pricing": "Free | Freemium | Paid | Open Source",
"logo_url": "https://... (optional)",
"featured": false
}03 // VALIDATE (NO DUPLICATES)
This checks for duplicate tool names and schema errors. It will fail loudly if anything is wrong.
npm run validate
04 // OPEN A PULL REQUEST
Push to your fork and open a PR. CI will re-run validation automatically.
// CONTRIBUTION RULES
- — Tool name must be unique (enforced by validator)
- — No affiliate links
- — Description max 200 characters
- — pricing must be exactly: Free, Freemium, Paid, or Open Source
- — URL must be a valid https:// link
05 // ADD A BADGE
Show that your tool is listed on All in AI Pro:
[](https://allinaipro.com)
