From neo-research
Audit previously researched topics and optionally re-index them through the current pipeline. Use when the research flow has changed and you want to backfill, or to see what's been researched.
npx claudepluginhub shihwesley/shihwesley-plugins --plugin neo-researchThis skill uses the workspace's default tool permissions.
Re-process previously researched topics through the updated pipeline.
Conducts multi-round deep research on GitHub repos via API and web searches, generating markdown reports with executive summaries, timelines, metrics, and Mermaid diagrams.
Dynamically discovers and combines enabled skills into cohesive, unexpected delightful experiences like interactive HTML or themed artifacts. Activates on 'surprise me', inspiration, or boredom cues.
Generates images from structured JSON prompts via Python script execution. Supports reference images and aspect ratios for characters, scenes, products, visuals.
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.