Recherche de sujets et documentation

VérifiéSûr

Recherche web, consultation de documentation et évaluation technologique. Utile pour trouver des informations externes, comparer des options et résoudre des problèmes.

Spar Skills Guide Bot
DocumentationIntermédiaire
2002/06/2026
Claude Code
#research#web-search#documentation-lookup#technology-evaluation

Recommandé pour

Notre avis

Effectue des recherches web, consulte des documentations et évalue des technologies pour fournir des informations actualisées et synthétisées.

Points forts

  • Accès à des sources officielles et récentes
  • Synthèse structurée avec recommandations
  • Sauvegarde automatique des recherches importantes

Limites

  • Nécessite un accès web via Claude Code
  • Qualité dépendante des sources disponibles
  • Peut nécessiter des clarifications sur la question de recherche
Quand l'utiliser

Utilisez cette compétence lorsque vous avez besoin d'informations externes au codebase, comme des documentations d'API, des comparaisons technologiques ou des bonnes pratiques.

Quand l'éviter

Évitez de l'utiliser pour explorer le code existant du projet, implémenter des fonctionnalités ou obtenir des informations déjà présentes dans le codebase.

Analyse de sécurité

Sûr
Score qualité88/100

The skill only uses WebSearch, WebFetch, Read, Write to look up information and save markdown files. No destructive, exfiltration, or obfuscated commands are present.

Aucun point d'attention détecté

Exemples

Technology evaluation
Should we use Redis or Memcached for caching? Compare their features, performance, and trade-offs for our project.
API documentation lookup
How does Stripe webhook verification work? Show me the steps and provide a code example in Python.

name: researching-topics description: > Web search, documentation lookup, and technology evaluation. Use when user says "research", "look up", "find docs", "what is", "compare options", "evaluate", or needs information from outside the codebase. Do NOT use for: codebase exploration (use exploring-codebase), implementing features (use implementing-features). compatibility: "Requires Claude Code with web access." allowed-tools: [WebSearch, WebFetch, Read, Write] metadata: author: agentic-framework version: "${VERSION}"

Researching Topics

Web search, documentation lookup, and technology evaluation.

Instructions

Step 1: Clarify the Research Question

Understand what information the user needs:

  • Specific API documentation?
  • Technology comparison?
  • Best practices for a technique?
  • Bug/error resolution?

Step 2: Search and Gather

Use web search for current information:

  • Official documentation first
  • Stack Overflow for common issues
  • GitHub issues for library-specific problems
  • Blog posts for best practices (prefer recent sources)

Step 3: Synthesize Findings

Present findings organized by relevance:

  • Direct answer to the question
  • Supporting evidence and sources
  • Trade-offs or alternatives if applicable
  • Recommended approach with justification

Step 4: Save if Valuable

If the research informs a decision, save it:

docs/research/YYYY-MM-DD-topic.md

Examples

Example 1: Technology evaluation User says: "Should we use Redis or Memcached for caching?" Steps taken:

  1. Search for current comparisons and benchmarks
  2. Check project's existing infrastructure (STACK.md)
  3. Compare: persistence, data structures, clustering, ease of setup Result: Recommendation with trade-offs table and links to sources.

Example 2: API documentation lookup User says: "How does the Stripe webhook verification work?" Steps taken:

  1. Fetch Stripe's official webhook docs
  2. Extract key steps: signature verification, event handling
  3. Provide code example matching project's language Result: Step-by-step guide with code snippet and security notes.

Troubleshooting

Outdated information found Cause: Search results may include old articles. Solution: Check publication dates. Prefer official docs. Cross-reference multiple sources.

Skills similaires