examples/llm-wiki/skills/wiki-ingest/SKILL.md
Ingest a raw source document into the wiki. Reads the source, extracts key information, creates or updates wiki pages, maintains cross-references, and logs the operation. Use when the user adds a new source or says 'ingest this'.
npx skillsauth add open-gitagent/gitagent wiki-ingestInstall 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.
Process a new source document and integrate its knowledge into the wiki.
Read the full source document from knowledge/. Identify:
Before writing, share a brief summary of key takeaways. Ask:
For each significant entity or concept found in the source:
memory/wiki/index.mdupdated date and source_countmemory/wiki/ with proper frontmatter, content, and source citations[[wikilinks]] in both directions between related pagesCreate memory/wiki/sources/<source-name>.md with:
memory/wiki/index.md — add/update entries for all pages touchedknowledge/index.yaml — ensure the source is cataloged with tags and prioritymemory/log.md:
## [YYYY-MM-DD] ingest | Source Title
- Pages created: [list]
- Pages updated: [list]
- Key findings: [1-2 sentences]
User drops knowledge/quantum-computing-review-2026.pdf and says "ingest this".
quantum-computing.md, error-correction.md, ibm.md, google.mdsources/quantum-computing-review-2026.mdindex.md with all new/updated pageslog.mdA single source might touch 5-15 wiki pages. This is normal and expected.
development
Reviews code diffs and files for security vulnerabilities (OWASP Top 10), error handling, complexity, naming conventions, and performance issues. Use when the user asks to review a PR, pull request, diff, merge request, or code changes.
development
Advanced web search using Tavily API for current information retrieval
development
Academic paper search via Google Scholar using Serper API
documentation
Semantic search over ingested documents using RAG (LlamaIndex/ChromaDB or Foundational RAG)