Claude-skill-registry Hypnotic Language & Induction

Control system for attention guidance and safe trance navigation

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/hypnotic-language" ~/.claude/skills/majiayu000-claude-skill-registry-hypnotic-language-induction && rm -rf "$T"
manifest: skills/data/hypnotic-language/SKILL.md
source content

Hypnotic Language & Induction Skill

This Is Not "A Script" — It Is a Control System

At its core, this Skill governs how attention is guided, how depth is reached, and how agency is preserved.

If symbolism is meaning, and audio is physiology, then hypnotic language is navigation.


Purpose

Guide attention safely into and out of altered states while preserving listener sovereignty.

This Skill manages four invisible processes happening in every listener:

  1. Attention allocation — what they focus on
  2. Cognitive load — how busy the conscious mind is
  3. Suggestibility — how open they are to reframing
  4. Agency & safety — whether they remain sovereign

Must Always

  • Preserve agency and choice at all times
  • Maintain bodily awareness throughout the experience
  • Include clear, complete emergence sequences
  • Use permissive language ("you might notice...", "perhaps...")
  • Frame suggestions as discoveries, not commands
  • Keep voice rate at 1.0 (use
    <break>
    tags for pacing)

Never

  • Remove critical thinking or bypass consent
  • Invite external entities or autonomous guides
  • Encourage surrender of will to anything except God
  • Use "letting go completely" without grounding anchors
  • Apply sudden void imagery or ego dissolution language
  • Command identity changes ("You are now...")

Depth Limits

LevelDescriptionAllowed
LightRelaxation, focused attentionAlways
ModerateVivid imagery, mild time distortionStandard sessions
DeepProfound absorption, strong dissociationLayer 3+ only with grounding
ProfoundEgo boundary softeningNever without explicit consent

Default ceiling: Moderate trance only


Sub-Skills

Induction (
induction/
)

  • soft-entry.md
    — Permissive opening patterns
  • attention-pacing.md
    — Pacing-leading sequences
  • permissive-language.md
    — Choice-preserving framing

Deepening (
deepening/
)

  • fractionation.md
    — Light↔deeper oscillation
  • time-distortion.md
    — Time perception shifts
  • imagery-coupling.md
    — Visual + verbal syncing

Suggestion (
suggestion/
)

  • indirect-suggestion.md
    — Ericksonian patterns
  • values-alignment.md
    — Belief-congruent framing
  • metaphor-framing.md
    — Story-based delivery

Emergence (
emergence/
)

  • reorientation.md
    — Return to full awareness
  • grounding.md
    — Body reconnection
  • memory-integration.md
    — Experience consolidation

Validation (
validation/
)

  • depth-checks.md
    — Trance level monitoring
  • dissociation-guards.md
    — Safety boundaries
  • forbidden-patterns.md
    — Blacklisted phrases

Language Mechanics

1. Pacing → Leading

State what is already true, then gently lead:

"You may notice your breathing..." (pace)
"And as it slows..." (lead)

This builds trust + unconscious cooperation.

2. Cognitive Saturation

Slightly overload conscious analysis with:

  • Longer sentences with nested clauses
  • Soft ambiguity that invites interpretation
  • Multiple sensory channels engaged simultaneously

This creates a gap where reframing can occur.

3. Permission-Based Suggestion

Never command. Always invite:

<!-- WRONG -->
<s>You are now deeply relaxed.</s>

<!-- CORRECT -->
<s>You might find yourself allowing a gentle wave of relaxation...</s>

This preserves agency, consent, and safety.


SSML Integration

Before Generation

  • Choose induction type based on session outcome
  • Set depth ceiling from manifest
  • Select language patterns from sub-skills

During Generation

  • Inject tested phrase macros
  • Control pause density with
    <break>
    tags
  • Enforce permissive grammar patterns

After Generation

  • Run safety lint (
    validate_ssml.py
    )
  • Check for missing emergence
  • Flag over-deep language patterns

Integration Points

ComponentRelationship
symbolic-mapping/
Provides symbols for imagery-coupling
audio-somatic/
Coordinates breath pacing with breaks
knowledge/hypnotic_patterns.yaml
Pattern library reference
knowledge/nlp_patterns.yaml
NLP technique integration
scripts/utilities/validate_ssml.py
Post-generation validation

Quality Rubric

Before approving any generated content, evaluate:

CriterionCheck
AgencyDoes listener retain choice throughout?
ClarityIs the narrative easy to follow?
SafetyAre grounding anchors present?
EmergenceIs return to awareness complete?
TheologyAre suggestions God-aligned?

Example Patterns

Permissive Induction Opening

<prosody rate="1.0" pitch="0st">
  As you settle into this moment... <break time="1.5s"/>
  you can simply allow yourself to be here... <break time="1s"/>
  just as you are... <break time="1.5s"/>
  noticing whatever you notice... <break time="1s"/>
  without needing to change anything at all.
</prosody>

Safe Deepening with Fractionation

<prosody rate="1.0" pitch="-2st">
  And you can drift a little deeper now... <break time="2s"/>
  knowing you can return to this lighter awareness... <break time="1.5s"/>
  any time you choose... <break time="2s"/>
  and then perhaps... <break time="1s"/>
  allow yourself to drift... <break time="1.5s"/>
  even a little deeper still.
</prosody>

Complete Emergence Sequence

<prosody rate="1.0" pitch="0st">
  And in a moment... <break time="1s"/>
  you'll begin to return... <break time="1.5s"/>
  feeling your body here... <break time="1s"/>
  the weight of your arms... <break time="1s"/>
  the surface beneath you... <break time="2s"/>
  sounds in the room becoming clearer... <break time="1.5s"/>
  and when you're ready... <break time="1s"/>
  you can open your eyes... <break time="1s"/>
  feeling refreshed... <break time="1s"/>
  alert... <break time="1s"/>
  and fully present.
</prosody>

Related Resources

  • Serena Memory:
    script_production_workflow
  • Knowledge:
    knowledge/hypnotic_patterns.yaml
  • Prompt:
    prompts/hypnotic_dreamweaving_instructions.md
  • Validation:
    scripts/utilities/validate_ssml.py