ソース情報
- リポジトリ
- als-controls/lightfall
- ソースの最終更新活動
- 2026年8月2日 08:01
- 検出された SKILL.md の言語
- 英語
- スター
- 7
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/als-controls/lightfall --skill panel-builderコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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