skills$openclaw/Cat Fact
thesethrose4.9k

by thesethrose

Cat Fact – OpenClaw Skill

Cat Fact is an OpenClaw Skills integration for data analytics workflows. Random cat facts and breed information from catfact.ninja (free, no API key)

4.9k stars6.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameCat Fact
descriptionRandom cat facts and breed information from catfact.ninja (free, no API key) OpenClaw Skills integration.
ownerthesethrose
repositorythesethrose/catfact
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @thesethrose/catfact
last updatedFeb 7, 2026

Maintainer

thesethrose

thesethrose

Maintains Cat Fact in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
272 B
SKILL.md
1.1 KB
SKILL.md

name: Cat Fact description: Random cat facts and breed information from catfact.ninja (free, no API key) read_when:

  • Wanting random cat facts
  • Looking up cat breeds
  • Building fun bot responses metadata: {"clawdbot":{"emoji":"🐱","requires":{"bins":["curl"]}}}

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

EndpointDescription
GET /factRandom cat fact
GET /breedsList of cat breeds

Docs: https://catfact.ninja

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install Cat Fact?

Run openclaw add @thesethrose/catfact in your terminal. This installs Cat Fact into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/thesethrose/catfact. Review commits and README documentation before installing.