Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/als-controls/lightfall --skill panel-builder명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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