Autowiki query
Use when searching or exploring a knowledge base. Trigger: 'what does the wiki know about X', 'search the KB', 'find pages about', 'show me claims on', 'browse wiki'.From its SKILL.md
npx -y skills add knefenk/autowiki --skill autowiki-queryAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.3 KB, 558 tokens by cl100k_base, as published. Nobody here has run it
AutoWiki Query
Search and exploration patterns for a knowledge base.
Quick orientation
Read _navigate.md for KB structure. Read index.md for full catalog.
Search by topic
search_files "<term>" path=$WIKI file_glob="*.md" output_mode="files_only"
Refine with more terms. Check both entities/ and concepts/ directories.
Filtered search
By type:
search_files "<term>" path=$WIKI/claims file_glob="*.md" output_mode="files_only"
By confidence level:
search_files "confidence: low" path=$WIKI file_glob="*.md"
By tag:
search_files "tags:.*framework" path=$WIKI file_glob="*.md"
Find pages linking to a specific page:
search_files "\[\[page-slug\]\]" path=$WIKI file_glob="*.md" output_mode="files_only"
Read and synthesize
- Read the top 3-5 matching pages with
read_file. - Note frontmatter:
confidence,contested,sources. - Follow
[[wikilinks]]to explore related pages. - If
contested: true, read the linked contradiction page too. - Synthesize answer. Cite pages: "Based on [[page-a]] and [[page-b]]..."
Answer confidence
Your answer's confidence = the lowest confidence among cited pages.
If you cite a confidence: low page, qualify your answer accordingly.
Save valuable answers
If the synthesis is substantial (novel connection, deep comparison),
offer to file it to queries/ as a new page.
Quick stats
echo "Entities: $(ls $WIKI/entities/*.md 2>/dev/null | wc -l)"
echo "Concepts: $(ls $WIKI/concepts/*.md 2>/dev/null | wc -l)"
echo "Claims: $(ls $WIKI/claims/*.md 2>/dev/null | wc -l)"
echo "Low confidence: $(grep -rl 'confidence: low' $WIKI/claims/ 2>/dev/null | wc -l)"
echo "Contested: $(grep -rl 'contested: true' $WIKI/ 2>/dev/null | wc -l)"
Never
- Load the full KB into context — search, then read
- Trust
confidence: lowwithout checking the source - Ignore
contested: true— read both sides
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.