by ZhangHanDong
Build App with Makepad and AI skills
# Add to your Claude Code skills
git clone https://github.com/ZhangHanDong/makepad-skillsAgent skills for building cross-platform UI applications with the Makepad framework in Rust.
Makepad is a next-generation UI framework written in Rust that enables building high-performance, cross-platform applications. Key features include:
live_design! DSL for rapid UI developmentProject Robius is an open-source initiative to build a full-featured application development framework in Rust. Production applications built with Makepad include:
These skills are extracted from patterns used in Robrix and Moly.
Install via Claude Code's plugin marketplace:
# Step 1: Add marketplace
/plugin marketplace add ZhangHanDong/makepad-skills
# Step 2: Install the plugin (includes all 20 skills)
/plugin install makepad-skills@makepad-skills-marketplace
Using Plugin Skills:
Plugin skills are accessed via namespace format (they won't appear in /skills list, but can be loaded):
# Load specific skills by namespace
/makepad-skills:makepad-widgets
/makepad-skills:makepad-layout
/makepad-skills:robius-widget-patterns
# Or just ask questions - hooks will auto-route to relevant skills
"How do I create a Makepad button?"
"makepad 布局怎么居中?"
Manage installed plugins:
/plugin # List installed plugins
/plugin uninstall makepad-skills@makepad-skills-marketplace # Uninstall
Use the install script for one-command setup:
# Install to current project
curl -fsSL https://raw.githubusercontent.com/ZhangHanDong/makepad-skills/main/install.sh | bash
# Install with hooks enabled
curl -fsSL https://raw.githubusercontent.com/ZhangHanDong/makepad-skills/main/install.sh | bash -s -- --with-hooks
# Install to specific project
curl -fsSL https://raw.githubusercontent.com/ZhangHanDong/makepad-skills/main/install.sh | bash -s -- --target /path/to/project
# Install for Codex (.codex/skills)
curl -fsSL https:...