← Back to Skills Marketplace
thesethrose

Cat Fact

by Seth Rose · GitHub ↗ · v1.0.2
cross-platform ✓ Security Clean
2241
Downloads
1
Stars
7
Active Installs
3
Versions
Install in OpenClaw
/install catfact
Description
Random cat facts and breed information from catfact.ninja (free, no API key)
README (SKILL.md)

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

Usage Guidance
This skill is low-risk: it only makes simple HTTP GET requests to catfact.ninja and doesn't ask for credentials or install code. Before installing, note that the SKILL.md expects curl (and shows optional jq usage) even though the registry lists no required binaries — ensure your environment permits outbound HTTP requests and has curl (or use an alternative HTTP client). If you have strict egress controls, verify network access to catfact.ninja. Otherwise it's safe to use for fun bot responses.
Capability Analysis
Type: OpenClaw Skill Name: catfact Version: 1.0.2 The skill bundle is benign. It provides instructions and examples for fetching cat facts and breed information from the `catfact.ninja` API using `curl` and `jq`. All commands in `SKILL.md` are standard HTTP GET requests to the documented public API, with no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts to subvert the agent's behavior. The required `curl` binary and optional `jq` for JSON parsing are appropriate for the stated purpose.
Capability Assessment
Purpose & Capability
The skill's description (random cat facts / breeds from catfact.ninja) matches the runtime instructions. Minor inconsistency: SKILL.md metadata lists a required binary (curl) while the registry's required-binaries section is empty.
Instruction Scope
Instructions are limited to issuing HTTP GET requests to catfact.ninja (and optional local JSON parsing with jq). They do not reference unrelated files, credentials, or external endpoints beyond the stated API.
Install Mechanism
No install spec or code is provided (instruction-only), so nothing is downloaded or written to disk.
Credentials
The skill requires no environment variables or credentials. Example usage mentions jq for parsing (not declared in metadata) but that is optional for convenience.
Persistence & Privilege
always is false and the skill does not request persistent or elevated privileges. Autonomous invocation is allowed by default but is not combined with any broad credential or install requirements.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install catfact
  3. After installation, invoke the skill by name or use /catfact
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.2
Fixed frontmatter with proper description field
v1.0.1
Added proper frontmatter summary
v1.0.0
Initial release providing access to random cat facts and breed information from catfact.ninja. - Fetch random cat facts with optional length filtering. - Retrieve a list of cat breeds. - Includes one-liner and programmatic usage examples. - No API key required for usage.
Metadata
Slug catfact
Version 1.0.2
License
All-time Installs 7
Active Installs 7
Total Versions 3
Frequently Asked Questions

What is Cat Fact?

Random cat facts and breed information from catfact.ninja (free, no API key). It is an AI Agent Skill for Claude Code / OpenClaw, with 2241 downloads so far.

How do I install Cat Fact?

Run "/install catfact" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Cat Fact free?

Yes, Cat Fact is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Cat Fact support?

Cat Fact is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Cat Fact?

It is built and maintained by Seth Rose (@thesethrose); the current version is v1.0.2.

💬 Comments