lexi
Installation
SKILL.md
lexi — Lexicon Axis
Standalone lexicon extraction and analysis. Uses the unified honne CLI, presents findings, records claims.
Process
- Ask for scope (repo/global). Set
SCOPEandLOCALEvariables. - Run scan:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/honne" scan --base-dir ".honne" --scope "$SCOPE" - Run axis extraction:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/honne" axis run lexicon --scan .honne/cache/scan.json --locale "$LOCALE" - Read JSON output — review
candidate_claim,quotes,insufficient_evidencefields - HITL: present candidate claim with sample quotes, ask (y/n/edit)
- y: proceed to step 6
- n: record rejection —
bash "${CLAUDE_PLUGIN_ROOT}/scripts/honne" record claim --base-dir ".honne" --type rejection --axis lexicon --scope "$SCOPE" --text "$candidate"; skip to done - edit: user provides revised text, use as claim
- Record claim:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/honne" record claim --base-dir ".honne" --type claim --axis lexicon --scope "$SCOPE" --text "$claim" - Check past rejections to avoid re-proposing:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/honne" query --base-dir ".honne" --type rejection --tag lexicon --scope "$SCOPE"
Progress monitoring — use Monitor until-loop (never sleep N && cat):
Related skills