.agent/skills/async-concurrency/SKILL.md
Focused on preventing waterfalls and maximizing parallelization in API and Frontend logic.
npx skillsauth add ashishop/arc-protocol Async Concurrency ExpertInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
testing
Specialized in detecting vulnerabilities and enforcing secure coding standards.
development
Master of React Server Components, SSR, and Hydration.
development
Optimized for Next.js and React performance based on ARC standards.
testing
High-performance JS patterns including caching and memory management.