openclaw / cat-fact
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/cat-fact && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/4319" && unzip -o skill.zip -d .claude/skills/cat-fact && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/cat-fact/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Random cat facts and breed information from catfact.ninja (free, no API key)
0 views
0 installs
Skill Content
---
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
```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