Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 2.02 KB

File metadata and controls

44 lines (35 loc) · 2.02 KB

The following skills failed to load: ✖ /Users/marek/.copilot/installed-plugins/aisdlc-plugins/ai-sdlc/commands/init-sdlc.md: name: Command name must contain only letters, numbers, hyphens, underscores, dots, and spaces ✖ /Users/marek/.copilot/installed-plugins/aisdlc-plugins/ai-sdlc/commands/work.md: name: Command name must contain only letters, numbers, hyphens, underscores, dots, and spaces


● Check for CLAUDE.md $ if [ -f "CLAUDE.md" ]; then echo "✓ CLAUDE.md exists"; else echo "⚠ CLAUDE.md does not exist - will create it"; fi └ 2 lines...


Yes, the ask_user tool supports multiple choice, but only single-selection (user picks one option from the list). What's Supported Single-selection multiple choice (most common): choices: ["Option A", "Option B", "Option C"] allow_freeform: false // Only pick from list Multiple choice with freeform fallback: choices: ["Option A", "Option B", "Option C"] allow_freeform: true // Can pick from list OR type their own answer Pure freeform (no choices): allow_freeform: true // Free text input What's NOT Supported Multi-select (checking multiple options at once) - this is not available. The tool returns a single answer, not an array of selections. Workaround for Multi-Select If you need the user to select multiple items, you have two options:

  1. Ask multiple sequential questions: // First call ask_user("Select first preference", choices: ["A", "B", "C"]) // Second call ask_user("Select second preference", choices: ["A", "B", "C"])
  2. Use freeform with instructions: ask_user("Which standards do you want? (enter comma-separated: global,frontend,backend)") allow_freeform: true During the initialization earlier, when you said "all standards", I handled it through the conversation rather than the tool capturing multiple selections simultaneously. Would you like me to demonstrate a different approach for gathering multiple selections?

For not chosen project docs it just copied templates without generated body