New to Claude Skills? Learn how to install them →

nexu-io on GitHub

Discovery Question Form

Free

Streamline your design clarifications with structured questions.

Get this skill

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 source

1. Install with the skills CLI

npx skills add nexu-io/open-design/discovery-question-form --agent claude-code

2. 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-io

Discovery 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 discovery pipeline 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 example audience.
  • label: user-facing question copy.
  • type: one of radio, checkbox, select, text, textarea, number, range, date, time, datetime-local, color, url, email, tel, file, switch, or direction-cards.
  • options: required for choice controls; strings are allowed, or objects with localized label and stable value.
  • allowCustom: leave unset or set to true for finite-choice controls so users can type their own answer instead of accepting only generated options. Set allowCustom: false only 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 to true only 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