Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aviz85 avatar

Creative Seeds

  • 33 installs
  • 44 repo stars
  • Updated July 8, 2026
  • aviz85/claude-skills-library

creative-seeds is a Claude Code skill that samples surreal micro-stories to break AI pattern-thinking before a creative task.

About

A Claude Code skill that injects creative absurdity to break the agent's pattern-thinking before a creative task. It runs a short Python script to sample three random surreal micro-stories from a 50-paragraph library, which the agent reads internally to shift its thinking frame. A developer invokes it before brainstorming, naming, or writing to spark fresher, less predictable ideas.

  • Injects surreal micro-stories to break AI pattern-thinking before creative tasks
  • Samples 3 random seeds from a 50-paragraph library via a Python one-liner
  • Used internally as cognitive disruptors before brainstorming, naming, or writing

Creative Seeds by the numbers

  • 33 all-time installs (skills.sh)
  • Ranked #1,808 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

creative-seeds capabilities & compatibility

Free; a local Python one-liner, no API keys.

Capabilities
planning
Use cases
research · copywriting
Pricing
Free
From the docs

What creative-seeds says it does

Inject creative absurdity to break AI pattern-thinking before creative tasks.
SKILL.md
The seeds are not prompts. They are cognitive disruptors.
SKILL.md
npx skills add https://github.com/aviz85/claude-skills-library --skill creative-seeds

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs33
repo stars44
Last updatedJuly 8, 2026
Repositoryaviz85/claude-skills-library

What it does

Sample surreal seed paragraphs to disrupt pattern-thinking before brainstorming, naming, or writing.

Who is it for?

Sparking unconventional ideas before brainstorming, naming, or writing.

Skip if: Tasks needing structured or factual output, since seeds are deliberate nonsense.

When should I use this skill?

You are about to brainstorm, name something, write, or need a fresh creative perspective.

What you get

Three random surreal seed paragraphs used internally to shift the agent's thinking frame.

  • Three random surreal seed paragraphs

By the numbers

  • 50-paragraph seed library
  • samples 3 random seeds

Files

SKILL.mdMarkdownGitHub ↗

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]))
"

Instructions

1. Run the bash command above — it returns 3 randomly selected seed paragraphs 2. Read the output — let the absurdist logic seep in 3. Then proceed with the actual creative task with that mental residue active 4. Do NOT explain the seeds to the user unless asked — just use them internally to shift your thinking frame

The seeds are not prompts. They are cognitive disruptors. They work by contaminating your pattern-matching with nonsense, forcing novel connections.

Related skills

FAQ

How does it work?

It samples three random surreal seed paragraphs and reads them internally as cognitive disruptors to force novel connections.

Should the seeds be shown to the user?

No, unless asked; the seeds are used internally to shift the agent's thinking frame.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.