Skill120 repo starsupdated 3mo ago
Onboarding Skill
This Claude Code skill retrieves and organizes company onboarding documentation from Notion by searching for pages tagged with "onboarding." It dynamically compiles onboarding guides into a structured format, making essential employee orientation information available to AI agents. Use this skill when you need to provide new hires or team members with quick access to standardized onboarding procedures, company policies, and orientation requirements without manually copying documentation.
Install in Claude Code
Copygit clone --depth 1 https://github.com/PrefectHQ/colin /tmp/onboarding-skill && cp -r /tmp/onboarding-skill/examples/notion/models/onboarding- ~/.claude/skills/onboarding-skillThen start a new Claude Code session; the skill loads automatically.
Definition
onboarding-skill.md
# Company Onboarding Guide
This skill contains onboarding information compiled from Notion.
{% for page in colin.notion.search("onboarding") %}
## {{ page.title }}
{{ page.content }}
---
{% endfor %}