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 and push automatically.
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-ingest-33description: Lisa Wiki Ingestion Skill4---5# Lisa Wiki Ingestion Skill67Use this skill when ingesting Lisa repository, GitHub, Linear, document, or transcript knowledge into the in-repository wiki.89## Contract1011Follow `wiki/schema/llm-wiki-contract.md`.1213For every ingestion:14151. Preserve source notes under `wiki/sources/<source>/`.162. Synthesize durable knowledge into stable wiki pages.173. Update `wiki/index.md`.184. Append `wiki/log.md`.195. Advance `wiki/state/<source>/` only after source notes, synthesis, index, and log are complete.206. Run verification checks.217. Commit and push automatically.2223## Initial Repository Ingestion2425Initial ingestion should capture:2627- README, wiki documentation, docs inbox files, specs, plans, package metadata, workflows, commands, skills, templates, and source structure.28- Full fetched git commit history across refs.29- Merged PR metadata through `gh` when available.30- Monorepo workspace package roles.31- Template family roles and strategy directories.32- CI/CD and quality gate workflows.33- Durable open questions and maintenance notes.3435## Incremental Repository Ingestion3637After initial ingestion, use state cursors to ingest:3839- Commits since the last successful ingestion.40- Merged PRs since the last successful ingestion.41- Changed docs, specs, plans, workflows, commands, skills, templates, and source structure.4243## Safety4445- Keep wiki content scoped to Lisa.46- Do not copy unrelated client project source material into Lisa wiki pages.47- Do not preserve raw secrets, tokens, OAuth artifacts, or private credentials.48- Do not stage unrelated working tree changes.