exportlisted
Install: claude install-skill geronimo-iia/llm-wiki-skills
# Export
Write the full wiki to a file — no pagination. Response is a report,
not the content itself.
```
wiki_export(wiki: "research")
```
Default output: `llms.txt` at the wiki repository root, `llms-txt` format,
`active` pages only.
## Choosing a format
| Format | Content | When to use |
|--------|---------|-------------|
| `llms-txt` (default) | One line per page with summary, grouped by type | Publishing via `llms.txt` ecosystem; orientation for a new LLM session |
| `llms-full` | Summary + full body per page separated by `---` | Deep offline analysis; passing full wiki content to a long-context model |
| `json` | JSON array — metadata + body per page | CI pipelines, batch scripts, external tooling |
## Publishing workflow (llms.txt ecosystem)
Export after every significant ingest or content session:
```
wiki_export(wiki: "research", format: "llms-txt", path: "llms.txt")
```
The default path `llms.txt` lands at the wiki root. This file:
- Is picked up by `llms.txt`-aware tools automatically
- Is served by the Hugo scaffold at `/<wiki>/llms.txt` when committed
- Can be committed to git as a snapshot: `wiki_content_commit`
Include drafts when the export is for internal review only:
```
wiki_export(wiki: "research", status: "all")
```
## Handoff to external tool
For passing full content to a long-context model or analysis pipeline:
```
wiki_export(wiki: "research", format: "llms-full", path: "export/full.md")
```
This differs from `wiki_list(format: "llms")`