Agent skill
wiki-ingest
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'.
Install this agent skill to your Project
npx add-skill https://github.com/open-gitagent/gitagent/tree/main/examples/llm-wiki/skills/wiki-ingest
SKILL.md
Wiki Ingest
Process a new source document and integrate its knowledge into the wiki.
Workflow
Step 1: Read the source
Read the full source document from knowledge/. Identify:
- Key entities (people, organizations, concepts, technologies)
- Main claims and findings
- Relationships between entities
- Data points and statistics
- Contradictions with or confirmations of existing knowledge
Step 2: Discuss with the user
Before writing, share a brief summary of key takeaways. Ask:
- What aspects to emphasize?
- Any entities or concepts to prioritize?
- Should this update existing pages or create new ones?
Step 3: Update the wiki
For each significant entity or concept found in the source:
- Check if a wiki page exists — read
memory/wiki/index.md - If page exists — read it, integrate new information, update the "Sources" section, update frontmatter
updateddate andsource_count - If page doesn't exist — create a new page in
memory/wiki/with proper frontmatter, content, and source citations - Update cross-references — add
[[wikilinks]]in both directions between related pages
Step 4: Write a source summary page
Create memory/wiki/sources/<source-name>.md with:
- One-paragraph summary
- Key claims extracted
- Entities mentioned (with wikilinks to their pages)
- Date ingested
Step 5: Update index and log
- Update
memory/wiki/index.md— add/update entries for all pages touched - Update
knowledge/index.yaml— ensure the source is cataloged with tags and priority - Append to
memory/log.md:## [YYYY-MM-DD] ingest | Source Title - Pages created: [list] - Pages updated: [list] - Key findings: [1-2 sentences]
Example
User drops knowledge/quantum-computing-review-2026.pdf and says "ingest this".
- Read the paper, identify entities: quantum computing, error correction, IBM, Google, topological qubits
- Discuss key findings with user
- Create/update:
quantum-computing.md,error-correction.md,ibm.md,google.md - Create:
sources/quantum-computing-review-2026.md - Update
index.mdwith all new/updated pages - Append ingest entry to
log.md
A single source might touch 5-15 wiki pages. This is normal and expected.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
paper-search
Academic paper search via Google Scholar using Serper API
web-search
Advanced web search using Tavily API for current information retrieval
knowledge-retrieval
Semantic search over ingested documents using RAG (LlamaIndex/ChromaDB or Foundational RAG)
wiki-lint
Health-check the wiki for contradictions, stale claims, orphan pages, missing cross-references, and knowledge gaps. Use periodically or when the user says 'lint the wiki' or 'check wiki health'.
wiki-query
Query the wiki to answer questions. Searches wiki pages, synthesizes answers with citations, and optionally files valuable answers back as new wiki pages. Use when the user asks a question about the knowledge base.
get-started
Guides installation of gitagent and creation of first agent with scaffolding, configuration, and validation. Use when the user is new to gitagent, asks how to get started, wants to install gitagent, set up their first agent, or says 'how do I start?'
Didn't find tool you were looking for?