wiki-ingest

Converts raw source documents into interlinked wiki pages with citations and logs.

Updated Jun 16, 2026
One-click install
npx skills add https://github.com/adamtpang/summon.company --skill wiki-ingest-adamtpang
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wiki-ingest
Source: https://github.com/adamtpang/summon.company/tree/main/packages/plugins/plugin-llm-wiki/skills/wiki-ingest
Command: npx skills add https://github.com/adamtpang/summon.company --skill wiki-ingest-adamtpang

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning captured raw documents into durable, organized wiki knowledge is tedious and error-prone: pages get duplicated, contradictions get silently overwritten, and cross-links are forgotten. This Skill standardizes the ingest workflow so every source becomes a canonical, citable wiki page with consistent structure. ## Core Features & Use Cases - Source Page Creation: Reads a raw source end to end and writes a neutral, frontmatter-valid source page at wiki/sources/<slug>.md as the canonical citation target. - Downstream Page Updates: Creates or updates entity, concept, and synthesis pages, wiring bidirectional cross-links and citations back to the source. - Contradiction Handling: Flags conflicts with existing pages using annotated callouts instead of silently overwriting prior knowledge. - Index and Log Maintenance: Refreshes wiki/index.md with one-line summaries and appends a structured entry to wiki/log.md. - Use Case: An operation issue of type ingest arrives referencing raw/competitor-launch-notes.md; the Skill reads the space conventions, writes the source page, updates related entity pages, and logs the ingest. ## Quick Start Ingest the raw source mentioned in the operation issue into the LLM Wiki for the given wikiId and spaceSlug.

Frequently Asked Questions about wiki-ingest

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I ingest a raw document into the LLM Wiki?

Assign an operation issue with operationType ingest that references a raw/ path and includes the target wikiId and spaceSlug. The Skill reads the source, writes a source page under wiki/sources/, updates related pages, and logs the ingest.

How does wiki ingest handle contradictions with existing pages?

It never silently overwrites conflicting content. Instead it appends a warning callout citing the new source and date to the older page, and records the conflict in wiki/log.md.

Can the ingest skill modify files in the raw/ directory?

No. The raw/ directory is treated as immutable; the verification checklist explicitly requires that no file under raw/ was modified during the ingest.

What happens if the operation issue is missing wikiId or spaceSlug?

The Skill stops and surfaces the missing configuration to the requester rather than guessing a target space. Both values are required for every wiki tool call.

Does wiki ingest ask for confirmation before writing pages?

Only when a user is interactively in the loop: it summarizes 3-5 planned takeaways and asks which to emphasize. For routine operations with no live user, it proceeds directly.