ClawSkills logoClawSkills

Research Idea

启动后台 Clawdbot 会话以探索和分析商业想法。说 'Idea: [描述]' 即可触发。这是重写以使用 sessions_ 的 'idea' 技能的分支。

介绍

# Idea Exploration Skill (Clawdbot Native)

启动自主后台会话以深入探索商业创意。获取市场研究、技术分析、GTM 策略和可执行建议——所有这些均使用内置的 Clawdbot 功能。

## 快速开始

**触发短语:** 说 `Idea: [description]`,助手将: 1. 使用 `sessions_spawn` 启动后台子代理会话 2. 全面研究和分析该创意 3. 将结果保存到 `~/clawd/ideas/<slug>/research.md` 4. 将文件 + 摘要发回此 Telegram 聊天

## 工作原理

``` User: "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` 的 Clawdbot - 无需外部 CLI(完全原生)

## AGENTS.md 集成

将以下内容添加到您的 `AGENTS.md`:

```markdown ## 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 (🟢/🟡/🟠/🔴) ```

## 分析框架

探索涵盖以下内容:

1. **核心理念分析** - 问题、假设、独特性 2. **市场研究** - 用户、TAM/SAM/SOM、竞争对手 3. **技术实现** - 技术栈、MVP 范围、挑战 4. **商业模式** - 收入、定价、单体经济 5. **市场进入策略** - 发布、获客、合作伙伴关系 6. **风险与挑战** - 技术、竞争、监管 7. **结论与建议** - 明确的行/不行及行动计划

## 结论类型

- 🟢 **强烈推荐** - 明确的机会,积极追求 - 🟡 **有条件推荐** - 有前景但需要验证 - 🟠 **建议转型** - 核心洞察良好,执行需要改进 - 🔴 **放弃** - 红旗太多

## 示例输出

``` ~/clawd/ideas/ai-calendar-assistant/ ├── metadata.txt ├── research.md # 400-500 line comprehensive analysis ```

## 提示

- 创意通常需要 3-5 分钟来分析 - 检查会话进度:`clawdbot sessions list --kinds spawn` - 监控子代理:`clawdbot sessions history <session-key>` - 结果会自动返回到同一聊天

## 模板变量

生成子代理时,请在提示词模板中替换以下内容: - `{IDEA_DESCRIPTION}`:实际的创意文本 - `{IDEA_SLUG}`:URL 友好版本(例如 "ai-powered-calendar")

更多产品