reactor-getting-started Skill
Reactor essentials in one place — React-to-Reactor mental model, minimal app shape, hooks, the most-used factories, the critical gotchas, and project setup. This is the only skill you need loaded for typical Reactor work; load topical skills (reactor-async, reactor-design, etc.) only when the task explicitly calls for Published by microsoft in microsoft-ui-reactor.
What is reactor-getting-started Skill?
Reactor essentials in one place — React-to-Reactor mental model, minimal app shape, hooks, the most-used factories, the critical gotchas, and project setup. This is the only skill you need loaded for typical Reactor work; load topical skills (reactor-async, reactor-design, etc.) only when the task explicitly calls for 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.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Design and media
- Design and media use cases
Technical details
- Install or run with Copy skill directory
When to use reactor-getting-started Skill
- Use it for design and media.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/microsoft-ui-reactor
- Skill file: plugins/reactor/skills/reactor-getting-started/SKILL.md
What it does
Reactor essentials in one place — React-to-Reactor mental model, minimal app shape, hooks, the most-used factories, the critical gotchas, and project setup. This is the only skill you need loaded for typical Reactor work; load topical skills (reactor-async, reactor-design, etc.) only when the task explicitly calls for
Skill instructions
Coming from React? Read this first. Reactor concepts are React's, with one C spelling. If you know React, you already know how Reactor works — components render an element tree, hooks manage state and effects, lists need keys, lifting state up is the same. Trust your React intuition for shape; verify the names against the table below or references/reactor.api.txt. | React | Reactor (C) | |---|---| | function App() { … } | class App : Component { override Element Render() { … } } | | useState(0) | var (count, setCount) = UseState(0); | | useReducer(reduce, init) | var (state, dispatch) = UseReducer<TState,TAction(reduce, init); | | useEffect(fn, [dep]) | UseEffect(fn, dep); | | useMemo(() = v, [dep]) | UseMemo(() = v, dep) | | useCallback(fn, [dep]) | UseCallback(fn, dep) | | useRef(v) | UseRef(v) | | callback ref / ref={node = …} | UseElementRef<T() + .Ref(r) | | useContext(Ctx) | UseContext(Ctx) | | <Provider value={x}{c}</Provider | c.Provide(Ctx, x) | | <div (linear layout) | FlexCo
Explore related resources
Frequently asked questions
What is reactor-getting-started?
reactor-getting-started is a open-source AI agent skill with Copy skill directory. Reactor essentials in one place — React-to-Reactor mental model, minimal app shape, hooks, the most-used factories, the critical gotchas, and project setup.
Who is reactor-getting-started best for?
reactor-getting-started is best for reusing agent instructions, scripts, and references, design and media workflows.
How do I install reactor-getting-started?
Install or run reactor-getting-started using Copy skill directory. Check reactor-getting-started for the latest setup command.
Is reactor-getting-started actively maintained?
reactor-getting-started may need a closer maintenance check before production use.
Auto-fetched from GitHub.