882★by udiedrichsen
idea-coach – OpenClaw Skill
idea-coach is an OpenClaw Skills integration for planning workflows. AI-powered idea/problem/challenge manager with GitHub integration. Captures, categorizes, reviews, and helps ship ideas to repos.
Skill Snapshot
| name | idea-coach |
| description | AI-powered idea/problem/challenge manager with GitHub integration. Captures, categorizes, reviews, and helps ship ideas to repos. OpenClaw Skills integration. |
| owner | udiedrichsen |
| repository | udiedrichsen/idea-coach |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @udiedrichsen/idea-coach |
| last updated | Feb 7, 2026 |
Maintainer

name: idea-coach description: AI-powered idea/problem/challenge manager with GitHub integration. Captures, categorizes, reviews, and helps ship ideas to repos. version: 0.2.0 author: moinsen-dev commands:
- /idea - Capture a new idea, problem, or challenge
- /idea_list - List active ideas (optionally filter by status/type)
- /idea_due - Show ideas due for review
- /idea_get - Get detailed info about an idea
- /idea_update - Update idea status, importance, energy
- /idea_review - Add review notes to an idea
- /idea_drop - Mark idea as dropped (with reason)
- /idea_done - Mark idea as completed
- /idea_stats - Show statistics
- /idea_link - Link idea to existing GitHub repo
- /idea_ship - Create new GitHub repo for idea
- /idea_repo - Show linked repo status
- /idea_sync - Sync idea as GitHub issue
Idea Coach
Your critical sparring partner for ideas, problems, and challenges — now with GitHub integration!
What It Does
Idea Coach helps you:
- Capture ideas, problems, and challenges as they come
- Categorize by type, domain, energy, urgency, and importance
- Review periodically (daily → quarterly based on importance)
- Ship ideas to GitHub repos when ready
- Track progress and know when to let go
Philosophy
Be critical, not just supportive. Idea Coach will:
- Suggest dropping ideas that aren't worth pursuing
- Ask hard questions during reviews
- Track which ideas actually ship vs. rot forever
Commands
Core Commands
| Command | Description |
|---|---|
/idea <text> | Capture a new idea |
/idea_list | List active ideas |
/idea_list --due | Show ideas due for review |
/idea_get <id> | Get idea details |
/idea_update <id> | Update idea attributes |
/idea_review <id> | Add review interaction |
/idea_drop <id> | Mark as dropped (requires reason) |
/idea_done <id> | Mark as completed |
/idea_stats | Show statistics |
GitHub Commands
| Command | Description |
|---|---|
/idea_link <id> <owner/repo> | Link to existing repo |
/idea_ship <id> | Create new repo for idea |
/idea_ship <id> --public | Create public repo |
/idea_repo <id> | Show linked repo status |
/idea_sync <id> | Create/update GitHub issue |
Attributes
Types
- 💡 idea — Something to build or create
- 🔧 problem — Something to fix or solve
- 🎯 challenge — Something to overcome
Status Flow
captured → exploring → developing → shipped/done
↓ ↓
parked blocked
↓
dropped
Importance → Review Cycle
| Importance | Energy | Review Cycle |
|---|---|---|
| critical | high | daily |
| critical | * | weekly |
| important | high | weekly |
| important | * | biweekly |
| nice-to-have | * | monthly |
| parked | * | quarterly |
GitHub Integration
Prerequisites
ghCLI installed and authenticated- Run
gh auth loginif not set up
Workflow Example
# 1. Capture idea
/idea "Build a CLI for task management"
# 2. Develop it
/idea_update abc123 --status developing
# 3. Ship it to GitHub
/idea_ship abc123
# 4. Or link to existing repo
/idea_link abc123 moinsen-dev/my-cli
# 5. Check repo status
/idea_repo abc123
# 6. Sync as GitHub issue
/idea_sync abc123
CLI Usage
# Add idea
python scripts/coach.py add "Build something cool" --type idea --importance important
# List ideas
python scripts/coach.py list
python scripts/coach.py list --due
python scripts/coach.py list --github # Only with linked repos
# GitHub operations
python scripts/coach.py link <id> owner/repo
python scripts/coach.py ship <id> --owner moinsen-dev
python scripts/coach.py repo-status <id>
python scripts/coach.py sync-issue <id> --labels enhancement,idea
Data Storage
Ideas are stored in ~/.openclaw/idea-coach/ideas.json
Each idea tracks:
- Basic info (title, description, type, domain)
- Status and progress
- Energy, urgency, importance
- Review schedule and history
- GitHub integration (repo, issue, sync timestamps)
- Interaction log
Tips
- Capture quickly — Don't overthink the initial capture
- Review honestly — Use reviews to kill stale ideas
- Ship early — Create a repo as soon as an idea has momentum
- Sync issues — Use GitHub issues for detailed tracking
- Drop freely — A dropped idea is a decision, not a failure
💡 Idea Coach
AI-powered idea/problem/challenge manager with GitHub integration.
An OpenClaw skill that helps you capture, categorize, review, and ship your ideas.
Features
- ✅ Capture ideas, problems, and challenges
- ✅ Categorize by type, domain, energy, urgency, importance
- ✅ Review cycles based on importance (daily → quarterly)
- ✅ GitHub integration — link or create repos
- ✅ Issue sync — turn ideas into trackable GitHub issues
- ✅ Critical feedback — suggests dropping stale ideas
Installation
As OpenClaw Skill
# Coming soon to ClawHub
clawhub install idea-coach
Manual Installation
git clone https://github.com/moinsen-dev/idea-coach.git
# Copy to your OpenClaw skills directory
Requirements
- Python 3.8+
ghCLI (for GitHub integration)# macOS brew install gh # Linux sudo apt install gh # Then authenticate gh auth login
Quick Start
# Capture an idea
python scripts/coach.py add "Build a CLI for X" --type idea --importance important
# List your ideas
python scripts/coach.py list
# Check what's due for review
python scripts/coach.py due
# Ship an idea to GitHub
python scripts/coach.py ship <id>
# Link to existing repo
python scripts/coach.py link <id> owner/repo
# Get repo status
python scripts/coach.py repo-status <id>
OpenClaw Commands
| Command | Description |
|---|---|
/idea <text> | Capture new idea |
/idea_list | List active ideas |
/idea_due | Show due for review |
/idea_ship <id> | Create GitHub repo |
/idea_link <id> <repo> | Link to existing repo |
/idea_repo <id> | Show repo status |
/idea_sync <id> | Sync as GitHub issue |
Philosophy
Be critical, not just supportive.
- Ideas that sit too long get flagged
- Review prompts ask hard questions
- Dropping an idea is a valid decision
- Shipped > Perfect
Status Flow
captured → exploring → developing → shipped/done
↓ ↓
parked blocked
↓
dropped
Data
Ideas stored in ~/.openclaw/idea-coach/ideas.json
License
MIT
Built for OpenClaw 🦞
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- `gh` CLI installed and authenticated - Run `gh auth login` if not set up
FAQ
How do I install idea-coach?
Run openclaw add @udiedrichsen/idea-coach in your terminal. This installs idea-coach into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/udiedrichsen/idea-coach. Review commits and README documentation before installing.
