Lisa Wiki Ingestion Skill
Use this skill when ingesting Lisa repository, GitHub, Linear, document, or transcript knowledge into the in-repository wiki.
Contract
Follow wiki/schema/llm-wiki-contract.md.
For every ingestion:
- Preserve source notes under
wiki/sources/<source>/.
- Synthesize durable knowledge into stable wiki pages.
- Update
wiki/index.md.
- Append
wiki/log.md.
- Advance
wiki/state/<source>/ only after source notes, synthesis, index, and log are complete.
- Run verification checks.
- Commit only the ingestion changes, push, open a PR targeting
main, and enable auto-merge. If ingestion started on main, create a dedicated ingestion branch before committing.
Initial Repository Ingestion
Initial ingestion should capture:
- README, wiki documentation, docs inbox files, specs, plans, package metadata, workflows, commands, skills, templates, and source structure.
- Full fetched git commit history across refs.
- Merged PR metadata through
gh when available.
- Monorepo workspace package roles.
- Template family roles and strategy directories.
- CI/CD and quality gate workflows.
- Durable open questions and maintenance notes.
Incremental Repository Ingestion
After initial ingestion, use state cursors to ingest:
- Commits since the last successful ingestion.
- Merged PRs since the last successful ingestion.
- Changed docs, specs, plans, workflows, commands, skills, templates, and source structure.
Safety
- Keep wiki content scoped to Lisa.
- Do not copy unrelated client project source material into Lisa wiki pages.
- Do not preserve raw secrets, tokens, OAuth artifacts, or private credentials.
- Do not stage unrelated working tree changes.
1---2name: lisa-wiki-ingest3description: Use when ingesting Lisa repository, GitHub, Linear, document, or transcript knowledge into the in-repository wiki.4---56# Lisa Wiki Ingestion Skill78Use this skill when ingesting Lisa repository, GitHub, Linear, document, or transcript knowledge into the in-repository wiki.910## Contract1112Follow `wiki/schema/llm-wiki-contract.md`.1314For every ingestion:15161. Preserve source notes under `wiki/sources/<source>/`.172. Synthesize durable knowledge into stable wiki pages.183. Update `wiki/index.md`.194. Append `wiki/log.md`.205. Advance `wiki/state/<source>/` only after source notes, synthesis, index, and log are complete.216. Run verification checks.227. Commit only the ingestion changes, push, open a PR targeting `main`, and enable auto-merge. If ingestion started on `main`, create a dedicated ingestion branch before committing.2324## Initial Repository Ingestion2526Initial ingestion should capture:2728- README, wiki documentation, docs inbox files, specs, plans, package metadata, workflows, commands, skills, templates, and source structure.29- Full fetched git commit history across refs.30- Merged PR metadata through `gh` when available.31- Monorepo workspace package roles.32- Template family roles and strategy directories.33- CI/CD and quality gate workflows.34- Durable open questions and maintenance notes.3536## Incremental Repository Ingestion3738After initial ingestion, use state cursors to ingest:3940- Commits since the last successful ingestion.41- Merged PRs since the last successful ingestion.42- Changed docs, specs, plans, workflows, commands, skills, templates, and source structure.4344## Safety4546- Keep wiki content scoped to Lisa.47- Do not copy unrelated client project source material into Lisa wiki pages.48- Do not preserve raw secrets, tokens, OAuth artifacts, or private credentials.49- Do not stage unrelated working tree changes.