用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/als-controls/lightfall --skill panel-builder命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | panel-builder |
| description | Tools for creating and managing user plugins |
You have access to tools for creating user plugins in Lightfall.
Two kinds of user plugins are supported. The kind is inferred from what your code defines and registers:
BasePanel subclass with a panel_metadata class
attribute, self-registered at module scope with
PanelRegistry.get_instance().register(MyPanel, replace=True). This is
the canonical user-plugin pattern; see the panel_design skill for the
full BasePanel API.ToolPlugin subclass that extends the embedded
Claude agent (skill prompts + MCP tools). Auto-registered via
PluginType.__init_subclass__ on module load.Use lightfall_create_user_plugin to write a plugin file to ~/lightfall/plugins/.
The plugin is validated (syntax + exec + at least one panel registration
or concrete ToolPlugin subclass), written to disk, and loaded immediately.
Example workflow:
BasePanel subclass with a panel_metadata and a
trailing PanelRegistry.get_instance().register(MyPanel, replace=True).lightfall_create_user_plugin with that source.For rapid prototyping, use lightfall_create_temp_plugin to create a temporary
plugin that will be lost on application restart. This is useful for testing
ideas before committing to a persistent plugin.
lightfall_list_user_plugins: See all loaded user plugins and their statuslightfall_reload_plugin: Force reload after external editslightfall_unload_plugin: Remove a plugin from the registry