idea

Review·Scanned 2/17/2026

This skill launches Claude Code sessions in tmux to research user-submitted ideas and saves results to ~/clawd/ideas/<slug>/research.md. It executes local scripts (~/clawd/scripts/explore-idea.sh, tmux new-session), uses a hardcoded HOOKS_TOKEN, and posts to http://localhost:18789/hooks/wake.

from clawhub.ai·v4f46909·11.6 KB·0 installs
Scanned from 1.0.4 at 4f46909 · Transparency log ↗
$ vett add clawhub.ai/andrewjiang/ideaReview findings below

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.