.claude/skills/ingest-gist/SKILL.md
Extract content from GitHub gists for wiki ingestion. Uses raw URL fetch, no auth required.
npx skillsauth add RonanCodes/llm-wiki ingest-gistInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Extract raw content from a GitHub gist.
Parse the URL to extract username and gist ID:
https://gist.github.com/{user}/{gist_id}Fetch via raw URL (most reliable, bypasses API rate limits):
curl -sL "https://gist.githubusercontent.com/{user}/{gist_id}/raw/"
gh api "/gists/{gist_id}" --jq '.owner.login'
gh gist view {gist_id} --files
Then fetch each file separately.
raw/<descriptive-name>.md with YAML header:---
source-url: <gist-url>
title: "<gist-description or filename>"
author: "<github-username>"
date-fetched: <today>
source-type: gist
---
gist.githubusercontent.com) — best, no API neededgh gist view {id} --raw — uses gh CLI authgh api "/gists/{id}" --jq '.files | to_entries[] | .value.content'None for primary method (curl only). gh CLI optional for fallbacks.
data-ai
Extract transcript from a YouTube video as clean readable text. Use when user shares a youtube.com or youtu.be link and wants the transcript, content summary, or to read what was said.
development
Page type templates and frontmatter conventions for LLM Wiki pages. Reference skill loaded by ingest, query, and lint skills to ensure consistent wiki structure.
testing
Show status of all LLM Wiki vaults — page counts, source counts, last activity, and git status. Use when user wants to see vault status, list vaults, or check wiki health.
documentation
Import an existing Obsidian vault, markdown folder, or git repo as an llm-wiki vault. Moves content into vaults/, adds missing structure (index, log, CLAUDE.md, frontmatter). Use when user wants to import, adopt, migrate, or bring in an existing knowledge base.