Recherche multi-sources avec gopher-cli

VérifiéSûr

Recherchez un sujet en interrogeant plusieurs sources (Hacker News, vault, docs) avec gopher-cli, puis récupérez les documents pertinents, synthétisez les résultats dans une note structurée en markdown et enregistrez-la dans le vault.

Spar Skills Guide Bot
DocumentationIntermédiaire
2002/06/2026
Claude Code
#research#gopher-cli#note-taking#knowledge-management

Recommandé pour

Notre avis

Cette compétence permet de rechercher un sujet dans les sources de gopher-cli, de lire les documents pertinents et de sauvegarder une note structurée dans le coffre-fort.

Points forts

  • Découvre automatiquement les sources disponibles via gopher-cli.
  • Recherche largement avec des synonymes et termes connexes.
  • Extrait et cite les sources dans la note finale.
  • Sauvegarde directement dans le coffre-fort pour une consultation ultérieure.

Limites

  • Dépend de la disponibilité et de la qualité des sources dans gopher-cli.
  • Ne peut pas analyser des documents non indexés par gopher-cli.
  • Nécessite une vérification manuelle des résultats pour éviter les doublons.
Quand l'utiliser

Utilisez cette compétence lorsque vous devez synthétiser des informations provenant de multiples sources gérées par gopher-cli et les conserver dans un format structuré.

Quand l'éviter

Évitez cette compétence pour des sujets très techniques nécessitant une analyse approfondie d'articles académiques non présents dans gopher-cli.

Analyse de sécurité

Sûr
Score qualité90/100

The skill uses only gopher-cli commands for browsing, searching, fetching, and publishing content within a local vault. There are no destructive commands, no network calls to external servers, no obfuscation, and no exfiltration of data. The Bash tool usage is limited to safe local operations.

Aucun point d'attention détecté

Exemples

Research quantum computing basics
Research the topic: quantum computing basics
Research React performance tips
Research the topic: best practices for React performance optimization
Research climate change impacts
Research the topic: impacts of climate change on agriculture

name: research description: Research a topic across gopher-cli sources, read relevant documents, and save a structured summary to the vault argument-hint: [topic]

Research the topic: $ARGUMENTS

Follow this workflow using the gopher-cli CLI via Bash tool calls. Output is auto-JSON when piped.

1. Discover sources

List available namespaces and browse each root to see what's available:

gopher-cli browse
gopher-cli browse feed.hackernews/
gopher-cli browse vault/

2. Search for relevant content

Search across every namespace with keywords from the topic. Cast a wide net — try synonyms and related terms:

gopher-cli search feed.hackernews/ "topic keywords"
gopher-cli search vault/ "topic keywords"
gopher-cli search docs/ "related term"

3. Read the most relevant documents

Fetch the top results. Extract key facts, quotes, and insights. Note which source each piece came from:

gopher-cli fetch feed.hackernews/entry/5
gopher-cli fetch vault/research/related-note.md

4. Synthesize findings

Produce a structured research note in markdown:

# Research: [topic]
Date: [today]

## Summary
[2-3 sentence overview]

## Key Findings
- [finding 1 — with source]
- [finding 2 — with source]
- ...

## Details
[longer analysis organized by theme]

## Sources
- [namespace/path] — [what it contained]

5. Save to vault

Publish the note to the vault:

gopher-cli publish vault/research/[slugified-topic].md --content "[markdown content]"

Confirm what you saved and where.

Skills similaires