reactor-async Skill
Async data in Reactor — UseResource (single fetch), UseMutation (writes + optimistic updates), UseInfiniteResource (cursor pagination), and Pending (bubble-up fallback). Use when fetching, caching, paginating, or mutating server data. Published by microsoft in microsoft-ui-reactor.
Decision snapshot
Is this a fit?
Data analysis, Includes SKILL.md, Reusable instructions
Compatibility not yet detected.
Permission behavior not yet detected.
Copy skill directory
2 months ago · MIT license
No specific cautions were detected. Review the source and requested permissions before installing.
What is reactor-async Skill?
Async data in Reactor — UseResource (single fetch), UseMutation (writes + optimistic updates), UseInfiniteResource (cursor pagination), and Pending (bubble-up fallback). Use when fetching, caching, paginating, or mutating server data. Published by microsoft in microsoft-ui-reactor. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement. See how SkillIndex evaluates profiles.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Data analysis
- Data analysis use cases
Declared skill metadata
- Source file: plugins/reactor/skills/reactor-async/SKILL.md
These fields retain source and confidence evidence from the indexed SKILL.md.
Compatibility and setup
- Install or run with Copy skill directory
When to use reactor-async Skill
- Use it for data analysis.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/microsoft-ui-reactor
- Skill file: plugins/reactor/skills/reactor-async/SKILL.md
What it does
Async data in Reactor — UseResource (single fetch), UseMutation (writes + optimistic updates), UseInfiniteResource (cursor pagination), and Pending (bubble-up fallback). Use when fetching, caching, paginating, or mutating server data.
Skill instructions
Async Resources in Reactor Reactor replaces the UseState + UseEffect + manual-cancellation dance with three hooks. Reads return AsyncValue<T, writes return a Mutation handle. The hook owns the cancellation token, dedups across siblings, caches results in a shared QueryCache, and drops late results on unmount. Available on any Component subclass directly; on RenderContext as extension methods for function components (Memo(ctx = ...) or RenderEachTime(ctx = ...)). 1. UseResource — single fetch csharp AsyncValue<T UseResource<T( Func<CancellationToken, Task<T fetcher, object[] deps, ResourceOptions? options = null); AsyncValue<T is a sealed 4-state record: Loading, Data(T Value), Error(Exception), Reloading(T Previous) (stale-while-revalidate). Pattern-match with a switch: csharp class UserCard : Component { public override Element Render() { var user = UseResource( ct = Api.GetUserAsync(userId, ct), deps: new object[] { userId }); return user switch { AsyncValue<User.Loading = TextBlock(
Verified compatibility and discovery
Frequently asked questions
What is reactor-async?
reactor-async is a open-source AI agent skill with Copy skill directory. Async data in Reactor — UseResource (single fetch), UseMutation (writes + optimistic updates), UseInfiniteResource (cursor pagination), and Pending (bubble-up fallback).
Who is reactor-async best for?
reactor-async is best for reusing agent instructions, scripts, and references, data analysis workflows.
How do I install reactor-async?
Install or run reactor-async using Copy skill directory. Check reactor-async for the latest setup command.
Is reactor-async actively maintained?
reactor-async may need a closer maintenance check before production use.
Project health auto-fetched from the source repository.
Maintain this resource?
Review this source-backed profile, send a correction with evidence, or link to it from your documentation. Claims verify your relationship to the project; profile facts still require source evidence and editorial review.