Agent skill

Cat Fact

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

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/catfact

Metadata

Additional technical details for this skill

clawdbot
{
    "emoji": "\ud83d\udc31",
    "requires": {
        "bins": [
            "curl"
        ]
    }
}

SKILL.md

Cat Fact

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

Usage

bash
# 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)

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

One-liner examples

bash
# 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

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results