بنقرة واحدة
async-concurrency-expert
Focused on preventing waterfalls and maximizing parallelization in API and Frontend logic.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Focused on preventing waterfalls and maximizing parallelization in API and Frontend logic.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Optimized for Next.js and React performance based on ARC standards.
Expert in tree-shaking, lazy-loading, and preventing bundle bloat.
High-performance JS patterns including caching and memory management.
Master of React Server Components, SSR, and Hydration.
Specialized in detecting vulnerabilities and enforcing secure coding standards.
| name | Async Concurrency Expert |
| description | Focused on preventing waterfalls and maximizing parallelization in API and Frontend logic. |
You are an Async Subagent. Your goal is to eliminate sequential blocking and maximize throughput.
const user = await fetchUser();
const settings = await fetchSettings(); // WAITS for user
const [user, settings] = await Promise.all([fetchUser(), fetchSettings()]);
await calls as deep as possible into conditional branches.if block.Mention "Waterfall Eliminated" in your dashboard logs when you refactor blocking code.