소스 정보
- 저장소
- 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-commands명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | uno-mvux-commands |
| description | Create and use commands in MVUX for user interactions. |
| when_to_use | Use when binding a Button (or other control) to a method on the Model, understanding how methods become commands in the generated ViewModel, passing feed/state values as parameters to commands, controlling which methods generate commands (implicit vs explicit), or disabling command generation for specific methods. |
| metadata | {"author":"uno-platform","version":"2.4","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 commands documentation:
uno_platform_docs_search("MVUX commands automatic generation method invocation")
Primary documentation pages:
external/uno.extensions/doc/Learn/Mvux/Advanced/Commands.mdexternal/uno.extensions/doc/Learn/Mvux/Walkthrough/Commands.howto.mdFetch the reference page for complete details:
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Mvux/Advanced/Commands.md")
From the fetched docs, any public method on a Model automatically becomes a command in the generated ViewModel. The reference page covers:
CommandParameter from XAML[ImplicitCommands] attribute to enable/disable generationFor step-by-step examples:
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Mvux/Walkthrough/Commands.howto.md")
This covers creating basic commands, using feed values in commands, can-execute logic, and disabling command generation.
If the user needs manual control over commands, the reference page has an "Explicit command creation" section covering Command.Create(...).
IFeed<T>, IListFeed<T>, IState<T>, IListState<T>) — the matching parameter receives a snapshot of the current value.IState<T> and IListState<T> expose UpdateAsync / AddAsync / RemoveAsync. IFeed<T> and IListFeed<T> are read-only — calling .Update(...), .UpdateAsync(...), .AddAsync(...), or .RemoveAsync(...) on an injected IListFeed/IFeed is a compile error.IListState<T> (not IListFeed<T>); convert with ListState.FromFeed(this, sourceFeed) if needed.UpdateAsync, the updater must be pure — derive the new value solely from the current value, with no captured external state or side effects. See [[uno-mvux-state-basics]] and [[uno-mvux-liststate]] for details.*Model partial record generates a command in the ViewModelIAsyncCommand — they handle async properly[ImplicitCommands(false)] on a Model to disable automatic generationCommand="{Binding MethodName}"Save() → Save command)