| layout | title | nav_order | permalink |
|---|---|---|---|
default |
Skills |
8 |
/skills/ |
Skills are reusable workflows that help teams apply this framework consistently.
Use this page to:
- see available skills in this project
- understand when to use each one
- install all skills or a single skill
The main capability in this project is the llimes-* documentation workflow:
llimes-audit: performs an evidence-based audit for missing or weak guidance.llimes-knowledge: plans documentation artifacts and keeps document responsibilities clear.
Use them as a pair:
- Run
llimes-auditto identify the highest-impact documentation gaps. - Use
llimes-knowledgewhen audit findings need additional structure, ownership, or artifact planning context. - Apply fixes, then rerun
llimes-auditto confirm improvement. - When findings involve runtime behavior, run
validation-protocolto define reproducible verification commands inDEBUG.md.
llimes-audit: "Audit these docs for coverage, clarity, and drift; return prioritized gaps."llimes-knowledge: "Given these audit findings, propose missing artifacts, ownership boundaries, and next docs to add."validation-protocol: "Build or refresh DEBUG.md with reproducible verification commands for this project."playwright-doc-bootstrap: "Check Playwright docs coverage and bootstrap missing testing guidance."
- Purpose: audit LLM-facing documentation for coverage, clarity, drift, and instruction reachability.
- Use when: you want a structured docs quality pass with prioritized gaps.
- Source:
skills/llimes-audit/SKILL.md
- Purpose: provide stage-based documentation guidance and artifact planning.
- Use when: you want to decide what to document next and how to separate document responsibilities.
- Source:
skills/llimes-knowledge/SKILL.md
- Purpose: generate and maintain
DEBUG.mdas an evidence-based runtime validation contract. - Use when: your project needs reproducible debugging and verification procedures.
- Source:
skills/validation-protocol/SKILL.md
- Purpose: detect Playwright documentation gaps and bootstrap aligned testing guidance.
- Use when: Playwright exists (or is being adopted) and E2E/testing docs are unclear or missing.
- Source:
skills/playwright-doc-bootstrap/SKILL.md
Install all skills from this repository:
npx skills add https://github.com/guilde-LLiMes/guilde-LLiMes.github.ioInstall one specific skill:
npx skills add https://github.com/guilde-LLiMes/guilde-LLiMes.github.io --skill {skill code name}Examples:
npx skills add https://github.com/guilde-LLiMes/guilde-LLiMes.github.io --skill llimes-audit
npx skills add https://github.com/guilde-LLiMes/guilde-LLiMes.github.io --skill llimes-knowledge
npx skills add https://github.com/guilde-LLiMes/guilde-LLiMes.github.io --skill validation-protocol
npx skills add https://github.com/guilde-LLiMes/guilde-LLiMes.github.io --skill playwright-doc-bootstrap