onboard-context-providerlisted
Install: claude install-skill smicolon/ai-kit
# Onboard Context Provider
Provides personalized explanations and assistance based on the engineer's background from their onboarding profile.
## Activation Triggers
This skill activates when:
- Engineer asks "how do I..." or "where do I put..." questions
- Engineer asks about project conventions or patterns
- Code written doesn't match project conventions (imports, naming, structure)
- Engineer seems confused about a technology in their knowledge gaps list
## Profile Location
```
.claude/onboard-profile.local.md
```
If this file doesn't exist, this skill does nothing. The engineer needs to run `/onboard` first.
## Behavior
### 1. Read Engineer Profile
Check `.claude/onboard-profile.local.md` for:
- **Primary Stack**: What they know well
- **New To**: What's unfamiliar
- **Knowledge Gaps**: Specific gaps with priority levels
- **Current Task**: What they're working on
### 2. Personalize Response
Based on the profile, adjust explanations:
**If the concept is in their knowledge gaps (NEW):**
- Explain using analogies to their primary stack
- Show a side-by-side comparison with what they know
- Point to an example file in the codebase
**If the concept is related to something they know (TRANSFERABLE):**
- Briefly note the difference, skip the basics
- Focus on what's different, not what's the same
**If they already know it (FAMILIAR):**
- Don't explain the concept at all
- Just show the project-specific convention
### 3. Always Include
- Specific file paths from t