-
Notifications
You must be signed in to change notification settings - Fork 0
Version History
| Environment | Status | Notes |
|---|---|---|
| Claude Desktop — chat | Released. Tested. | Tested on 1.12603.1 (3df4fd), 2026-06-11. |
| Claude.ai | Released. Tested. | Confirmed in web interface. |
| Cowork | Released. Tested. | Confirmed in desktop interface. |
| Claude Code — desktop interface | Released. Tested. | Confirmed in desktop interface. |
| CLI (terminal) | Future release. | ask_user_input_v0 not confirmed in terminal contexts. |
Works in any environment that renders ask_user_input_v0 as a native UI interaction. CLI terminal support is planned for a future release. The engine stops and displays a clear error if the tool is unavailable rather than falling back silently.
Breaking change: Replaced the sequential one-question-per-call loop with a single batched ask_user_input_v0 call.
Changes:
- All questions now appear together in one native Claude UI interaction
- Users submit all answers in one action instead of cycling through questions one at a time
- Added Part C integration guide for skill and plugin authors
- Self-test updated to use the batched call
- Sequential loop retired
Migration from v3: No skill-side changes required. The QUESTIONS array format is unchanged. The widget's execution model changed internally. If your skills used the old sequential flow, they now get the batched experience automatically on upgrade.
Merged the engine and self-test into a single SKILL.md. Eliminated the need for a separate self-test file.
Changes:
- Self-test QUESTIONS drawn from a randomized 20-question bank (retired in v4)
- Single file install confirmed as the canonical model
Removed the hardcoded 8-question cap. The engine now iterates dynamically over the full QUESTIONS array regardless of length.
Breaking change: Replaced the show_widget HTML rendering engine with native ask_user_input_v0.
Changes:
- No HTML required
- Questions rendered as native Claude choice cards
- One question per call (later retired in v4.0.0)
- Faster, more reliable, no external rendering dependency
Template embedded directly in SKILL.md to eliminate file-read failures at runtime. Mandatory no-fallback rule added: if the tool is unavailable, the engine stops and reports an error instead of falling back to prose.
Initial release. Custom HTML widget rendered via show_widget. Question template stored as a separate file.
Copyright 2025-2026 Kenneth Benavides. MIT License.