Skills lovstudio:xbti-gallery

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

xbti-gallery — Browse Community BTI Tests

Open the XBTI Gallery and list all community-created BTI personality tests.

When to Use

  • User wants to browse existing BTI personality tests
  • User says "打开 XBTI Gallery" or "show me BTI cases"
  • User wants to see what others have created before making their own

Workflow

Step 1: Open Gallery

open https://xbti.lovstudio.ai

Step 2: List Available Cases

Fetch and display all BTI variants from the repository:

gh api repos/lovstudio/XBTI/contents/cases 2>/dev/null | python3 -c "
import json, sys
try:
    items = json.load(sys.stdin)
    if isinstance(items, list):
        for item in items:
            if item.get('type') == 'dir':
                print(f'  - {item[\"name\"]}')
    else:
        print('  (no cases yet)')
except:
    print('  (unable to fetch)')
"

If no cases exist, tell the user: "Gallery 还没有案例,用

/lovstudio-xbti-creator
创建一个并提交吧!"