contributing/add-new-tool-to-registry.md
You can add your tool to the registry by submitting a pull request that updates the content/tools-registry/registry.ts file.
Before submitting your tool, ensure you have:
Fork and clone the repository
Follow the setup instructions in the main CONTRIBUTING.md
Add your tool entry
# Navigate to the tools registry directory
cd content/tools-registry
Open registry.ts in your editor and add a new tool object to the tools array following this structure:
{
slug: 'your-tool-slug',
name: 'Your Tool Name',
description: 'Clear description of what your tool does and its capabilities',
packageName: 'your-package-name',
tags: ['tag1', 'tag2'], // Optional: categorize your tool
apiKeyEnvName: 'YOUR_API_KEY', // Optional: environment variable name for API key
installCommand: {
pnpm: 'pnpm install your-package-name',
npm: 'npm install your-package-name',
yarn: 'yarn add your-package-name',
bun: 'bun add your-package-name',
},
codeExample: `import { generateText, gateway, stepCountIs } from 'ai';
import { yourTool } from 'your-package-name';
const { text } = await generateText({
model: gateway('openai/gpt-5-mini'),
prompt: 'Your example prompt',
tools: {
yourTool: yourTool(),
},
stopWhen: stepCountIs(3),
});
console.log(text);`,
docsUrl: 'https://your-docs-url.com',
apiKeyUrl: 'https://your-api-key-url.com',
websiteUrl: 'https://your-website.com',
npmUrl: 'https://www.npmjs.com/package/your-package-name',
}
Provide a working code example
Your codeExample should:
Submit your pull request
# Create a new branch
git checkout -b feat/add-tool-your-tool-name
# Add and commit your changes
git add content/tools-registry/registry.ts
git commit -m "feat(tools-registry): add your-tool-name"
# Push and create a pull request
git push origin feat/add-tool-your-tool-name
Use the PR title format: feat(tools-registry): add your-tool-name
If you have questions about adding your tool to the registry:
registry.ts for examples