plugins/core/skills/research/SKILL.md
Use when current web info needed, verifying APIs still work, checking latest versions, or avoiding outdated implementations
npx skillsauth add technickai/ai-coding-config researchInstall 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.
Examples: "Is useEffect still the way to handle this in React 18?", "Did Stripe change their webhook payload?", "What's the current Node LTS version?"
Just search, grab the answer, keep coding. No storage, no ceremony, no permission needed. </quick-check>
<deep-dive> When: The decision really matters Time: 5-15 minutesExamples: Choosing between competing technologies, understanding a new architectural pattern, debugging something that doesn't match documentation.
Always ask first: "This needs deeper research (5-15 min). Should I dig into this now?" Let the user decide if they want to pause for research or continue with existing knowledge.
Research thoroughly, save findings in research/[topic].md for team reference. </deep-dive>
<tool-selection> Always use the best available web search. Priority order:MCP servers (preferred when available):
Built-in tools (fallback):
Tell the user which you're using:
This transparency helps users understand tool selection and configure MCP servers if desired. </tool-selection>
<search-strategy> Start with official sources - docs, changelogs, GitHub releases. Then expand to community discussions if needed. </search-strategy> <output-format> Output should be scannable and actionable. Skip the fluff, get to what matters.Good pattern:
Breaking change: redirectToCheckout() removed in v4
New pattern:
Migration: [Specific code example]
Source: Stripe docs v2024.11.15 </output-format>
<key-principles> Recognize patterns: When you see version-specific errors, deprecated methods, or post-2023 technologies, that signals research is needed.Be transparent: Say "I should verify this" or "Let me check current best practices" rather than guessing.
Speed over perfection: For quick checks, first good answer wins. For deep dives, thoroughness matters.
No unnecessary storage: Quick research lives in the conversation. Only save deep research that others might reference. </key-principles>
<common-pitfall> Don't research everything. If your React knowledge from 2023 still works and the user isn't hitting issues, just build. Research is a tool, not a crutch. </common-pitfall>research
Use when analyzing YouTube videos, extracting insights from tutorials, researching video content, or learning from talks and presentations
tools
Use when writing prompts, agent instructions, SKILL.md, commands, system prompts, Task tool prompts, prompt engineering, or LLM-to-LLM content
development
Use when writing, reviewing, or refactoring React or Next.js code, optimizing React performance, fixing re-render issues, reducing bundle size, eliminating waterfalls, or improving data fetching patterns
development
Use when debugging bugs, test failures, unexpected behavior, or needing to find root cause before fixing