TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/LilMGenius/polysona/llms.txt
Use this file to discover all available pages before exploring further.
$introduce / /introduce command loads the active persona directly into the running session — no separate agent is dispatched. After invocation, the AI adopts the persona’s voice, communication style, and decision-making logic for every subsequent response in the conversation. Use it at the start of any working session to ensure all outputs are persona-conditioned before you run trend scans, draft content, or review QA results.
Invocation
What it does
$introduce performs an in-session persona injection with no agent handoff:
- Reads
personas/_active.mdto resolve the active persona directory (falls back todefault). - Loads
personas/{active}/persona.md— the core identity record built from interview extraction. - Loads
personas/{active}/nuance.md— the tone, register, and expression style profile. - Adopts this persona’s voice, tone, and decision-making style for the rest of the session.
- Keeps all subsequent responses aligned with the persona’s priorities, constraints, and expression patterns.
Unlike the agent-backed skills,
$introduce injects the persona directly into the current context window. There is no forked agent, no file written, and no output path. The effect is purely behavioural within the active session.Prerequisites
The active persona must have been established through a completed interview session. Both persona files must exist:Output
$introduce does not write any files. Its effect is confined to the current session context. To persist persona behaviour across different projects or agent runtimes, use $export to generate portable CLAUDE.generated.md or AGENTS.generated.md files instead.
Guardrails & Notes
- The persona injection lasts only for the current session. Start a new session, and you will need to run
$introduceagain. - If
nuance.mdis missing butpersona.mdexists, the injected persona will have core identity but no voice/tone calibration — run the structuring engine to regeneratenuance.md. $introducereads but never modifies persona files. It is always safe to re-run.- For long sessions spanning multiple content types, calling
$introduceonce at the top is sufficient.
Related agents
$introduce has no dedicated agent — it operates directly in the active session. If you need a persistent, portable version of the persona for use in other projects or agent runtimes, see the $export skill.