
Discovery Question Form
FreeStreamline your design clarifications with structured questions.
Free · Opens the source repo
What Discovery Question Form does
The Discovery Question Form skill is designed to facilitate the clarification of material requirements in design projects. It operates by defining a <question-form> protocol that surfaces essential questions when unresolved information could significantly alter the project's direction, content structure, or delivery format. This structured approach ensures that designers and developers can unblock their workflows efficiently by focusing on the most critical questions that need to be addressed.
When activated, the skill does not automatically trigger a question form; it relies on the context provided by the active skill and the core prompt's requirements-clarification policy. This means that it intelligently assesses whether there are material blockers before generating questions. If sufficient information is available, the skill will refrain from emitting a form, thereby streamlining the process and avoiding unnecessary interruptions.
The emitted question form is structured as a JSON object, allowing for a clear and standardized way to present questions. Each question includes attributes such as an ID, label, type, and options, enabling a variety of input formats from checkboxes to text fields. This flexibility allows users to tailor their responses according to the specific needs of the project, ensuring that all necessary information is captured before moving forward.
This skill is particularly useful for teams engaged in design and development processes where clarity and precision are paramount. By utilizing the Discovery Question Form, teams can ensure that they gather all relevant information upfront, enhancing collaboration and reducing the risk of miscommunication during the project lifecycle.
When to use it
Use this skill during the early stages of a project when material requirements are unclear and need clarification.
When not to use it
It is not suitable for situations where all required information is already available or when the project scope is well-defined.
What you can build with it
Early Project Setup
Utilize the skill to gather essential information at the start of a design project, ensuring clarity from the outset.
Unblocking Workflows
When encountering material blockers, use the question form to identify and resolve outstanding issues quickly.
Collaborative Design Sessions
In team meetings, employ the skill to facilitate discussions around ambiguous requirements and document necessary clarifications.
How to install Discovery Question Form
View source1. Install with the skills CLI
npx skills add nexu-io/open-design/discovery-question-form --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by nexu-ioDiscovery question form
This atom defines the <question-form> protocol. It does not decide whether
clarification is required. Follow the active skill and core prompt's
requirements-clarification policy. When they identify unresolved information
that would materially change the design direction, content structure, or
delivery format, surface the smallest possible set of questions that unblocks
the workflow.
The questions are rendered as a <question-form> artifact inline in the
originating assistant message. This is assistant text parsed by the host, not a
plugin GenUI surface or a native tool call. Submitted answers return as the
next user message, beginning with [form answers — <form-id>].
Activation boundary
- A first turn or new project does not by itself require a form.
- A
discoverypipeline stage only makes this protocol available; declaring or entering the stage does not trigger a form. - Missing metadata is not automatically a question. First use the request, conversation, plugin inputs, memory, active skill, and design system.
- If enough information is available to proceed safely, do not emit a form.
- If a material blocker remains, ask only for that unresolved information.
Emission shape
Emit the form as a question-form block whose body is a JSON object with a
top-level questions array. Do not emit a bare question object by itself; the
renderer only recognizes the wrapped form contract.
<question-form id="discovery" title="Quick brief — 30 seconds">
{
"description": "I'll lock these in before building. Skip what doesn't apply — I'll fill defaults.",
"questions": [
{
"id": "audience",
"label": "Who's the primary audience?",
"type": "checkbox",
"options": ["VC", "Customer", "Internal team"],
"maxSelections": 2,
"required": true
}
]
}
</question-form>
Question object shape
Each entry in the top-level questions array uses:
id: stable answer key, for exampleaudience.label: user-facing question copy.type: one ofradio,checkbox,select,text,textarea,number,range,date,time,datetime-local,color,url,email,tel,file,switch, ordirection-cards.options: required for choice controls; strings are allowed, or objects with localizedlabeland stablevalue.allowCustom: leave unset or set totruefor finite-choice controls so users can type their own answer instead of accepting only generated options. SetallowCustom: falseonly when the downstream system needs an exact machine id.customLabel/customPlaceholder: optional localized copy for that custom answer input.maxSelections: include this for checkbox controls with a limited selection count.required: set totrueonly when the answer is needed before work can continue.
Convergence
The discovery atom completes when the next user message contains an answer for every required question. Treat those submitted answers as conversation context and do not ask the same questions again unless later input invalidates an answer.
Frequently asked questions about Discovery Question Form
Similar skills
Design System
Streamline design token management and presentation generation.
Visual Style
Create and apply portable visual design systems effortlessly.
Paperclip Design Guide
Build consistent, reusable UI components with ease.
Design Brief
Transform vague design requests into structured specs.
Token Map
Automate Figma and code token mapping to design systems.
Kami Landing
Create professional single-page documents effortlessly.
