Meishe Agent Skills
Agent Compatibility
The skills use the open Agent Skills format and do not require a provider-specific runtime API. They can be installed with the skills CLI for Codex, Cursor, Qoder, Claude Code, and other mainstream agents.
Common agent identifiers:
| Agent | --agent value |
|---|---|
| Codex | codex |
| Cursor | cursor |
| Qoder | qoder |
| Claude Code | claude-code |
When --agent is omitted, the CLI detects installed agents and presents an interactive selection.
Requirements
- Node.js 18 or later
npx- The development toolchain required by the selected skill, such as Xcode for iOS or Android Studio and Java for Android
- Any SDK package, license, credentials, or signing material required by the selected Meishe product
Product-specific prerequisites and restrictions are documented inside each skill.
Discover Available Skills
Run this command in the project where the skills will be used:
npx skills add MeiShe-Skills/meishe-skills --listThe full GitHub URL is also supported:
npx skills add https://github.com/MeiShe-Skills/meishe-skills --listTreat this command's output as the authoritative catalog for the current repository version.
Current ShortVideo Skills
The currently published ShortVideo integration routes use the following names:
| Skill | Target |
|---|---|
meishe-react-native-shortvideo-docking | React Native Android, iOS, or both |
meishe-flutter-shortvideo-docking | Flutter Android, iOS, or both |
meishe-native-ios-shortvideo-docking | Native iOS |
meishe-native-android-shortvideo-docking | Native Android |
This table describes the current ShortVideo routes only. It is not a fixed repository-wide catalog; use --list to discover all available skills, including skills added later.
Interactive Installation
Let the CLI detect an agent and select skills interactively:
npx skills add MeiShe-Skills/meishe-skillsThe default scope is the current project. Add --global to make the selected skills available across projects:
npx skills add MeiShe-Skills/meishe-skills --globalInstall for a Specific Agent
Install every skill currently available in the repository for one agent:
npx skills add MeiShe-Skills/meishe-skills \
--skill '*' \
--agent codexReplace codex with cursor, qoder, claude-code, or another identifier supported by the CLI. Add --global for a global installation and --yes for a non-interactive installation.
Install the complete repository catalog for several agents:
npx skills add MeiShe-Skills/meishe-skills \
--skill '*' \
--agent codex \
--agent cursor \
--agent qoder \
--agent claude-codeInstall every available skill to every agent supported by the local CLI:
npx skills add MeiShe-Skills/meishe-skills --allInstall Selected Skills
First run the --list command, then select a name from its output. For example:
npx skills add MeiShe-Skills/meishe-skills \
--skill meishe-react-native-shortvideo-docking \
--agent cursorRepeat --skill to install several selected skills:
npx skills add MeiShe-Skills/meishe-skills \
--skill SKILL_NAME_1 \
--skill SKILL_NAME_2 \
--agent claude-codeDownload from Meishe
If access to GitHub is slow or unavailable, download the latest Meishe Agent Skills package from the Meishe Developer Center, then extract it to a local directory.
List the skills in the downloaded package:
npx skills add /absolute/path/to/meishe-skills --listInstall interactively from the local package:
npx skills add /absolute/path/to/meishe-skillsInstall all skills in the local package for a specific agent:
npx skills add /absolute/path/to/meishe-skills \
--skill '*' \
--agent cursorThe local-path installation supports the same --global, --agent, --skill, --all, and --yes options as the GitHub installation.
Verify Installation
List installed skills:
npx skills listFilter by agent:
npx skills list --agent codex
npx skills list --agent cursor
npx skills list --agent qoder
npx skills list --agent claude-codeList only globally installed skills:
npx skills list --globalUpdate
Update all project-level skills:
npx skills update --projectUpdate all global skills:
npx skills update --globalUpdate one selected skill:
npx skills update meishe-react-native-shortvideo-dockingNotes
- Each skill must include its own
SKILL.md, scripts, references, and assets. - Use only the official package type and version supported by the selected skill.
- Follow the selected skill's device requirements. Mobile SDK demos may require a physical Android or iOS device and may not support emulators or simulators.