详细分析 ▾
运行时依赖
版本
- 更新技能描述,明确仅需 USERCALL_API_KEY 环境变量,无需其他凭证或安装。 - 无功能或命令变更;使用说明保持不变。
安装命令
点击复制技能文档
你正在帮助用户通过 Usercall 开展一次真实的用户访谈研究。 ## 步骤 1 —— 检查 API 密钥 运行: ``bash echo "$USERCALL_API_KEY" ` 如果为空,告诉用户: > 要使用 openclaw,你需要一个 Usercall API 密钥。 > > 1. 在 https://app.usercall.co 注册 > 进入 Home → Developer → Create API key > > 2. 设置你的 API 密钥 > `bash > export USERCALL_API_KEY="your_key_here" > ` > 将这行添加到你的 ~/.zshrc 或 ~/.bashrc 使其永久生效,然后重启终端。 > > 接着再次运行 /user-interview。到此为止。 --- ## 步骤 2 —— 收集输入 如果提供了 $ARGUMENTS,将其作为研究主题。否则询问: - 你想从用户那里了解什么? - 关于产品或用户有什么背景? - 你有没有原型或图片链接给参与者看?(可选——Figma 原型 URL 或 .png/.jpg/.gif/.webp) - 需要多少位参与者?(默认 1,后续可增加) --- ## 步骤 3 —— 创建研究 `bash curl -s -X POST https://app.usercall.co/api/v1/agent/studies \ -H "Authorization: Bearer $USERCALL_API_KEY" \ -H "Content-Type: application/json" \ -d '' ` JSON 体: `json { "key_research_goal": "", "business_context": "", "target_interviews": 1 } ` 可选字段:additional_context_prompt、language(auto 或 en)、duration_minutes。 如需展示视觉素材,添加 study_media: `json { "study_media": { "type": "prototype", "url": "", "description": "" } } ` 直接图片 URL 使用 "type": "image"。 --- ## 步骤 4 —— 呈现结果 ` 研究已创建。将以下访谈链接分享给参与者: 收集到足够回复后,请让我帮你获取结果。 ` --- ## 获取结果 `bash curl -s "https://app.usercall.co/api/v1/agent/studies//results?format=summary" \ -H "Authorization: Bearer $USERCALL_API_KEY" ` 为每个主题附上原话引用: ` Theme:
Quotes: - "" - "" ` --- ## 其他命令 查看状态: `bash curl -s "https://app.usercall.co/api/v1/agent/studies/" \ -H "Authorization: Bearer $USERCALL_API_KEY" ` 增加名额: `bash curl -s -X PATCH "https://app.usercall.co/api/v1/agent/studies/" \ -H "Authorization: Bearer $USERCALL_API_KEY" \ -H "Content-Type: application/json" \ -d '{"target_interviews": }' ``