基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/unoplatform/studio --skill uno-mvux-pagination命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | uno-mvux-pagination |
| description | Implement paginated and infinite scrolling lists in MVUX. |
| when_to_use | Use when loading large datasets incrementally (page by page), implementing infinite scroll in `ListView`, `GridView`, or `ItemsRepeater`, working with APIs that use offset/limit or cursor-based pagination, or using `ListFeed.PaginatedAsync(...)`. |
| 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 pagination documentation:
uno_platform_docs_search("MVUX pagination infinite scrolling PaginatedAsync")
Primary documentation pages:
external/uno.extensions/doc/Learn/Mvux/Advanced/Pagination.mdexternal/uno.chefs/doc/mvux/Pagination.mdexternal/uno.extensions/doc/Reference/Reactive/in-apps.mdFetch the reference page:
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Mvux/Advanced/Pagination.md")
Fetch the Chefs app example for a real-world implementation:
uno_platform_docs_fetch(sourcePath="external/uno.chefs/doc/mvux/Pagination.md")
From the fetched docs:
PageRequest.DesiredSize, PageRequest.CurrentCount)If the user is using ItemsRepeater for incremental loading:
uno_platform_docs_search("ItemsRepeater MVUX pagination incremental loading")
Key page:
external/uno.toolkit.ui/doc/helpers/walkthroughs/itemsrepeater-extensions.howto.mdListFeed.PaginatedAsync(...) to create a paginated list feedPageRequest with DesiredSize and CurrentCountListView supports incremental loading automatically when bound to a paginated feedItemsRepeater, use the Toolkit's ItemsRepeaterExtensions for incremental loading support