Llm wiki archive
Portable Agent Skills for building, operating, evaluating, and governing LLM-Wiki knowledge systems.
npx -y skills add po4yka/llm-wiki-skills --skill llm-wiki-archiveAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Prepare an LLM-Wiki for long-term durability and archival. Use when the user wants a wiki to remain readable in 5-10+ years, export opaque stores, preserve raw sources, rebuild indexes, vendor key references, or create an archive manifest.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.3 KB, as published. Nobody here has run it
LLM-Wiki Archive
Goal
Make an LLM-Wiki durable, portable and reconstructable over long time horizons.
When to use
- The user wants a wiki to remain readable and rebuildable 5-10+ years from now, without depending on today's tooling.
- The user is exporting a vault to a git tag, zip/tarball, static export, offline drive, or public archive.
- The user needs to know whether an opaque store (vector DB, generated index) is safe to treat as source of truth or must be excluded/rebuilt.
- The user wants an
ARCHIVE.mdmanifest documenting what's included, what's excluded, and how to rebuild indexes from Markdown/raw sources. - The user is auditing portability risks such as external links without local copies, attachments outside the vault, or unsupported formats.
Inputs
- Vault/repository path.
- Desired archive target: git tag, zip/tarball, static export, offline drive, public archive.
- Retention and privacy constraints.
- Existing generated indexes or databases.
Procedure
1. Identify source of truth
Classify artifacts:
| Artifact | Archive role |
|---|---|
| Markdown files | Primary human-readable source. |
| raw sources/assets | Primary evidence. |
| schemas/taxonomy | Rebuild instructions. |
| generated indexes | Rebuildable cache. |
| vector DBs | Usually exclude or export manifest only. |
| logs/reports | Audit history. |
2. Check portability
Look for:
- opaque databases as only source of truth;
- external links without local copy or citation;
- attachments outside the vault;
- unsupported file formats;
- generated pages without source references;
- missing schema files.
3. Create archive manifest
Recommended ARCHIVE.md sections:
# Archive manifest
## Snapshot date
## Included folders
## Excluded generated caches
## How to read
## How to rebuild indexes
## Known gaps
## Integrity checks
4. Add integrity metadata
Generate or recommend hashes for raw sources, important pages and exported bundles.
5. Define rebuild steps
Document how to recreate search indexes, vector stores, generated reports and site output from Markdown/raw sources.
Output
## Archive summary
## Source-of-truth map
## Portability risks
## Manifest created or proposed
## Rebuild instructions
## Integrity checks
Safety gates
- Do not archive secrets or sensitive material into broadly shared bundles.
- Do not treat generated indexes as irreplaceable source of truth.
- Do not delete external copies while creating an archive.
- Do not rely on proprietary exports without Markdown/raw fallback.
- Treat manifest creation as report-only by default: propose the
ARCHIVE.mddraft and the include/exclude lists for review before writing anything to disk. - Re-verify integrity hashes against the live vault before citing an older archive snapshot as current.