用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/shorty456132/av-module-maker --skill compile命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Scaffold a Crestron SIMPL+ module (.usp) from a device description, with correct INPUT/OUTPUT signal structure and event handlers
Review and revise an existing Crestron SIMPL+ module (.usp) — fix bugs, improve logic, and verify against SIMPL+ constraints
(WIP) Scaffold a Crestron SIMPL# library (.clz) in C# that exposes signals to SIMPL Windows as a custom module
正在显示 SKILL.md
| name | compile |
| description | Compile a Q-SYS plugin directory into a single .qplug file |
| argument-hint | plugin directory path |
Run the plugin compiler to resolve all --[[ #include ]] directives and produce a .qplug file.
Target directory: $ARGUMENTS
If $ARGUMENTS is empty, ask the user which plugin directory to compile.
Before compiling, read the info.lua file in the target directory to find the current version (the Version field in PluginInfo). The version follows semantic format: Major.Minor.Fix.Development.
Display the current version to the user and ask which component to bump using AskUserQuestion with these options:
Then run the compile command with the appropriate --bump flag:
python "${CLAUDE_PLUGIN_ROOT}/scripts/qsys/compile.py" $ARGUMENTS --bump=<choice>
If the user chooses Skip, run without the --bump flag:
python "${CLAUDE_PLUGIN_ROOT}/scripts/qsys/compile.py" $ARGUMENTS
If the compile succeeds, tell the user the new version and where the .qplug file was created.