What problem does it solve? Building dynamic web pages that update without full page reloads requires repetitive boilerplate for fetch calls, DOM manipulation, and response handling. This Skill generates complete Mustache templates with Ajax interactions wired to your existing REST API endpoints, following consistent project conventions. ## Core Features & Use Cases - Interview-Driven Generation: Collects the target feature, API endpoints, UI elements, and refresh strategy through a short interview before writing code. - Standardized fetch Patterns: Produces GET/POST/PUT/DELETE fetch calls that match the project's Resp wrapper response structure (status, msg, body). - DOM Rendering Templates: Generates render functions for list refresh, item add/delete, and conditional UI such as owner-only delete buttons. - Use Case: Ask for a comment section page for a board post, and receive a complete Mustache file with comment list loading, creation, and deletion wired to /api/board/{id}/reply endpoints. ## Quick Start Ask the assistant to create an Ajax page for your feature, for example: create a comment list and submission page that calls the board reply API without page reloads.