skills/smithery.ai/add-wikipedia-references

add-wikipedia-references

Installation
SKILL.md

Add Wikipedia References

Add Wikipedia links to concepts missing them.

Find Concepts Without Wikipedia

# List concepts without Wikipedia
grep -L '"url": "https://en.wikipedia.org' src/data/concepts/*.json | xargs -n1 basename | sed 's/.json$//'

# Count
grep -L '"url": "https://en.wikipedia.org' src/data/concepts/*.json | wc -l

# First 20 for batch processing
grep -L '"url": "https://en.wikipedia.org' src/data/concepts/*.json | head -20 | xargs -n1 basename | sed 's/.json$//'

Workflow Per Concept

Installs
1
First Seen
Apr 4, 2026
add-wikipedia-references from smithery.ai