用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill flipper-zero命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | flipper-zero |
| description | Flipper Zero app development (FAP), Sub-GHz scripting, badUSB automation, and GPIO hardware bridging. |
Goal: Develop Flipper Application Packages (FAPs) in C, create BadUSB/Ducky scripts, or interface the top GPIO pins with external hardware.
Flipper apps are compiled out-of-tree using ufbt (Micro Flipper Build Tool).
#include <furi.h>
#include <gui/gui.h>
int32_t my_app_app(void* p) {
UNUSED(p);
FURI_LOG_I("MY_APP", "Hello Flipper!");
// Basic infinite loop until exit
while(1) {
furi_delay_ms(1000);
}
return 0;
}
Compilation: Run ufbt to build the .fap. Run ufbt launch to deploy to a USB-connected Flipper.
furi_hal_gpio_write()) for bit-banging or peripheral API.Using the CC1101 chip. You can invoke Sub-GHz transmissions directly in firmware, or using .sub files.
.sub file format supports raw AM/FM modulation plots (Raw IQ) or pre-parsed protocols like KeeLoq.Drop standard Ducky Script 1.0/2.0 .txt files onto the MicroSD card under badusb/.
DELAY 1000
GUI r
DELAY 200
STRING cmd
ENTER
DELAY 500
STRING echo "Hacked" > proof.txt
ENTER