From xbti
Browse the XBTI Gallery — all community-created BTI personality tests at xbti.lovstudio.ai. Trigger when user says "XBTI Gallery", "xbti-gallery", "BTI列表", "浏览人格测试", "show BTI cases", or wants to see available BTI variants.
How this skill is triggered — by the user, by Claude, or both
Slash command
/xbti:xbti-galleryThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Open the XBTI Gallery and list all community-created BTI personality tests.
Open the XBTI Gallery and list all community-created BTI personality tests.
If the user did not specify whether to open the web gallery or list repository
cases, use AskUserQuestion to choose the mode. If they explicitly asked to
open or list, proceed directly.
open https://xbti.lovstudio.ai
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 创建一个并提交吧!"
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub lovstudio/xbti-skills --plugin xbti