By jakedahn
Oblique Strategies for vibecoding - creative lateral thinking prompts
npx claudepluginhub jakedahn/oblique-skill --plugin oblique-skills
A Claude Code plugin inspired by Brian Eno and Peter Schmidt's Oblique Strategies - a deck of cards offering creative prompts to break through blocks and introduce unexpected directions.
Use /oblique-skills:oblique to draw a strategy card and season your coding session with lateral thinking.
/plugin marketplace add jakedahn/oblique-skill
/plugin install oblique-skills@jakedahn/oblique-skill
/oblique-skills:oblique
This presents you with 4 randomly-selected strategies. Pick one, then choose how to apply it:
> /oblique-skills:oblique
Which oblique strategy would you like to apply?
○ Honor thy error as a hidden intention
○ Emphasise the flaws
○ Do nothing for as long as possible
○ Use an old idea
> Honor thy error as a hidden intention
How would you like to apply it?
○ Apply to current task
○ Use as session mindset
○ Help me interpret it
> Use as session mindset
"Honor thy error as a hidden intention" is now seasoning this session.
That bug you found might actually be a feature in disguise. Instead of
immediately fixing, let's explore what the error is trying to tell us...
All 113 original Oblique Strategies are included:
Do we need holes? • Emphasise differences • Honor thy error as a hidden intention • Trust in the you of now • Turn it upside down • Use an old idea • What wouldn't you do? • Faced with a choice, do both • Remove specifics and convert to ambiguities • Repetition is a form of change • ...and 103 more
oblique-skill/
├── .claude-plugin/
│ └── plugin.json
├── commands/
│ └── oblique.md # /oblique command definition
└── skills/
└── oblique/
├── SKILL.md
└── scripts/
└── pick-strategies.sh # Random selection (POSIX-compatible)
The bash script uses a simple POSIX pipeline for cross-platform random selection:
cat <<'EOF' | awk 'BEGIN{srand()} {print rand(), $0}' | sort -n | head -n 4 | cut -d' ' -f2-
Works identically on macOS and Linux.
Oblique Strategies was created by Brian Eno and Peter Schmidt in 1975. The original deck consists of cards with cryptic remarks intended to help artists break creative blocks.
This plugin adapts that concept for vibecoding - introducing lateral thinking prompts to help developers approach problems from unexpected angles.
MIT
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Orchestrate multi-agent teams for parallel code review, hypothesis-driven debugging, and coordinated feature development using Claude Code's Agent Teams
Complete developer toolkit for Claude Code
Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Works with Claude Code, Kiro, Clawd CLI, Gemini CLI, Cursor, Continue, Hermes, and 17+ AI coding assistants. Now with Arabic, German, Spanish, and Chinese (Simplified & Traditional) support.
Comprehensive toolkit for developing Claude Code plugins. Includes 7 expert skills covering hooks, MCP integration, commands, agents, and best practices. AI-assisted plugin creation and validation.