Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

onboard新手引导设计

Agent Skill

onboard 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

20

周安装

17

GitHub Stars

1,390

下载量

140
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:onboard(新手引导设计)
来源仓库:https://github.com/ballred/obsidian-claude-pkm
仓库路径:skills/onboard
安装命令:
npx skills add https://github.com/ballred/obsidian-claude-pkm --skill onboard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/ballred/obsidian-claude-pkm --skill onboard

简介

onboard 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限和维护状态。
  • 使用前建议核实是否会触发联网、命令执行或文件读写操作。
  • 可结合原始 README 进一步验证具体用法和功能边界。

SKILL.md

Onboard Skill

Interactive vault setup (first run) and context loading (subsequent runs).

Usage

/onboard                    # Full onboard (setup if first run, context load if not)
/onboard Projects/MyProject # Load specific project context

First-Run Setup

If the file FIRST_RUN exists in the vault root, this is a new vault. Run the interactive setup:

Step 1: Welcome

Greet the user and explain what will happen:

  • "I'll ask a few questions to personalize your vault (~2 minutes)"
  • "Your answers are saved locally in vault-config.json"
  • "You can change these anytime by editing that file or running /onboard again"

Step 2: Ask Questions

Use AskUserQuestion to ask these interactively:

Question 1: Your name

  • "What should I call you?"
  • Used for personalized prompts and greetings

Question 2: Preferred review day

  • "What day do you prefer for your weekly review?"
  • Options: Sunday (Recommended), Saturday, Monday, Friday
  • Used by /review auto-detection and session-init nudges

Question 3: Primary goal areas

  • "Which areas are most important to you right now? (Pick 2-4)"
  • Options: Career & Professional, Health & Wellness, Relationships, Personal Growth
  • Also offer: Financial, Creativity & Fun, Learning, Other
  • multiSelect: true
  • Used to customize goal template suggestions

Question 4: Work style

  • "How do you prefer Claude to interact?"
  • Options: Direct and concise (Recommended), Coaching and challenging, Detailed and thorough, Minimal — just do the task
  • Sets output style preference

Step 3: Save Configuration

Write vault-config.json in the vault root:

{
  "name": "User's name",
  "reviewDay": "Sunday",
  "goalAreas": ["Career & Professional", "Health & Wellness"],
  "workStyle": "Direct and concise",
  "setupDate": "2026-02-15",
  "version": "3.1"
}

Step 4: Personalize CLAUDE.md

Edit the root CLAUDE.md:

  • Replace [CUSTOMIZE: Add your personal mission statement here] with a prompt based on their goal areas
  • Update the "Current Focus" section to reference their chosen areas

Step 5: Remove First-Run Marker

rm FIRST_RUN

Step 6: Confirm Setup

Tell the user:

  • "Your vault is set up! Here's what's available:"
  • Brief cascade overview
  • "Try /daily to start your first morning routine"
  • "Try /review anytime — it auto-detects the right review type"

Then proceed to the standard context loading below.

Standard Context Loading (Subsequent Runs)

What This Skill Does

  1. Discovers Context Files

- Searches for all CLAUDE.md files - Traverses project directories - Respects depth limits

  1. Loads Hierarchical Context

- Root CLAUDE.md first (global context) - Project-specific CLAUDE.md files - Recent daily notes for current state

  1. Scans Active Projects

- Auto-discovers all Projects/*/CLAUDE.md files - Extracts project name, phase, progress, and goal linkage - Displays active project count and summary in onboard output

  1. Reads User Preferences

- Loads vault-config.json if present - Applies name, review day, work style preferences - Uses goal areas to prioritize context loading

  1. 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

# 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

# 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

Project Summary

When loading full context, include a project overview:

### Active Projects (N)
| Project | Phase | Progress | Goal |
|---------|-------|----------|------|
| [[ProjectA]] | Active | 60% | [[Goal 1]] |
| [[ProjectB]] | Planning | 10% | [[Goal 3]] |

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:

## 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
  • /monthly - Monthly review with full context
  • /project - Project status overview
  • Goal tracking - Understand goal cascade

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.46%
按下载量换算40

trae

21.67%
按下载量换算30

Gemini CLI

18.24%
按下载量换算26

Antigravity

11.77%
按下载量换算16

windsurf

8.22%
按下载量换算12

Codex

3.76%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills