* v2.1: Unify skills and slash commands pattern Following the new Claude Code standard where skills and slash commands are merged into a single unified pattern: - Convert commands to skills: /daily-workflow, /weekly-review, /push, /onboard - Each skill has SKILL.md with frontmatter (name, description, allowed-tools) - Skills can be invoked with /skill-name OR auto-discovered by Claude - Remove deprecated .claude/commands/ directory - Update all documentation to reference new unified pattern - Update agents to reference skills instead of commands - Update CLAUDE.md with unified skills table This aligns with Claude Code 2.1+ where skills and slash commands share the same features and invocation patterns. * Simplify skill names: daily-workflow → daily, weekly-review → weekly Rename verbose skill folders and names to shorter, cleaner invocations: - daily-workflow/ → daily/ (invoked with /daily) - weekly-review/ → weekly/ (invoked with /weekly) Update all references across documentation, agents, and skill files to use consistent short command names. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
182 lines
3.7 KiB
Markdown
182 lines
3.7 KiB
Markdown
---
|
|
name: onboard
|
|
description: Load CLAUDE.md context files from vault for comprehensive understanding. Discovers hierarchical context, recent notes, and project states. Use at start of session or when Claude needs full vault context.
|
|
allowed-tools: Read, Glob, Grep
|
|
user-invocable: true
|
|
---
|
|
|
|
# Onboard Skill
|
|
|
|
Loads all CLAUDE.md files from your vault to provide comprehensive context for intelligent assistance.
|
|
|
|
## Usage
|
|
|
|
Invoke with `/onboard` or ask Claude to learn about your vault.
|
|
|
|
### Full Context Load
|
|
```
|
|
/onboard
|
|
```
|
|
|
|
### Specific Project Context
|
|
```
|
|
/onboard Projects/MyProject
|
|
```
|
|
|
|
## What This Skill Does
|
|
|
|
1. **Discovers Context Files**
|
|
- Searches for all CLAUDE.md files
|
|
- Traverses project directories
|
|
- Respects depth limits
|
|
|
|
2. **Loads Hierarchical Context**
|
|
- Root CLAUDE.md first (global context)
|
|
- Project-specific CLAUDE.md files
|
|
- Recent daily notes for current state
|
|
|
|
3. **Builds Understanding**
|
|
- Your personal mission/goals
|
|
- Project structures and status
|
|
- Workflow preferences
|
|
- Custom conventions
|
|
|
|
## Context Hierarchy
|
|
|
|
```
|
|
vault/
|
|
├── CLAUDE.md # [1] Global context - loaded first
|
|
├── Projects/
|
|
│ ├── Project A/
|
|
│ │ └── CLAUDE.md # [2] Project context
|
|
│ └── Project B/
|
|
│ └── CLAUDE.md # [3] Another project context
|
|
└── Areas/
|
|
└── Health/
|
|
└── CLAUDE.md # [4] Area-specific context
|
|
```
|
|
|
|
## CLAUDE.md File Structure
|
|
|
|
### Root CLAUDE.md Should Include
|
|
```markdown
|
|
# System Context for Claude
|
|
|
|
## Personal Mission
|
|
[Your life mission/purpose]
|
|
|
|
## Current Focus
|
|
[What you're working on now]
|
|
|
|
## Preferences
|
|
- Writing style: [Formal/Casual/Technical]
|
|
- Detail level: [High/Medium/Low]
|
|
|
|
## Conventions
|
|
- File naming: [Your patterns]
|
|
- Tag system: [Your tags]
|
|
```
|
|
|
|
### Project CLAUDE.md Should Include
|
|
```markdown
|
|
# Project: [Name]
|
|
|
|
## Overview
|
|
[What this project is about]
|
|
|
|
## Current Status
|
|
[Where things stand]
|
|
|
|
## Key Decisions
|
|
[Important choices made]
|
|
|
|
## Next Steps
|
|
[What needs to happen]
|
|
```
|
|
|
|
## Smart Context Loading
|
|
|
|
### Recent Activity
|
|
Automatically considers:
|
|
- Last 7 days of daily notes
|
|
- Current week's review
|
|
- Recently modified projects
|
|
|
|
### Selective Loading
|
|
For focused assistance:
|
|
```
|
|
/onboard Projects/WebApp # Only specific project
|
|
/onboard Goals # Only goals context
|
|
```
|
|
|
|
## Use Cases
|
|
|
|
### Starting a Session
|
|
```
|
|
/onboard
|
|
"Help me plan my day based on my goals"
|
|
```
|
|
|
|
### Project Work
|
|
```
|
|
/onboard Projects/MyApp
|
|
"Help me refactor the authentication module"
|
|
```
|
|
|
|
### Weekly Planning
|
|
```
|
|
/onboard Goals
|
|
"Analyze my week and suggest improvements"
|
|
```
|
|
|
|
## Context Variables
|
|
|
|
Your CLAUDE.md files can include preferences:
|
|
|
|
```markdown
|
|
## Variables for Claude
|
|
- DEFAULT_LANGUAGE: JavaScript
|
|
- TIMEZONE: America/New_York
|
|
- COMMUNICATION_STYLE: Direct and concise
|
|
```
|
|
|
|
## Best Practices
|
|
|
|
### Keep Context Updated
|
|
- Review CLAUDE.md files monthly
|
|
- Update after major decisions
|
|
- Remove outdated information
|
|
- Add new learnings
|
|
|
|
### Be Specific
|
|
- Clear project descriptions
|
|
- Specific preferences
|
|
- Concrete examples
|
|
- Defined conventions
|
|
|
|
### Hierarchical Information
|
|
- Global → Area → Project → Task
|
|
- General → Specific
|
|
- Strategic → Tactical
|
|
|
|
## Privacy & Security
|
|
|
|
### Never Include in CLAUDE.md
|
|
- Passwords or credentials
|
|
- Personal identification numbers
|
|
- Financial account details
|
|
- Private API keys
|
|
|
|
### Safe Context Examples
|
|
- "I work in healthcare technology"
|
|
- "My projects involve web development"
|
|
- "I prefer morning work sessions"
|
|
|
|
## Integration
|
|
|
|
Works with:
|
|
- All other skills (provides context)
|
|
- `/daily` - Better daily planning with context
|
|
- `/weekly` - Informed weekly reviews
|
|
- Goal tracking - Understand goal cascade
|