Install
openclaw skills install research-ideaLaunch background Clawdbot sessions to explore and analyze business ideas. Say 'Idea: [description]' to trigger. Fork of 'idea' skill rewritten to use sessions_spawn instead of claude CLI + tmux + telegram CLI. Results sent to current chat, not Saved Messages. Zero external dependencies.
openclaw skills install research-ideaLaunch autonomous background sessions to explore business ideas in depth. Get market research, technical analysis, GTM strategy, and actionable recommendations—all using built-in Clawdbot features.
Trigger phrase: Say Idea: [description] and the assistant will:
sessions_spawn~/clawd/ideas/<slug>/research.mdUser: "Idea: AI calendar assistant"
↓
┌─────────────────────────────────┐
│ 1. Detect "Idea:" trigger │
│ 2. sessions_spawn background │
│ 3. Sub-agent researches │
│ 4. Writes research.md │
│ 5. Returns to main chat │
│ 6. Sends file + summary │
└─────────────────────────────────┘
sessions_spawn enabledAdd this to your AGENTS.md:
## Idea Exploration
**When user says "Idea: [description]":**
1. Extract the idea description
2. Create a slug from the idea (lowercase, hyphens)
3. Use `sessions_spawn` to launch a background research session:
- **task**: Use the template from `skills/idea-clawdbot/templates/idea-exploration-prompt.md`
- **label**: `idea-research-<slug>`
- **cleanup**: keep (so we can review the session later)
4. Confirm: "🔬 Research started for: [idea]. I'll ping you when done (usually 3-5 minutes)."
5. When the sub-agent completes, send the research file to the chat
**Result handling:**
- Research saved to: `~/clawd/ideas/<slug>/research.md`
- Send file as document via Telegram
- Include brief summary of verdict (🟢/🟡/🟠/🔴)
The exploration covers:
~/clawd/ideas/ai-calendar-assistant/
├── metadata.txt
├── research.md # 400-500 line comprehensive analysis
clawdbot sessions list --kinds spawnclawdbot sessions history <session-key>When spawning the sub-agent, replace these in the prompt template:
{IDEA_DESCRIPTION}: The actual idea text{IDEA_SLUG}: URL-friendly version (e.g., "ai-powered-calendar")