Product design skills

references/cookiy/cookiy-qual.md

A supporting file of the user-research-cookiy skill.

Cookiy — Qualitative User Research (Interview Study)

Workflow Overview

Research Goal


study create  ──→  Discussion Guide (generated async)


Review Guide  ──→  (optional) show/edit the guide

  ├──→  Recruit real participants  (costs money, takes time)
  │         or
  └──→  Synthetic user interviews with AI personas  (cheaper, faster)


     Interviews Complete


     Pull report / transcripts / playback URLs

CLI Commands

study list

Fetch existing studies.

scripts/cookiy.sh study list [--limit <n>] [--cursor <s>]

study create

Create a new study. It automatically creates the discussion/interview guide (generated asynchronously).

scripts/cookiy.sh study create --query <s> [--thinking <s>] [--attachments <s>]
FlagRequiredPurpose
--queryyesResearch goal for the AI moderator. Can be a brief goal or full plan/interview guide. Include any non-public background knowledge the AI moderator needs (product context, internal knowledge, recent events, etc.).
--thinkingnomedium or high. Use when the query is rough or vague so the backend reasons more carefully. Omit for well-defined queries.
--attachmentsnoJSON array of {s3_key, description}, max 10 items. s3_key comes from the study upload command response. description is required.

study upload

Upload an image and get an s3 key back. The key can be used in study create --attachments or in guide update payloads.

scripts/cookiy.sh study upload --content-type <s> (--image-data <s> | --image-url <s>)
FlagRequiredPurpose
--content-typeyesMIME type (e.g. image/jpeg)
--image-dataone of theseBase64 data without the data: prefix

study status

Check the current stage of a study (guide generation, recruitment, interviews, etc.). Call this whenever you need to know what's happening before taking the next step.

scripts/cookiy.sh study status --study-id <uuid>

Waiting on Async Operations

Guide and report generation expose a wait subcommand (see the relevant sub-reference) to block until complete. Use it to poll-wait until the operation completes. For all other progress checks, use study status.


Interview Status

  • In Process — participant in the room, interview running
  • Pause — participant temporarily left
  • Complete — finished, passed quality check
  • Not Qualify — failed quality check

Sub-References

Only read these when you need to perform the specific operation:

FileCovers
cookiy-study-guide.mdViewing and editing discussion guides
cookiy-recruit.mdLaunching and managing real participant recruitment
cookiy-study-synthetic-user.mdRunning synthetic user interviews with AI personas
cookiy-study-interview.mdInterview retrieval for both real and synthetic interviews (playback link and transcript)
cookiy-study-report.mdReport retrieval (link and content)

Decision Points

When guiding a user through the workflow, there are two key moments to ask:

  1. After guide generation — offer to show the discussion guide. If they want changes, use the guide editing commands.
  2. Before interviews — confirm the participant profile/requirements (at minimum: target countries and languages). Then ask: real participants (costs money, takes time, human responses) or synthetic user interviews (faster, cheaper, good for piloting)?
  3. After interviews complete — proactively offer the interview playback URL (available for both real and synthetic participants via cookiy-study-interview.md). If a user questions whether report data is from real participants, provide the playback URL so they can directly verify by watching the recorded session video and reading the transcript.

On this page