sase-questions

star 5

Ask the user questions. Use instead of ask_user (which is disabled).

bbugyi200 By bbugyi200 schedule Updated 3/16/2026

name: sase_questions description: Ask the user questions. Use instead of ask_user (which is disabled).

Before doing anything else, run this command to record that you are using this skill:

sase skill use sase_questions --reason "<one-line reason for using this skill>"

Use this skill when you need user input. This replaces Gemini's native ask_user tool.

Usage

sase questions '<json>'

JSON Schema

[
  {
    "question": "Full question text (required)",
    "header": "Short sidebar label (optional)",
    "options": [{ "label": "Option label (required)", "description": "Details (optional)" }],
    "multiSelect": false
  }
]

Examples

Single question with options:

sase questions '[{"question": "Which database should we use?", "options": [{"label": "PostgreSQL", "description": "Relational, mature"}, {"label": "SQLite", "description": "Embedded, simple"}]}]'

Multiple questions:

sase questions '[{"question": "Approach?", "header": "Approach", "options": [{"label": "A"}, {"label": "B"}]}, {"question": "Include tests?", "options": [{"label": "Yes"}, {"label": "No"}]}]'
Install via CLI
npx skills add https://github.com/bbugyi200/dotfiles --skill sase-questions
Repository Details
star Stars 5
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator