ソース情報
- リポジトリ
- unoplatform/studio
- ソースの最終更新活動
- 2026年6月9日 19:39
- 検出された SKILL.md の言語
- 英語
- スター
- 10
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/unoplatform/studio --skill uno-mvux-feedviewコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | uno-mvux-feedview |
| description | Display async feed data with FeedView control. |
| when_to_use | Use when displaying data from an `IFeed<T>` or `IState<T>` in XAML, showing loading spinners, error messages, or empty-state UI automatically, customizing templates for different data states (value, progress, error, none), or binding feed data inside a `DataTemplate`. |
| metadata | {"author":"uno-platform","version":"2.3","category":"mvux"} |
Docs lookup: call
uno_platform_docs_search(...)first, thenuno_platform_docs_fetch(sourcePath="…")using thesourcePathfield from a result (a relative.mdpath; add the result'sanchorfor a section). Never pass a URL, a.htmllink, or a hand-built path.
Search for and fetch the FeedView documentation:
uno_platform_docs_search("MVUX FeedView control displaying async data templates")
Primary documentation pages:
external/uno.extensions/doc/Learn/Mvux/FeedView.mdexternal/uno.extensions/doc/Learn/Mvux/Walkthrough/FeedView.howto.mdFetch the full reference page:
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Mvux/FeedView.md")
From the fetched docs, extract the available templates:
<DataTemplate>) — shown when data is availableFor step-by-step implementation guidance:
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Mvux/Walkthrough/FeedView.howto.md")
This covers rendering IFeed<T>, IState<T>, customizing templates, and refresh behavior.
If the user is displaying a collection feed, search for:
uno_platform_docs_search("MVUX FeedView list feed ListView collection display")
Key page:
external/uno.extensions/doc/Learn/Mvux/Walkthrough/ListFeed.howto.mdxmlns:mvux="using:Uno.Extensions.Reactive.UI"Source property binds to the feed/state: Source="{Binding MyFeed}"{Binding Data} (e.g., {Binding Data.Name})<DataTemplate> content child acts as the ValueTemplateRefresh command — no need to create one manually