openjung-api
Installation
SKILL.md
OpenJung API Integration
OpenJung is an open-source personality test based on OEJTS (Open Extended Jungian Type Scales) - a validated 32-question assessment that determines MBTI-compatible personality types.
Base URL: https://openjung.org
Quick Start
Minimal Integration (3 Steps)
// 1. Fetch questions
const { questions } = await fetch('https://openjung.org/api/questions').then(r => r.json());
// 2. Collect user answers (32 questions, values 1-5)
const answers = { "1": 3, "2": 5, /* ... all 32 */ "32": 4 };