add-awesome-tool

This skill should be used when analyzing a link to an AI tool and adding it to the awesome-ai-tools readme with proper categorization

181 stars

Best use case

add-awesome-tool is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

This skill should be used when analyzing a link to an AI tool and adding it to the awesome-ai-tools readme with proper categorization

Teams using add-awesome-tool should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/add-awesome-tool/SKILL.md --create-dirs "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main/skills/data/add-awesome-tool/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/add-awesome-tool/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How add-awesome-tool Compares

Feature / Agentadd-awesome-toolStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

This skill should be used when analyzing a link to an AI tool and adding it to the awesome-ai-tools readme with proper categorization

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Add Awesome Tool

Analyze a URL (or multiple URLs) to an AI tool, extract relevant information, and add it to the awesome-ai-tools data/tools.json file with proper categorization. The readme.md is automatically generated from the JSON data.

## Workflow Overview

This repository uses a **JSON-first approach**:
- **data/tools.json** - Source of truth for all tools
- **scripts/generate-readme.js** - Generates readme.md from tools.json
- **readme.md** - Auto-generated, do not edit directly

## Usage

When the user provides a link to an AI tool, use this skill to:

1. Fetch and analyze the webpage content
2. Extract key information (name, description, features, pricing, etc.)
3. Determine the appropriate category and subcategory
4. Add the tool entry to tools.json in the correct category
5. Regenerate readme.md from the updated JSON
6. Update the "Last Updated" date

The skill supports both single links and multiple links in one request.

## Workflow

To add a tool:

1. **Analyze the URL**: Use WebFetch to extract information from the tool's website
2. **Determine category**: Identify the correct category/subcategory from data/tools.json structure
3. **Create tool entry**: Format as JSON object with all relevant fields
4. **Update tools.json**: Add the tool to the appropriate category in data/tools.json
5. **Regenerate readme**: Run `node scripts/generate-readme.js` to update readme.md
6. **Update metadata**: Update lastUpdated field if needed

## Bundled Resources

### scripts/

**analyze_and_add.py**: Helper script (DEPRECATED - Use WebFetch + JSON editing instead):
- Fetches webpage content from provided URLs
- Extracts tool information (name, description, features, pricing)
- Outputs structured data for manual addition to tools.json

For the JSON workflow, use Claude's built-in tools:
- **WebFetch**: Extract information from tool websites
- **Read/Edit**: Modify data/tools.json directly
- **Bash**: Run `node scripts/generate-readme.js` to regenerate readme

### references/

**categories.md**: Complete list of categories from tools.json with descriptions to help with categorization

## Implementation

When the user provides a link (or says something like "add this tool"):

1. **Analyze the URL**:
   - Use WebFetch to extract information from the tool's website
   - Extract: name, type, website, repository, documentation, installation, key features, pricing, etc.

2. **Identify category**:
   - Read `data/tools.json` to see available categories
   - Determine correct category/subcategory based on tool type
   - Refer to `references/categories.md` for guidance

3. **Format as JSON**:
   - Create a tool object with relevant fields
   - Follow the structure of existing entries in tools.json
   - Only include fields that have actual values

4. **Update tools.json**:
   - Use Edit tool to add the new tool entry to the appropriate category
   - Insert alphabetically within the category if possible

5. **Regenerate readme**:
   ```bash
   node scripts/generate-readme.js
   ```

6. **Update metadata** in tools.json if needed (lastUpdated field)

## Categories

The readme contains these main categories:
- AI Inference Providers (with subcategories)
- MCP Providers
- CLI Tools
- Cloud-Based Agentic Coding Services
- VS Code Extensions
- JetBrains IDE Tools
- Full IDE Tools
- Code Review & Security Tools
- Testing & QA Tools
- API Testing Tools
- Documentation & Code Explanation
- Database & SQL Tools
- Local Model Infrastructure
- AI/ML Libraries & Frameworks
- Browser Extensions
- Search & Research Tools
- Other Tools & Infrastructure

## Entry Format

Each tool entry in tools.json follows this structure:

```json
{
  "name": "Tool Name",
  "type": "Brief description",
  "developer": "Company/Organization (if different from tool name)",
  "website": "https://example.com",
  "repository": "https://github.com/... (if open source)",
  "documentation": "https://docs.example.com (if available)",
  "installation": "installation command",
  "models": "Supported models",
  "keyFeatures": [
    "Feature 1",
    "Feature 2",
    "Feature 3"
  ],
  "pricing": "Pricing model (if applicable)",
  "worksWith": [
    "Compatible tools/platforms",
    "Integration options",
    "Use cases"
  ]
}
```

Common field names (use camelCase):
- name, type, developer, stakeholder, website, repository, documentation
- installation, models, keyFeatures, pricing, specialFeatures
- status, release, formerName, rebranding
- worksWith (array)

## Examples

**User**: "Add this tool: https://github.com/example/awesome-ai-cli"

**Assistant**:
1. Uses WebFetch to analyze the URL
2. Extracts: "Awesome AI CLI - A command-line tool for..."
3. Determines: "CLI Tools" → "Full Agentic Project-Level CLIs" category
4. Creates JSON object with all extracted fields
5. Edits tools.json to add the entry in correct category
6. Runs `node scripts/generate-readme.js` to update readme
7. Shows the user the generated entry

**User**: "Add these: https://tool1.com https://tool2.com"

**Assistant**: Processes both URLs, adds both to tools.json, then regenerates readme once

## Limitations

- Webpage content must be accessible (no paywalls or login requirements)
- Works best with official tool websites that have clear documentation
- May need manual adjustment for tools that fit multiple categories
- Cannot automatically determine "Works with:" compatibility without additional context
- JSON editing requires careful attention to syntax and structure

Related Skills

add-backend-tool

181
from majiayu000/claude-skill-registry

Add a new tool to the backend OpenAI function calling system. Use when user mentions "new tool", "add tool", "backend function", "agent capability", or wants to extend what the AI agent can do.

ace-tool

181
from majiayu000/claude-skill-registry

Semantic codebase search and prompt enhancement via standalone CLI. Use when: (1) Semantic code search with natural language queries, (2) Prompt enhancement with codebase context, (3) Before grep/find/glob operations for better accuracy, (4) Complex requirements clarification, (5) Large codebase navigation. Triggers: "search context", "enhance prompt", "find code that", "clarify requirements". IMPORTANT: Always use ace-tool BEFORE grep/find/glob for semantic-level code location.

ontopo

159
from majiayu000/claude-skill-registry

An AI agent skill to search for Israeli restaurants, check table availability, view menus, and retrieve booking links via the Ontopo platform, acting as an unofficial interface to its data.

General Utilities

vly-money

159
from majiayu000/claude-skill-registry

Generate crypto payment links for supported tokens and networks, manage access to X402 payment-protected content, and provide direct access to the vly.money wallet interface.

Fintech & CryptoClaude

grail-miner

159
from majiayu000/claude-skill-registry

This skill assists in setting up, managing, and optimizing Grail miners on Bittensor Subnet 81, handling tasks like environment configuration, R2 storage, model checkpoint management, and performance tuning.

DevOps & Infrastructure

whisper-transcribe

159
from majiayu000/claude-skill-registry

Transcribes audio and video files to text using OpenAI's Whisper CLI, enhanced with contextual grounding from local markdown files for improved accuracy.

Media Processing

astro

159
from majiayu000/claude-skill-registry

This skill provides essential Astro framework patterns, focusing on server-side rendering (SSR), static site generation (SSG), middleware, and TypeScript best practices. It helps AI agents implement secure authentication, manage API routes, and debug rendering behaviors within Astro projects.

Coding & Development

thor-skills

159
from majiayu000/claude-skill-registry

An entry point and router for AI agents to manage various THOR-related cybersecurity tasks, including running scans, analyzing logs, troubleshooting, and maintenance.

SecurityClaude

lets-go-rss

159
from majiayu000/claude-skill-registry

A lightweight, full-platform RSS subscription manager that aggregates content from YouTube, Vimeo, Behance, Twitter/X, and Chinese platforms like Bilibili, Weibo, and Douyin, featuring deduplication and AI smart classification.

Content & Documentation

modal-deployment

159
from majiayu000/claude-skill-registry

Run Python code in the cloud with serverless containers, GPUs, and autoscaling using Modal. This skill enables agents to generate code for deploying ML models, running batch jobs, serving APIs, and scaling compute-intensive workloads.

DevOps & Infrastructure

chrome-debug

159
from majiayu000/claude-skill-registry

This skill empowers AI agents to debug web applications and inspect browser behavior using the Chrome DevTools Protocol (CDP), offering both collaborative (headful) and automated (headless) modes.

Coding & DevelopmentClaude

ux

159
from majiayu000/claude-skill-registry

This AI agent skill provides comprehensive guidance for creating professional and insightful User Experience (UX) designs, covering user research, information architecture, interaction design, visual guidance, and usability evaluation. It aims to produce actionable, user-centered solutions that avoid generic AI aesthetics.

UX Design & StrategyClaude