creative-seeds

Installation
SKILL.md

Creative Seeds

Before any creative task, run the script below — it selects 3 random seeds and returns them directly.

How to Use

Run this to pull 3 random seeds:

python3 -c "
import random, re, os
with open(os.path.expanduser('~/.claude/skills/creative-seeds/seeds.md')) as f:
    content = f.read()
seeds = [s.strip() for s in re.split(r'\n---\n', content) if re.search(r'##\s*\d+\.', s)]
random.shuffle(seeds)
print('\n\n---\n\n'.join(seeds[:3]))
"
Related skills

More from aviz85/claude-skills-library

Installs
19
GitHub Stars
30
First Seen
Mar 9, 2026