Agent skill · DevOps & Cloud

makepad-deployment

deploy, package, APK, IPA, 打包, 部署, cargo-packager, cargo-makepad, WASM, Android, iOS, distribution, installer, .deb, .dmg, .nsis, GitHub Actions, CI, action, marketplace

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill makepad-deployment --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 12 KB
Bundled scripts: none
Path: skills/makepad-deployment/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Makepad Packaging & Deployment This skill covers packaging Makepad applications for all supported platforms. ## When to Use - You need to package, distribute, or automate deployment of a Makepad application. - The task involves desktop installers, APK/IPA builds, WebAssembly output, or CI-based release artifacts. - You need guidance on `cargo-packager`, `cargo-makepad`, or GitHub Actions packaging flows for Makepad. ## Quick Navigation | Platform | Tool | Output | |----------|------|--------| | [Desktop](#desktop-packaging) | `cargo-packager` | .deb, .nsis, .dmg | | [Android](#android) | `cargo-makepad` | .apk | | [iOS](#ios) | `cargo-makepad` | .app, .ipa | | [Web](#wasm-packaging) | `cargo-makepad` | Wasm + HTML/JS | | [CI/CD](#github-actions-packaging) | `makepad-packaging-action` | GitHub Release assets | --- ## GitHub Actions Packaging Use `makepad-packaging-action` to package Makepad apps in CI. It wraps `cargo-packager` (desktop) and `cargo-makepad` (mobile), and can upload artifacts to GitHub Releases. ```yaml jobs: package: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: Project-Robius-China/makepad-packaging-action@v1 with: args: --target x86_64-unknown

What's inside
Steps it walks through
  1. When to Use
  2. Quick Navigation
  3. GitHub Actions Packaging
  4. Desktop Packaging
  5. Install Tools
  6. Configure Cargo.toml
  7. Linux (Debian/Ubuntu)
  8. Windows
  9. macOS
  10. Platform-Specific Configuration
  11. Mobile Packaging
  12. Install cargo-makepad
  13. Android
  14. iOS
Commands it runs
Install cargo-packager
cargo install cargo-packager --locked
Install robius-packaging-commands (v0.2.1)
cargo install --version 0.2.1 --locked \
robius-packaging-commands
Install dependencies
sudo apt-get update
sudo apt-get install libssl-dev libsqlite3-dev pkg-config \
binfmt-support libxcursor-dev libx11-dev libasound2-dev libpulse-dev
Build package
More from agentic-awesome-skills
All skills →
About this skill
What does the makepad-deployment skill do?

deploy, package, APK, IPA, 打包, 部署, cargo-packager, cargo-makepad, WASM, Android, iOS, distribution, installer, .deb, .dmg, .nsis, GitHub Actions, CI, action, marketplace

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill makepad-deployment --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going