From example-skills
Extracts a persona profile (vocabulary, idioms, analogies) from session logs and appends it to a lexicon YAML file for durable voice modeling.
How this skill is triggered — by the user, by Claude, or both
Slash command
/example-skills:corpus-persona-extractionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Distill *how a specific voice thinks and speaks* from a pile of session logs, and persist it as a machine-usable lexicon that downstream agents can write against.
Distill how a specific voice thinks and speaks from a pile of session logs, and persist it as a machine-usable lexicon that downstream agents can write against.
Agents that work with a long-running human collaborator keep re-learning the same voice from scratch: the coinages, the load-bearing metaphors, the sentence shapes that mean "yes, proceed" versus "you've missed the point." A lexicon file makes that knowledge durable and composable — voice-enforcement gates can score against it, drafting skills can imitate it, and translation layers (persona storefronts) can project from it.
speaker == persona_id turns.analogy: {source_domain} → {target_domain} with 2-3 verbatim examples.These two fields are the lexicon's soul — short synthesized statements, each grounded in ≥3 verbatim quotes:
ideal_yearning — what the persona is reaching toward across all sessions; the recurring wish underneath the tasks. Written as one sentence in the persona's own idiom.archetypal_pattern — the recurring role/shape the persona enacts (e.g. "the conductor who builds the orchestra rather than playing the instrument"). One sentence plus the evidence quotes.These are hypotheses, marked with extraction date and confidence — later blocks may revise them.
# {persona_id}.lexicon.yaml — append block, never rewrite
- extraction:
date: 2026-06-07
corpus: {files: 128, persona_turns: 1432, date_range: [2026-04-17, 2026-06-07]}
redaction: {patterns_run: true, hits_scrubbed: 0}
vocabulary:
coinages:
- term: vacuum
gloss: "an absence that is unrepresented anywhere durable; never a resting state"
examples: ["N/A is a vacuum", "vacuum field burn"]
domain_terms: [...]
inflections: [...]
idioms:
- phrase: "fix bases, not outputs"
meaning: "modify the source/template/pipeline, never the rendered artifact"
analogies:
- source: liturgy/theology
target: configuration management
examples: ["Tier-0 Liturgy", "the Reliquary", "testament"]
register:
profanity: "affection-marker, not hostility"
emphasis: ["em-dash chains", "bold imperatives"]
ideal_yearning: "…" # one sentence, persona's idiom, ≥3 quote citations
archetypal_pattern: "…"
Emit a short extraction report: new coinages since last block, terms that dropped out (candidate drift), and any revision to yearning/pattern with the evidence that forced it. Commit lexicon + report together.
npx claudepluginhub a-organvm/a-i--skills --plugin document-skillsProvides a checklist for code reviews covering functionality, security, performance, maintainability, tests, and quality. Use for pull requests, audits, team standards, and developer training.