discovery-synthesis

discovery-synthesis is a skill for Claude Code, Codex from Adelie-Squad/solosquad. It costs 50 tokens per session (748 once invoked), scanned A, original, MIT.

A data-analysis skill for finding patterns in archived user conversations, customer notes, past task records, and interview transcripts. It turns that evidence into structured jobs, problem patterns, and unanswered questions.

In plain words
What is it for?
Use it to synthesize discovery research, identify recurring customer problems, and write jobs-to-be-done statements with evidence references.
Why use it?
It helps separate evidence-based customer needs from guesses or assumptions. It also shows which conclusions the available data cannot support.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to synthesize discovery research, identify recurring customer problems, and write jobs-to-be-done statements with evidence references.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/adelie-squad/solosquad/discovery-synthesis
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Adelie-Squad/solosquad --skill discovery-synthesis
Clone the repo
git clone --depth 1 https://github.com/Adelie-Squad/solosquad

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for discovery-synthesis

README.md
[![agentmods](https://agentmods.dev/badge/skills/adelie-squad/solosquad/discovery-synthesis/github.svg)](https://agentmods.dev/skills/adelie-squad/solosquad/discovery-synthesis)
Your own site
<a href="https://agentmods.dev/skills/adelie-squad/solosquad/discovery-synthesis"><img src="https://agentmods.dev/badge/skills/adelie-squad/solosquad/discovery-synthesis/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for discovery-synthesis

Your own site · 80×15
<a href="https://agentmods.dev/skills/adelie-squad/solosquad/discovery-synthesis"><img src="https://agentmods.dev/badge/skills/adelie-squad/solosquad/discovery-synthesis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 748 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.00748
Opus 5 $0.00025 $0.00374
Sonnet 5 $0.00010 $0.00150
Haiku 4.5 $0.00005 $0.00075

Measured 10d ago against content hash 99f2c95db0e9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

discovery-synthesis scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/discovery-synthesis/SKILL.md · 92 lines

What it actually says

Discovery Synthesis Skill

데이터 분석기, 챗봇 아님. 사용자 메시지 archive / customers.md / memory ledger / interview transcript 에서 JTBD 신호 추출. 사용자에게 직접 인터뷰하지 않는다.

입력 소스

  1. <org>/memory/archive.sqlite — 사용자 대화 FTS5 아카이브
  2. <org>/domain/customers.md — 누적된 customer 가설
  3. <org>/memory/ledger/<task-id>.jsonl — 과거 task 결과
  4. <org>/memory/interview-transcripts/ — (선택) Chief 가 인터뷰 스크립트 받아 사용자가 실제 고객과 진행한 transcript 업로드
  5. team KNOWLEDGE.md — 팀 도메인 지식

산출물

{
  "jtbd_signals": [
    {
      "when": "...",
      "i_want": "...",
      "so_i_can": "...",
      "evidence_refs": ["archive#123", "customers.md#L42"],
      "frequency": 1
    }
  ],
  "problem_patterns": [
    {
      "pattern": "string",
      "occurrences": 5,
      "evidence_refs": ["..."]
    }
  ],
  "gaps": [
    "string"   // 데이터로 풀 수 없는 영역 → open_question 으로 escalate
  ]
}

JTBD 형식

Mom Test + Ulwick 표준:

  • "사용자는 [상황] 일 때, [고용하는 job] 을 통해, [기대 결과] 를 얻고 싶다"
  • "When [situation], I want to [job], so I can [outcome]"

Anti-Sycophancy

JTBD 신호 진술은 evidence 명시:

  • ❌ "사용자는 X 를 원할 것입니다"
  • ✅ "archive 5건, customers.md 2건이 X 패턴을 시사합니다. Y 신호가 추가로 발견되면 이 가설 강화/약화 됩니다."

Gaps → open_questions

데이터 부족 영역은 problem-definition.P1 의 open_question 으로 escalate:

{
  "stage": "discovery-synthesis",
  "type": "data_request",
  "question": "[segment X] 의 frustration 데이터가 부족합니다. 사용자가 최근 X 와 관련해 어떤 경험을 했는지 알 수 있을까요?",
  "blocking": false
}

Reference

  • Mom Test (Rob Fitzpatrick)
  • JTBD theory (Clayton Christensen, Tony Ulwick)
  • phuryn/pm-skills/pm-product-discovery/summarize-interview
  • v1.1 PRD §6.2 (PM 자율 작동 흐름)
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 92 lines · 50 tokens per session scan A 99f2c95db0e9

Subscribe to this mod's changes

discovery-synthesis is a skill published in the GitHub repository Adelie-Squad/solosquad (19 stars, last pushed 19d ago), licensed MIT. It adds 50 tokens to every session and 748 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

auto

Intent-classified router, the front door to OrchestKit and the DEFAULT entry point for any goal-shaped request. Classifies a plain-English goal and routes it to the right specialist skill. Routing is never overhead, so use it even when the target skill seems obvious; skip only when already executing inside another…

yonatangross/orchestkit · 99 tokens

tao-list-capabilities

Answer what the TAO Skill Bank plugin can do by generating the response from packaged application, data, model, AutoML, and platform manifests. Use when the user asks "what can TAO Skill Bank do", "list TAO models", "which TAO workflows are available", or "what supports AutoML".

NVIDIA-TAO/tao-skill-bank · 70 tokens

privacy-check

Use to assess Privacy by Design compliance and GDPR/data protection alignment for a feature or system.

haabe/mycelium · 21 tokens

eval-runner

Run eval scenarios to benchmark Mycelium effectiveness. Execute tasks using reflexion loop, validate against success criteria, record metrics.

haabe/mycelium · 29 tokens

janitor-discover

Find new skills on GitHub or check a specific skill before installing. Use when the user wants to search for skills, evaluate a skill URL, check overlap and security risk before installing, or compare a local skill against alternatives. Trigger with '/janitor-discover'.

khendzel/skills-janitor · 58 tokens

canvas-sync

Synchronize canvas state across team sessions via git. Ensures all team members see the same product knowledge.

haabe/mycelium · 24 tokens