llm-wiki
v1.2.0Turn a collection of documents into a cited, Git-versioned wiki maintained by Codex and ChatGPT Work.
By Santiago MigoniLicense: MIT0 GitHub starsUpdated last week
Directory evidence
- Runtimes
- Codex and Agent Plugins
- Parsed components
- 4 skill or MCP entries
- Source updated
- Sep 12, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install llm-wiki for Codex
codex plugin marketplace add santiago-migoni/llm-wiki
codex plugin marketplace upgrade llm-wiki
codex plugin add llm-wiki@llm-wikiPaste and run these commands in a terminal with Codex. They add and refresh the llm-wiki catalog, then install this plugin.
Compatibility: the page URL and API slug “llm-wiki-2” remain stable.
- Codex:
llm-wiki-2@agent-plugin-marketplace→llm-wiki@llm-wiki
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/santiago-migoni/llm-wikiClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/llm-wiki/.
Plugin files
├── .codex-plugin/plugin.json├── plugin.json├── skills/wiki-ingest/SKILL.md├── skills/wiki-init/SKILL.md├── skills/wiki-lint/SKILL.md└── skills/wiki-query/SKILL.md
Included Skills4
Process a new or updated source document into an LLM-maintained wiki vault. Use when the user drops a file into raw/inbox/ and asks to process, ingest, add, or update the wiki. Uses one stable slug per logical document, keeps the current source and declared format-specific extraction together, and uses Git history for versioning.
Turn a folder into a working LLM-maintained document vault. Use when the user says "init a wiki", "set up a new vault", "crea una wiki aquí", or wants to turn a folder into an LLM-wiki knowledge base. Distinct from wiki-ingest, wiki-query, and wiki-lint; this is the only skill that scaffolds a new vault.
Health-check an LLM-maintained wiki vault. Use when the user asks to lint, audit, clean up, or check the health of the wiki, or after roughly every 10 ingests. Reports findings first and applies only approved corrections.
Answer questions from an LLM-maintained wiki vault with traceable citations. Use when the user asks what the wiki says, asks for an answer based on their documents, requests a comparison, or asks for full or historical context. Reads the current source layer and Git history; it never ingests a new source.
Plugin manifests2
{
"name": "llm-wiki",
"version": "1.2.0",
"description": "Turn a collection of documents into a cited, Git-versioned wiki maintained by Codex and ChatGPT Work.",
"author": {
"name": "Santiago Migoni",
"email": "[email protected]",
"url": "https://github.com/santiago-migoni"
},
"homepage": "https://github.com/santiago-migoni/llm-wiki",
"repository": "https://github.com/santiago-migoni/llm-wiki",
"license": "MIT",
"keywords": [
"knowledge-base",
"document-archive",
"research",
"wiki",
"citations",
"markdown"
],
"skills": "./skills/",
"interface": {
"displayName": "LLM Wiki",
"shortDescription": "Build a cited wiki from an archive of documents.",
"longDescription": "Ingest documents into stable source slugs, preserve the original plus a format-specific extraction with declared coverage, and maintain a compact, cited wiki whose history is versioned by Git. Codex and ChatGPT Work can use targeted answers and auditable full-corpus context passes when the vault is exposed.",
"developerName": "Santiago Migoni",
"category": "Productivity",
"capabilities": [
"Document ingestion",
"Knowledge management",
"Citations",
"Writing"
],
"defaultPrompt": [
"Initialize a document wiki here",
"Ingest the documents in raw/inbox",
"Answer with full context from the Git-versioned vault"
],
"brandColor": "#2563EB",
"logo": "./assets/logo.png"
}
}{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "llm-wiki",
"version": "1.2.0",
"description": "Turn a collection of documents into a cited, Git-versioned wiki maintained by Codex and ChatGPT Work.",
"author": {
"name": "Santiago Migoni",
"email": "[email protected]",
"url": "https://github.com/santiago-migoni"
},
"homepage": "https://github.com/santiago-migoni/llm-wiki",
"repository": "https://github.com/santiago-migoni/llm-wiki",
"license": "MIT",
"keywords": [
"knowledge-base",
"document-archive",
"research",
"wiki",
"citations",
"markdown"
],
"extensions": {
"com.openai": {
"interface": {
"displayName": "LLM Wiki",
"shortDescription": "Build a cited wiki from an archive of documents.",
"longDescription": "Ingest documents into stable source slugs, preserve the original plus a format-specific extraction with declared coverage, and maintain a compact, cited wiki whose history is versioned by Git. Codex and ChatGPT Work can use targeted answers and auditable full-corpus context passes when the vault is exposed.",
"developerName": "Santiago Migoni",
"category": "Productivity",
"capabilities": [
"Document ingestion",
"Knowledge management",
"Citations",
"Writing"
],
"defaultPrompt": [
"Initialize a document wiki here",
"Ingest the documents in raw/inbox",
"Answer with full context from the Git-versioned vault"
],
"brandColor": "#2563EB",
"logo": "./assets/logo.png"
}
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[llm-wiki on Agent Plugins Marketplace](https://pluginsmp.com/plugins/llm-wiki-2)