Jump to related tools in the same category or review the original source on GitHub.

CLI Utilities @thesethrose Updated 2/26/2026

🐱 Cat Fact OpenClaw Skill - ClawHub

Do you want your AI agent to automate Cat Fact workflows? This free skill from ClawHub helps with cli utilities tasks without building custom tools from scratch.

What this skill does

Random cat facts and breed information from catfact.ninja (free, no API key)

Install

npx clawhub@latest install catfact

Full SKILL.md

Open original
namedescription
Cat FactRandom cat facts and breed information from catfact.ninja (free, no API key)

Cat Fact

Random cat facts from catfact.ninja (no API key required).

Usage

# Get a random cat fact
curl -s "https://catfact.ninja/fact"

# Get a random fact (short)
curl -s "https://catfact.ninja/fact?max_length=100"

# Get cat breeds
curl -s "https://catfact.ninja/breeds?limit=5"

Programmatic (JSON)

curl -s "https://catfact.ninja/fact" | jq '.fact'

One-liner examples

# Random fact
curl -s "https://catfact.ninja/fact" --header "Accept: application/json" | jq -r '.fact'

# Multiple facts
for i in {1..3}; do curl -s "https://catfact.ninja/fact" --header "Accept: application/json" | jq -r '.fact'; done

API Endpoints

Endpoint Description
GET /fact Random cat fact
GET /breeds List of cat breeds

Docs: https://catfact.ninja

Original URL: https://github.com/openclaw/skills/blob/main/skills/thesethrose/catfact

Related skills

If this matches your use case, these are close alternatives in the same category.