Claude-skill-registry async-boundary-optimization
Optimize async boundaries to balance responsiveness, streaming, and error containment.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/async-boundary-optimization" ~/.claude/skills/majiayu000-claude-skill-registry-async-boundary-optimization && rm -rf "$T"
manifest:
skills/data/async-boundary-optimization/SKILL.mdsource content
Async Boundary Optimization (React 18)
Summary
Optimize async boundaries to balance responsiveness, streaming, and error containment.
Key Capabilities
- Place
boundaries to minimize waterfalling.Suspense - Use error boundaries for targeted recovery.
- Coordinate async boundaries with data prefetching.
PhD-Level Challenges
- Compute boundary placement as an optimization problem.
- Formalize error containment guarantees across boundaries.
- Evaluate boundary placement under changing network profiles.
Acceptance Criteria
- Provide boundary placement analysis with metrics.
- Demonstrate reduced waterfalling in data loading.
- Document error containment behavior.