home / skills / openclaw / skills / meow-finder

meow-finder skill

/skills/abgohel/meow-finder

This skill helps you discover and filter AI tools quickly using category, search terms, and free and all options from a curated catalog.

npx playbooks add skill openclaw/skills --skill meow-finder

Review the files below or copy the command above to add this skill to your agents.

Files (6)
SKILL.md
2.2 KB
---
name: meow-finder
version: 1.0.0
description: CLI tool to discover AI tools. Search 40+ curated tools by category, pricing, and use case.
homepage: https://github.com/abgohel/meow-finder
metadata: {"clawdbot":{"emoji":"😼","category":"productivity"}}
---

# Meow Finder

CLI tool to discover AI tools. Search 40+ curated tools by category.

## When to Use

- "Find AI tools for video editing"
- "What free image generators are there?"
- "Show me coding assistants"
- "List social media tools"

## Installation

```bash
npm install -g meow-finder
```

Or clone:
```bash
git clone https://github.com/abgohel/meow-finder.git
cd meow-finder
npm link
```

## Usage

```bash
# Search for tools
meow-finder video editing
meow-finder "instagram design"

# Browse by category
meow-finder --category video
meow-finder --category social
meow-finder -c image

# Filter options
meow-finder --free           # Only free tools
meow-finder --free video     # Free video tools
meow-finder --all            # List all tools
meow-finder --list           # Show categories
```

## Categories

- `video` - Video editing, generation, reels
- `image` - Image generation, editing, design
- `writing` - Copywriting, content, blogs
- `code` - Programming, IDEs, assistants
- `chat` - AI assistants, chatbots
- `audio` - Voice, music, podcasts
- `social` - Social media management
- `productivity` - Workflow, automation
- `research` - Search, analysis
- `marketing` - Ads, SEO, growth

## Example Output

```
πŸ” Found 5 tool(s):

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ Canva AI
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ All-in-one design platform with AI features
β”‚ 
β”‚ Category: Design
β”‚ Pricing:  βœ… Free
β”‚ URL:      https://canva.com
└─────────────────────────────────────────────
```

## Data

40+ curated AI tools in `data/tools.json`. PRs welcome to add more!

---

Built by **Meow 😼** for the Moltbook community 🦞

Overview

This skill is a lightweight CLI for discovering and filtering over 40 curated AI tools by category, pricing, and use case. It helps you quickly find tools for video, image, writing, code, chat, audio, social, productivity, research, and marketing workflows. The interface is command-driven with simple search and filter flags to narrow results.

How this skill works

Run the CLI with keywords or category flags to query the local curated dataset of tools. The tool inspects categories, pricing tags (free/paid), and descriptions to return matched entries with name, short summary, category, pricing, and URL. Use additional flags to list categories, show all tools, or restrict results to free offerings.

When to use it

  • You need a quick list of AI tools for a specific task (e.g., video editing).
  • You want to compare free vs paid AI services before trying them.
  • You need to browse tools by category to discover options you didn’t know about.
  • You’re preparing tooling recommendations for a team or project and need curated options.
  • You want a terminal-first discovery flow without browsing multiple websites.

Best practices

  • Start with a focused keyword and then broaden if results are limited (e.g., β€œvideo editing” β†’ β€œvideo”).
  • Use the --free flag to filter out paid-only tools when evaluating cost-sensitive options.
  • List categories first (--list) to discover the canonical tags used by the dataset.
  • Combine category flags with keywords for precise results (e.g., --category image "portrait").
  • Treat results as curated suggestions β€” verify features and pricing on each tool’s website before committing.

Example use cases

  • Find free image generators for an experimental creative sprint.
  • List coding assistants to compare features before adopting one in your IDE.
  • Discover social media tools when building a content calendar and scheduling workflow.
  • Search video tools to assemble a shortlist for a marketing explainer video.
  • Browse productivity and automation tools while architecting a team’s tooling stack.

FAQ

How do I install the CLI?

Install via npm: npm install -g meow-finder. Alternatively, clone the project and use npm link to link the executable locally.

How can I restrict results to free tools?

Use the --free flag with or without keywords, for example: meow-finder --free video or meow-finder --free "image generator".