ansible-automation-eng…
Ansible automation: playbooks, roles, collections, Molecule testing, Vault security.
<!-- Loaded by react-native-engineer when task involves useState, derived state, Zustand, state structure, dispatchers, ground truth -->
$ npx -y skills add notque/vexjoy-agent --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
<!-- Loaded by react-native-engineer when task involves useState, derived state, Zustand, state structure, dispatchers, ground truth -->
<!-- Loaded by react-native-engineer when task involves useState, derived state, Zustand, state structure, dispatchers, ground truth -->
**Impact:** MEDIUM — prevents stale closures
**Instead of:**
const onLayout = (e: LayoutChangeEvent) => {
const { width, height } = e.nativeEvent.layout
if (size?.width !== width || size?.height !== height) setSize({ width, height })
}**Use:**
const onLayout = (e: LayoutChangeEvent) => {
const { width, height } = e.nativeEvent.layout
setSize((prev) => {
if (prev?.width === width && prev?.height === height) return prev
return { width, height }
})
}For simple cases: `setCount((prev) => prev + 1)` instead of `setCount(count + 1)`.
Not needed for primitive state set to a new value directly.
---
**Impact:** MEDIUM — reactive fallbacks, no stale initialState
**Instead of:**
const [enabled, setEnabled] = useState(defaultEnabled) // locks at mount
**Use:**
const [_enabled, setEnabled] = useState<boolean | undefined>(undefined) const enabled = _enabled ?? defaultEnabled // undefined = user hasn't touched it — falls back to parent prop // Once user interacts, their choice persists
With server data:
const [_theme, setTheme] = useState<string | undefined>(undefined) const theme = _theme ?? data.theme
---
**Impact:** MEDIUM — fewer re-renders, no state drift
**Instead of:**
const [total, setTotal] = useState(0)
useEffect(() => { setTotal(items.reduce(...)) }, [items])**Use:**
const total = items.reduce((sum, item) => sum + item.price, 0) const itemCount = items.length
State is the minimal source of truth. Everything else is derived.
---
**Impact:** HIGH — single source of truth, easier debugging
State variables represent what is happening (`pressed`, `progress`, `isOpen`), not derived visuals (`scale`, `opacity`, `height`). Derive visuals from state.
**Instead of:**
const [isExpanded, setIsExpanded] = useState(false)
const [height, setHeight] = useState(0)
useEffect(() => { setHeight(isExpanded ? 200 : 0) }, [isExpanded])**Use:**
const [isExpanded, setIsExpanded] = useState(false) const height = isExpanded ? 200 : 0
Same principle applies to Reanimated shared values — see `animation-patterns.md`.
---
**Impact:** HIGH — prevents render thrashing during scroll
Scroll events fire 60/s. `useState` for scroll position = re-render every frame = dropped frames.
**Instead of:**
const [scrollY, setScrollY] = useState(0) const onScroll = (e) => setScrollY(e.nativeEvent.contentOffset.y)
**Use (Reanimated for scroll-driven animations):**
const scrollY = useSharedValue(0)
const onScroll = useAnimatedScrollHandler({
onScroll: (e) => { scrollY.value = e.contentOffset.y }
})
return <Animated.ScrollView onScroll={onScroll} scrollEventThrottle={16} />**Use (ref for non-reactive tracking):**
const scrollY = useRef(0)
const onScroll = (e) => { scrollY.current = e.nativeEvent.contentOffset.y }Essays and writing behind this toolkit live at vexjoy.com. VexJoy Agent connects plain-English requests to specialist agents, skills, and workflows. /do selects the knowledge and tools needed for your task.
Repo: notque/vexjoy-agent
Ansible automation: playbooks, roles, collections, Molecule testing, Vault security.
**Scope**: Module selection patterns, builtin vs command/shell decisions, collection modules, and version-specific module changes **Version range**:…
**Scope**: Molecule test scenarios, ansible-lint rules, idempotency validation, and check-mode patterns **Version range**: Molecule 6.0+ / ansible-lint 6.0+ /…
Universal rules injected by /do at dispatch. Each agent's .md file supplies domain rules.
**Scope**: Failure modes in agent output style — over-reporting, self-congratulation, verbose narration, and hedging. Covers what to detect and how to fix…
Zero-dependency combat visual upgrades: CSS particle replacement, Framer Motion combat juice, CSS 3D card transforms.