English | 中文
A collection of skills for AI coding agents.
🚀 Open source, practical, and easy to extend.
Generate stable or random image placeholder URLs (and optionally download them) using Lorem Picsum.
Use when:
- Building UI mockups / docs / demos that need images without hosting assets
- You need reproducible images for tests/snapshots (use
seed) - The user mentions picsum, placeholder images, grayscale, blur, seed, id
Examples:
python skills/random-image-placeholder/scripts/picsum.py url --seed avatar-42 --width 400 --height 400 --grayscale --blur 2python skills/random-image-placeholder/scripts/picsum.py download --seed avatar-42 --width 120 --height 80 --out ./tmp/picsum_test.jpgDocs:
skills/random-image-placeholder/README.mdskills/random-image-placeholder/SKILL.md
Two common ways:
- Install from ClawHub (recommended for end users)
- Open:
https://clawhub.ai/hicoldcat/random-image-placeholder - Click the install/import button on the page to add the skill to your agent workspace
- Open:
- Install via skills.sh CLI
- Run:
npx skills add https://github.com/hicoldcat/skills --skill random-image-placeholder- Use from source (for local development)
- Clone this repo and use the skill files/scripts directly under
skills/
- Clone this repo and use the skill files/scripts directly under
Skills are automatically available once installed/imported (depending on your editor/agent). If a skill includes helper scripts, run them directly when a deterministic result is needed.
Each skill contains:
SKILL.md- Instructions for the agentscripts/- Helper scripts for automation (optional)references/- Supporting documentation (optional)assets/- Bundled assets (optional)
MIT. See LICENSE.