contentlisted
Install: claude install-skill geronimo-iia/llm-wiki-skills
# Content
Direct operations on wiki pages and sections. This skill covers
deliberate content work — reading, creating, updating, and organizing
pages outside of the [ingest](../ingest/SKILL.md) (inbox→raw) and
[crystallize](../crystallize/SKILL.md) (session→page) workflows.
Content operations do not validate or index — that's what
`wiki_ingest` does. Always ingest after writing.
When `llm-wiki serve --watch` is active, external edits are indexed
automatically — manual ingest is only needed for programmatic writes
via `wiki_content_write`.
## Page anatomy
A wiki page is a Markdown file with YAML frontmatter. The file is
always: frontmatter block + blank line + body.
```
---
title: "Mixture of Experts"
summary: "Sparse routing of tokens to expert subnetworks."
type: concept
status: active
...
---
## Overview
MoE routes tokens to sparse expert subnetworks…
```
Start body content at `##` level. `#` is reserved for the page title
(derived from frontmatter `title`).
For frontmatter field conventions, see the
[frontmatter](../frontmatter/SKILL.md) skill.
## Flat page vs bundle
A flat page is a single `.md` file:
```
concepts/scaling-laws.md
```
A bundle is a folder containing `index.md` and co-located assets:
```
concepts/mixture-of-experts/
├── index.md
├── moe-routing.png
└── vllm-config.yaml
```
Use a bundle when the page has associated assets (images, diagrams,
data files). Assets always belong to one page — there is no shared
asset folder.
## Assets
Assets in