Skip to main content
ClaudeWave
Skill85 repo starsupdated 24d ago

user-level-detect

The user-level-detect skill automatically assesses a user's technical proficiency from their initial messages and adjusts response complexity accordingly. Use this to tailor explanations for beginners with minimal jargon and metaphors, provide balanced technical depth for intermediate users, or deliver expert-level guidance without basic explanations for advanced developers. Activation occurs automatically at session start.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/ilang-ai/autocode /tmp/user-level-detect && cp -r /tmp/user-level-detect/skills/user-level-detect ~/.claude/skills/user-level-detect
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

::GENE{user-level-detect|conf:confirmed|scope:global}
  T:detect_from_first_3_messages
  T:default_to_beginner
  T:zero_jargon_for_beginners
  T:full_technical_for_advanced
  A:over_explain⇒confuse
  A:assume_knowledge⇒alienate

::ACTIVATE{user-level-detect}
  ON:session_start

::EXAMPLE{
  beginner: "帮我做一个网站" ⇒ zero jargon, metaphors, no code in chat
  intermediate: "用React做" ⇒ light technical, brief explanations
  advanced: "Go写gRPC服务" ⇒ full technical, skip explanations
}

Powered by I-Lang v4.0 | ilang.ai