skills$openclaw/idea
andrewjiang4.7kā˜…

by andrewjiang

idea – OpenClaw Skill

idea is an OpenClaw Skills integration for coding workflows. Launch background Claude sessions to explore and analyze business ideas. Say 'Idea: [description]' to trigger.

4.7k stars3.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameidea
descriptionLaunch background Claude sessions to explore and analyze business ideas. Say 'Idea: [description]' to trigger. OpenClaw Skills integration.
ownerandrewjiang
repositoryandrewjiang/idea
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @andrewjiang/idea
last updatedFeb 7, 2026

Maintainer

andrewjiang

andrewjiang

Maintains idea in the OpenClaw Skills directory.

View GitHub profile
File Explorer
8 files
.
scripts
explore-idea.sh
3.9 KB
notify-research-complete.sh
1019 B
templates
idea-exploration-prompt.md
1.7 KB
_meta.json
804 B
README.md
1.4 KB
SKILL.md
3.6 KB
SKILL.md

name: idea description: "Launch background Claude sessions to explore and analyze business ideas. Say 'Idea: [description]' to trigger." homepage: https://github.com/anthropics/claude-code metadata: {"clawdbot":{"emoji":"šŸ’”","requires":{"bins":["claude","tmux","telegram"]}}}

Idea Exploration Skill

Launch autonomous Claude Code sessions to explore business ideas in depth. Get market research, technical analysis, GTM strategy, and actionable recommendations.

Quick Start

Trigger phrase: Say Idea: [description] and the assistant will:

  1. Spin up a Claude Code session in tmux
  2. Research and analyze the idea comprehensively
  3. Save results to ~/clawd/ideas/<slug>/research.md
  4. Send file to your Telegram Saved Messages
  5. Notify you via cron when complete

How It Works

User: "Idea: AI calendar assistant"
       ↓
ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
│  1. explore-idea.sh starts      │
│  2. Creates tmux session        │
│  3. Runs Claude Code            │
│  4. Claude analyzes & writes    │
│  5. notify-research-complete.sh │
│     → Sends file to "me"        │
│     → Queues notification       │
│  6. Cron checks queue (1 min)   │
│  7. Notifies user in chat       │
ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜

Setup

Prerequisites

  • claude CLI (Claude Code)
  • tmux
  • telegram CLI (supertelegram)
  • Clawdbot with cron enabled

1. Create Scripts

See ~/clawd/scripts/explore-idea.sh for the full implementation.

Key components:

  • Creates idea directory with prompt and runner script
  • Unsets OAuth env vars to use Claude Max
  • Runs claude with --dangerously-skip-permissions
  • Calls notify script on completion

2. Set Up Cron Job

# Cron job to check notification queue every minute
{
  name: "Check notification queue",
  sessionTarget: "isolated",
  wakeMode: "now",
  payload: {
    kind: "agentTurn",
    message: "Check ~/.clawdbot/notify-queue/ for .json files...",
    deliver: true,
    channel: "telegram",
    to: "YOUR_CHAT_ID"
  },
  schedule: { kind: "every", everyMs: 60000 }
}

3. Add AGENTS.md Instructions

**When user says "Idea: [description]":**
1. Extract the idea description
2. Execute: `CLAWD_SESSION_KEY="main" ~/clawd/scripts/explore-idea.sh "[idea]"`
3. Confirm: "Idea exploration started. You'll be notified when complete."

Analysis Framework

The exploration covers:

  1. Core Concept Analysis - Problem, assumptions, uniqueness
  2. Market Research - Users, TAM/SAM/SOM, competitors
  3. Technical Implementation - Stack, MVP scope, challenges
  4. Business Model - Revenue, pricing, unit economics
  5. Go-to-Market Strategy - Launch, acquisition, partnerships
  6. Risks & Challenges - Technical, competitive, regulatory
  7. Verdict & Recommendations - Clear yes/no with action plan

Verdict Types

  • 🟢 STRONG YES - Clear opportunity, pursue aggressively
  • 🟔 CONDITIONAL YES - Promising but needs validation
  • 🟠 PIVOT RECOMMENDED - Core insight good, execution needs work
  • šŸ”“ PASS - Too many red flags

Example Output

~/clawd/ideas/ai-calendar-assistant/
ā”œā”€ā”€ metadata.txt
ā”œā”€ā”€ prompt.txt
ā”œā”€ā”€ run-claude.sh
└── research.md    # 400-500 line comprehensive analysis

Tips

  • Ideas typically take 3-5 minutes to analyze
  • Monitor progress: tmux attach -t idea-<slug>-<timestamp>
  • File goes to Saved Messages even if notification fails
  • Check ~/.clawdbot/notify-queue/ for stuck notifications
README.md

Idea Exploration Skill

Launch autonomous Claude Code sessions to explore business ideas in depth.

Installation

  1. Copy scripts to your scripts directory:

    cp scripts/*.sh ~/clawd/scripts/
    chmod +x ~/clawd/scripts/explore-idea.sh
    chmod +x ~/clawd/scripts/notify-research-complete.sh
    
  2. Copy template:

    cp templates/idea-exploration-prompt.md ~/clawd/templates/
    
  3. Install the skill:

    mkdir -p ~/clawdis/skills/idea-exploration
    cp SKILL.md ~/clawdis/skills/idea-exploration/
    
  4. Add to your AGENTS.md:

    **When user says "Idea: [description]":**
    1. Extract the idea description
    2. Execute: `CLAWD_SESSION_KEY="main" ~/clawd/scripts/explore-idea.sh "[idea]"`
    3. Confirm: "Idea exploration started. You'll be notified when complete."
    

Requirements

  • claude CLI (Claude Code)
  • tmux
  • telegram CLI (supertelegram) - for notifications
  • Clawdbot (optional, for cron notifications)

Usage

Say: Idea: [your idea description]

The assistant will:

  1. Spin up a Claude Code session in tmux
  2. Research and analyze the idea
  3. Save results to ~/clawd/ideas/<slug>/research.md
  4. Send file to Telegram Saved Messages
  5. Notify you when complete

Customization

Edit templates/idea-exploration-prompt.md to change the analysis framework.

Edit scripts/explore-idea.sh to change output paths or behavior.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

- `claude` CLI (Claude Code) - `tmux` - `telegram` CLI (supertelegram) - Clawdbot with cron enabled

FAQ

How do I install idea?

Run openclaw add @andrewjiang/idea in your terminal. This installs idea 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/andrewjiang/idea. Review commits and README documentation before installing.