From context-engine
Chrome DevTools debugging and browser automation via MCP. Auto-loaded when working with browser debugging, performance analysis, or web inspection tasks.
npx claudepluginhub littlelingo/context-engine --plugin context-engineThis skill uses the workspace's default tool permissions.
Browser debugging, performance profiling, and page inspection via the Chrome DevTools Protocol.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Share bugs, ideas, or general feedback.
Browser debugging, performance profiling, and page inspection via the Chrome DevTools Protocol.
list_pages to find available targetsselect_page or navigate_page to target the right pagetake_snapshot (DOM), take_screenshot, evaluate_scriptperformance_start_trace → reproduce issue → performance_stop_trace → performance_analyze_insightlighthouse_audit or manual DOM inspectionnavigate_page, list_pages, select_page, new_page, close_pagetake_snapshot, take_screenshot, evaluate_scriptclick, fill, type_text, press_key, hover, dragperformance_start_trace, performance_stop_trace, performance_analyze_insightlist_network_requests, get_network_requestlist_console_messages, get_console_messagelighthouse_audit, take_memory_snapshot, emulatelist_pages first to verify a debuggable target existstake_snapshot (DOM tree) over take_screenshot when text content matters — DOM text is far smaller than base64 imagesperformance_analyze_insight provides data-driven answerslist_network_requests is more reliable than console.log for API debugginglist_network_requests rather than fetching all requests — filter to the domain or path you care aboutget_console_message for specific entries rather than list_console_messages for the full log--remote-debugging-port flag — if list_pages returns nothing, Chrome isn't in debug modeevaluate_script runs in the page context, not Node.js — no require() or fs accessresize_page first if testing responsive layoutsFor available tools, MCP configuration, and startup instructions, read REFERENCE.md in this directory.