Token导航 LogoToken导航TokenDH.com
研究检索可写文件clawhub未标认证来源可访问clear审计通过

flipper-zero鳍状肢零

Agent Skill

flipper-zero 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,304

周安装

183

GitHub Stars

公开资料未说明

下载量

1,508
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:flipper-zero(鳍状肢零)
来源仓库:https://github.com/elvisexmachina/flipper-zero
安装命令:
openclaw skills install flipper-zero
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install flipper-zero

简介

通过 USB 串行或 BLE 控制 Flipper Zero 硬件,用于 SubGHz、IR、NFC、GPIO、文件系统、屏幕捕获和输入,无需 Android 或中间应用程序。

SKILL.md

Flipper Zero Control Skill

Control a Flipper Zero hardware hacking tool via USB serial CLI or Bluetooth Low Energy (BLE) — no Android device or intermediary app required. Direct machine-to-Flipper communication with full access to SubGHz, IR, NFC, RFID, BadUSB, GPIO, file system, screen capture, and input control.

Inspired by V3SP3R but without the Android dependency. Four Python scripts, two transports, complete Flipper control from your desk.

Requirements

  • Flipper Zero with USB-C cable and/or Bluetooth enabled
  • Firmware: Tested with Momentum (mntm-008). Should work with official and other community firmwares.
  • Python 3.10+ with a virtual environment
  • Python packages: pyserial, bleak, protobuf, grpcio-tools, Pillow
  • macOS or Linux (BLE via bleak works on both; Windows may need adjustments)
  • Optional: External CC1101 module (e.g., Rabbit Labs Flux Capacitor) for amplified SubGHz

Quick Setup

# Create a dedicated Python environment
python3 -m venv ~/flipper-env
~/flipper-env/bin/pip install pyserial bleak protobuf grpcio-tools Pillow

Transport Comparison

FeatureUSB (flipper_cli.py)BLE (flipper_ble.py)
SubGHz RX/TX✅ Full CLI access❌ Not in Protobuf RPC
File system✅ Text-based✅ Structured protobuf
GPIO✅ Basic✅ Full (pin mode, OTG)
Device info
App launch
LED/Vibro✅ Direct✅ Via alert
Screen capture✅ PNG + ASCII art
D-pad input✅ Full navigation
Wireless
Latency~50ms~200ms

Recommendation: Use USB for SubGHz/IR operations and raw CLI access. Use BLE for wireless file management, GPIO, app control, screen streaming, and input automation.

Scripts

flipper_cli.py — USB Serial CLI

Direct plaintext CLI over USB. Best for SubGHz and IR operations.

~/flipper-env/bin/python3 scripts/flipper_cli.py <command> [args...]

Commands:

flipper_cli.py info                              # Device info + storage
flipper_cli.py detect                            # Quick connection check
flipper_cli.py storage list /ext/subghz          # List directory
flipper_cli.py storage read /ext/file.sub        # Read file contents
flipper_cli.py storage write /ext/path "data"    # Write file
flipper_cli.py storage mkdir /ext/new_dir        # Create directory
flipper_cli.py storage remove /ext/old_file      # Delete (⚠️ HIGH RISK)
flipper_cli.py storage info /ext                 # Storage stats
flipper_cli.py subghz rx 433920000 0 10          # Listen 433.92MHz, internal, 10sec
flipper_cli.py subghz rx 433920000 1 15          # Listen with external CC1101, 15sec
flipper_cli.py subghz tx AABBCC 433920000 400 3 1  # Transmit (⚠️ HIGH RISK)
flipper_cli.py subghz tx_from_file /ext/subghz/file.sub 1 0  # Transmit .sub (⚠️ HIGH RISK)
flipper_cli.py subghz rx_raw 433920000 10        # Raw capture
flipper_cli.py scan_subghz 433920000 30 1        # Scan for 30sec with external
flipper_cli.py ir tx /ext/infrared/remote.ir     # Transmit IR
flipper_cli.py gpio set PA7 1                    # Set GPIO pin
flipper_cli.py led b 255                         # Set blue LED (r|g|b|bl channel)
flipper_cli.py led off                           # All LEDs off
flipper_cli.py vibro 1                           # Vibration on
flipper_cli.py power 5v 1                        # Enable 5V GPIO (external modules)
flipper_cli.py raw "any flipper cli command"     # Raw passthrough

Environment:

  • FLIPPER_PORT — Serial port override (default: auto-detect /dev/cu.usbmodemflip_*)
  • FLIPPER_BAUD — Baud rate (default: 230400)

flipper_ble.py — BLE Protobuf RPC

Wireless control via Flipper's BLE serial service and Protobuf RPC protocol.

~/flipper-env/bin/python3 scripts/flipper_ble.py <command> [args...]

Commands:

flipper_ble.py scan                              # Find Flipper devices
flipper_ble.py ping                              # Connection test
flipper_ble.py info                              # Full device info
flipper_ble.py power_info                        # Battery/power status
flipper_ble.py protobuf_version                  # Protocol version
flipper_ble.py alert                             # LED + vibro + sound alert
flipper_ble.py datetime                          # Get date/time
flipper_ble.py storage list /ext/subghz          # List directory
flipper_ble.py storage read /ext/file.txt        # Read file
flipper_ble.py storage write /ext/path local.txt # Upload file
flipper_ble.py storage mkdir /ext/new_dir        # Create directory
flipper_ble.py storage delete /ext/file          # Delete (⚠️ HIGH RISK)
flipper_ble.py storage info /ext                 # Storage stats
flipper_ble.py storage md5 /ext/file             # File checksum
flipper_ble.py storage rename /ext/old /ext/new  # Rename/move
flipper_ble.py gpio read PA7                     # Read GPIO pin
flipper_ble.py gpio write PA7 1                  # Write GPIO pin
flipper_ble.py gpio mode PA7 output              # Set pin mode
flipper_ble.py gpio otg on                       # Enable 5V OTG power
flipper_ble.py app start SubGHz                  # Launch Flipper app
flipper_ble.py app exit                          # Exit current app
flipper_ble.py reboot                            # Reboot (⚠️ HIGH RISK)

Environment:

  • FLIPPER_BLE_ADDRESS — Skip scan, connect directly to address
  • FLIPPER_BLE_NAME — Device name to search for (default: auto-detect)

Note: BLE requires USB cable to be unplugged — Flipper can't do both simultaneously.

flipper_screen.py — Screen Capture & Input

Captures the Flipper's 128×64 monochrome display and provides D-pad navigation over BLE.

~/flipper-env/bin/python3 scripts/flipper_screen.py <command> [args...]

Commands:

flipper_screen.py screenshot [output.png]        # 4x scaled PNG (Flipper orange on black)
flipper_screen.py ascii                          # Unicode half-block ASCII art
flipper_screen.py press <key> [short|long]       # Button: up/down/left/right/ok/back
flipper_screen.py navigate ok down down ok       # Key sequence
flipper_screen.py watch 10 [output_dir]          # Stream frames for N seconds
flipper_screen.py app_control SubGHz wait:1 screenshot  # Launch app + actions

Actions for app_control and navigate:

  • Button names: up, down, left, right, ok, back
  • Long press: ok:long, back:long
  • Wait: wait:1.0 (seconds)
  • Screenshot: screenshot or ascii

flipper_subghz_ble.py — SubGHz over BLE

Performs SubGHz operations wirelessly by launching the SubGHz app, navigating menus via button presses, and reading results from screen captures.

~/flipper-env/bin/python3 scripts/flipper_subghz_ble.py <command> [args...]

Commands:

flipper_subghz_ble.py read [duration_sec]        # Read mode (protocol decoder)
flipper_subghz_ble.py read_raw [duration_sec]    # Read RAW mode
flipper_subghz_ble.py frequency_analyzer [dur]   # Frequency Analyzer
flipper_subghz_ble.py saved                      # Browse saved signals
flipper_subghz_ble.py transmit <filename>        # Open saved file (⚠️ HIGH RISK)
flipper_subghz_ble.py status                     # Screenshot current screen

Note: Results are visual (PNG/ASCII screenshots) rather than parsed data. For structured SubGHz data, use USB transport.

Risk Classification

Every command is risk-classified following a safety model:

RiskActionsBehavior
LowRead-only: info, list, read, scan, bt infoExecute freely
MediumWrite, mkdir, copy, IR, NFC/RFID emulate, GPIOExecute with note
HighDelete, SubGHz transmit, power off/rebootConfirm with user first

Rule: NEVER execute HIGH risk commands without explicit user confirmation.

Protobuf Definitions

The scripts/proto/ directory contains compiled Python protobuf modules from the Flipper Zero protobuf repo. To regenerate:

git clone --depth 1 https://github.com/flipperdevices/flipperzero-protobuf.git
cd flipperzero-protobuf
python3 -m grpc_tools.protoc --proto_path=. --python_out=<output_dir> \
    flipper.proto storage.proto system.proto gpio.proto \
    application.proto gui.proto property.proto desktop.proto

External CC1101 Module Support

If you have an external CC1101 module (like the Rabbit Labs Flux Capacitor):

  • Use device=1 in any SubGHz command for the external module
  • Use gpio otg on (BLE) or power 5v 1 (USB) to power it via GPIO
  • Always use an antenna — transmitting without one damages the module
  • The external module typically offers better range and sensitivity

Troubleshooting

  • USB port not found: Check ls /dev/cu.usbmodem* — Flipper may need reconnect
  • BLE device not found: Wake the Flipper (press any button), ensure BLE is ON in Settings
  • BLE drops after use: Normal — Flipper sleeps after idle. Just reconnect.
  • Timeout/no response: Flipper might be in an app — press Back to return to CLI
  • Screen capture empty: Display only sends frames on change; static screens won't produce new frames
  • SubGHz no packets: Normal if nothing is transmitting nearby. Try pressing a remote during a scan.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.37%
按下载量换算1,393

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills