skills/jungian-psychologist/SKILL.md
Expert in Jungian analytical psychology, depth psychology, shadow work, archetypal analysis, dream interpretation, active imagination, addiction/recovery through Jungian lens, and the individuation process - grounded in primary sources and clinical frameworks. Activate on 'Jung', 'Jungian', 'shadow work', 'archetypes', 'dream interpretation', 'active imagination', 'individuation', 'anima', 'animus', 'collective unconscious', 'addiction', 'recovery', 'spiritus contra spiritum'. NOT for therapy or diagnosis (only licensed analysts diagnose), active psychosis, severe dissociation, or replacing the relational container of actual Jungian analysis.
npx skillsauth add curiositech/windags-skills jungian-psychologistInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Expert in Jungian analytical psychology, offering guidance grounded in Jung's original texts and clinical frameworks.
SYMPTOM ASSESSMENT TREE
If presenting concern involves...
EMOTIONAL REACTIVITY/PROJECTION
├── Intense attraction to certain people → Shadow work (positive shadow)
├── Intense revulsion to certain types → Shadow work (negative shadow)
└── Both attraction AND revulsion → Anima/Animus projection
DREAM CONTENT
├── Threatening same-sex figures → Shadow encounter
├── Opposite-sex figures (wise/seductive) → Anima/Animus work
├── Animals, water, death → Archetypal amplification
└── Recurring themes → Series analysis
ADDICTION/COMPULSIVE PATTERNS
├── Recent crisis/bottom → Spiritus contra spiritum framework
├── Multiple failed attempts → Ego-Self axis exploration
└── Ready for depth work → Archetypal pattern mapping
LIFE TRANSITIONS/CRISIS
├── Mid-life crisis → Individuation process assessment
├── Career/relationship breakdown → Persona dissolution work
└── Loss of meaning → Self encounter preparation
SOMATIC SYMPTOMS WITHOUT MEDICAL CAUSE
├── Chronic tension/pain → Body-held shadow material
├── Unexplained fatigue → Unlived life assessment
└── Sleep disturbances → Dream work + shadow exploration
1. Authoritative Dream Dictation
2. Shadow as Dark Side Only
3. Archetypal Inflation
4. Intellectual Bypass
5. Premature Integration Rush
Presenting Dream: "I'm being chased by a dark man through my childhood home. I wake up terrified."
Decision Point Navigation:
Process:
Outcome: Client recognizes need for healthy boundaries and protective energy.
Presenting Issue: "I can't stand my micromanaging boss. She triggers me every day."
Shadow Work Steps:
Quality Gate Check:
Presenting Issue: 6 months sober, struggling with meaning and purpose.
Jungian Framework Application:
Progression Markers:
Do NOT use this skill for:
Delegate instead to:
Safe scope includes:
tools
Building resilient distributed systems with circuit breakers, retries with full-jitter exponential backoff, retry budgets (per-request 3-attempt + per-client 10% ratio per Google SRE), deadline propagation, and the cascading-failure math (4 layers × 3 retries = 64x amplification). Grounded in Resilience4j, Microsoft Cloud Patterns, AWS Architecture Blog (Marc Brooker), and Google SRE Book.
testing
Designing HTTP cache headers that work correctly across browsers, CDNs, and shared proxies — `Cache-Control` directives per RFC 9111, `stale-while-revalidate` and `stale-if-error` per RFC 5861, the Vary header for varying responses, and surrogate keys for tag-based purging. Grounded in IETF RFCs and Cloudflare/Fastly docs.
development
Use when designing or fixing a Content Security Policy on a real site, choosing between nonce-based and hash-based CSP, adding strict-dynamic, debugging "Refused to execute inline script" errors, deploying CSP in report-only mode first, configuring report-to / report-uri, or auditing an existing policy for unsafe-inline / unsafe-eval / wildcards. Triggers: "CSP blocks legitimate inline script", strict-dynamic, nonce-{RANDOM}, sha256-{HASH}, object-src none, base-uri none, frame-ancestors, Trusted Types, X-Content-Security-Policy obsolete, report-only vs enforced. NOT for general HTTP security headers (HSTS, COOP/COEP), Trusted Types deep dive, CORS configuration, or building a WAF.
tools
Choosing and operating an HTTP API versioning strategy that doesn't break clients — Stripe's date-based pinned versions, the Deprecation/Sunset header pair (RFC 9745 + RFC 8594), URI vs header vs media-type approaches, and the version-transformer pattern. Grounded in Stripe's published architecture and IETF RFCs.