From neo-research
Audits previously researched topics by listing directories in .claude/docs/, then re-indexes locally through current pipeline or re-fetches from source URLs. Use after pipeline changes or to review research.
How this skill is triggered — by the user, by Claude, or both
Slash command
/neo-research:auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Re-process previously researched topics through the updated pipeline.
Re-process previously researched topics through the updated pipeline.
/neo-research:audit explicitlyCall the MCP tool to see all topics:
rlm_knowledge_audit()
This scans .claude/docs/ for library directories and reports file counts and sizes. Review the list with the user before re-indexing.
If the user wants to re-process topics through the current pipeline:
rlm_knowledge_audit(reindex=True)
To limit to a single topic:
rlm_knowledge_audit(reindex=True, topic="fastapi")
This reads existing .md files from disk and re-ingests them into the knowledge store. No network calls — fast and offline.
For a full re-fetch from source URLs (network required), use the CLI:
HOME_DIR=$(echo ~)
KNOWLEDGE_CLI=$(ls -d $HOME_DIR/.claude/plugins/cache/shihwesley-plugins/neo-research/*/scripts/knowledge-cli.py 2>/dev/null | sort -V | tail -1)
python3 "$KNOWLEDGE_CLI" audit --refetch
Or limit to one topic:
python3 "$KNOWLEDGE_CLI" audit --refetch --topic fastapi
--reindex is fast (local files only). Recommend this after pipeline changes.--refetch hits the network. Recommend this when upstream docs have changed.npx claudepluginhub shihwesley/shihwesley-plugins --plugin neo-researchDeep research on any topic by conducting web searches and fetching content. Can also add files or URLs to a research index. Useful for building knowledge bases or investigating unfamiliar subjects.
Conducts autonomous research loops on topics: decomposes into angles, performs web searches and fetches, extracts entities/concepts/claims, synthesizes, and files into knowledge graph.
Researches topics comprehensively with web search, scraping, and AI agents, producing timestamped Markdown documentation in .claude/research/.