From antigravity-awesome-skills
Provides quick-reference for Makepad errors, fixes, debug tips, code quality refactoring, API lookups, and adaptive layouts. Use for troubleshooting builds, runtime issues, and UI diagnostics.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-awesome-skills:makepad-referenceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This category provides reference materials for debugging, code quality, and advanced layout patterns.
This category provides reference materials for debugging, code quality, and advanced layout patterns.
| Topic | File | Use When |
|---|---|---|
| API Documentation | Official docs index, quick API reference | Finding detailed API info |
| Troubleshooting | Common errors and fixes | Build fails, runtime errors |
| Code Quality | Makepad-aware refactoring | Simplifying code safely |
| Adaptive Layout | Desktop/mobile responsive | Cross-platform layouts |
| Error | Quick Fix |
|---|---|
no matching field: font | Use text_style: <THEME_FONT_*>{} |
Color parse error (ends in e) | Change last digit (e.g., #14141e → #14141f) |
set_text missing argument | Add cx as first argument |
| UI not updating | Call redraw(cx) after changes |
| Widget not found | Check ID spelling, use ids!() for paths |
# Run with line info for better error messages
MAKEPAD=lines cargo +nightly run
// Add logging
log!("Value: {:?}", my_value);
log!("State: {} / {}", self.counter, self.is_loading);
npx claudepluginhub sickn33/antigravity-awesome-skills --plugin antigravity-awesome-skillsProvides quick-reference material for common Makepad errors, debugging tips, API lookups, and adaptive layout patterns. Acts as a central starting point before specialized Makepad skills.
Generates Makepad Rust app boilerplate with live_design!, app_main!, Cargo.toml setup, and event handling. Use for project initialization, getting started, and basic structure.
Routes Makepad 2.0 GUI questions to specialized skills and applies design anchors for architecture, component splitting, state management, data flow, and rendering.