Contribute

Add a tool

Anyone can add a tool to the registry. It takes three steps:

  1. Fork the repo — go to the GitHub repository and click "Fork"
  2. Add a YAML manifest — create a file at tools/your-tool-name.yaml using the template below
  3. Submit a pull request — we'll review and merge within 48 hours

Manifest template

tools/your-tool-name.yaml
name: Your Tool Name
slug: your-tool-name
category: ai-coding
version: "1.0.0"
homepage: https://yourtool.com
description: One-line description (under 120 chars)
os:
  - mac
  - win
  - linux
install:
  brew: null
  winget: null
  choco: null
  scoop: null
  snap: null
  apt: null
  npm: null
  pip: null
  cargo: null
  mac: |
    echo "Add macOS install script here"
  linux: |
    echo "Add Linux install script here"
  win: |
    Write-Host "Add Windows install script here"
verified: false

Categories

ai-codingvideo-genaudio-ailocal-llmsdksvibe-coding

For the full schema reference, naming rules, and examples, see the Contributing Guide on GitHub.