smithery/oodaris

core-ask-questions-if-underspecified

Clarify requirements when inputs are missing or ambiguous.

Installation

$ npx skills add smithery/oodaris --skill core-ask-questions-if-underspecified

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/oodaris.

npx skills add smithery/oodaris

Browse all from smithery/oodaris

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.2.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,570 B
  • docs SUMMARY.md 102 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Ask Questions If Underspecified

Repo anchors (autocodex)

  • CLI_PATH: cmd/autocodex/
  • INTERNAL_PATH: internal/
  • PLUGINS_PATH: plugins/
  • DOCS_PATH: docs/
  • SKILLS_PATH: skills/
  • UI_PATH: web/
  • TEST_COMMANDS

- Go: go test ./... - Go vet: go vet ./... - Go fmt: gofmt -w $(rg --files -g '*.go')

When to use

  • A request is ambiguous or missing required inputs (schemas, env vars, sample payloads, constraints).

Preconditions

  • You have the user’s request in the thread.

Inputs to confirm

  • Required schemas or config samples
  • Runtime constraints (CLI vs API vs UI)
  • Success criteria and scope boundaries

Required artifacts

  • A minimal list of questions
  • A checklist of missing inputs

Quick path

  • Identify missing inputs.
  • Ask the minimum number of questions to proceed.
  • Provide a clear checklist.

Steps

  1. Stop before coding.
  2. Ask 2–6 targeted questions.
  3. Provide a short checklist of missing inputs.
  4. State what you will do next once answered.

Failure modes and responses

  • Too many questions: reduce to only what blocks progress.
  • Vague questions: rewrite as concrete inputs.

Definition of done

  • Missing inputs are explicitly listed and requested.

Example (minimal)

  • Input: “Add a plugin system.”
  • Questions: What transport? What capability schema? Which paths?
  • Gotcha: Don’t implement before protocol is defined.