Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

dev-onboarding-builder开发入职建设者

Agent Skill

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

总安装

2,187

周安装

93

GitHub Stars

32

下载量

766
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:dev-onboarding-builder(开发入职建设者)
来源仓库:https://github.com/patricio0312rev/skills
仓库路径:skills/dev-onboarding-builder
安装命令:
npx skills add https://github.com/patricio0312rev/skills --skill dev-onboarding-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/patricio0312rev/skills --skill dev-onboarding-builder

简介

dev-onboarding-builder 为新成员打造无缝入职体验,自动生成环境配置指南和首项任务。

  • 包含工具清单、环境变量示例、常见问题预案和团队介绍文档。
  • 提供精确时间估算,设定合理预期,减少初期挫败感。
  • 适用于远程团队或高频人员流动的项目组快速融入支持。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Developer Onboarding Builder

Create frictionless first-day experiences for new team members.

Core Workflow

  1. Assess prerequisites: Identify required tools and access
  2. Create setup guide: Step-by-step environment configuration
  3. Design first task: Choose appropriate starter assignment
  4. Add time estimates: Set expectations for each step
  5. Document common issues: Preemptive troubleshooting
  6. Introduce team: Context on people and structure
  7. Provide codebase tour: Walkthrough of key areas

Onboarding Documentation Structure

ONBOARDING.md Template

# Welcome to [Team/Project Name]! 🎉

This guide will help you get set up and productive on your first day.

**Estimated completion time:** 2-3 hours

## Before You Start

### Access Checklist

- [ ] GitHub organization access
- [ ] Slack workspace invitation
- [ ] Email account setup
- [ ] VPN credentials (if remote)
- [ ] Cloud console access (AWS/GCP/Azure)
- [ ] CI/CD dashboard access
- [ ] Project management tool (Jira/Linear)

### Tools to Install

- [ ] Node.js 20+ (via [Volta](https://volta.sh/))
- [ ] pnpm 8+
- [ ] Docker Desktop
- [ ] PostgreSQL 15+
- [ ] VS Code or preferred editor
- [ ] Git configured with your work email

## Day 1: Environment Setup

### Step 1: Clone Repository (5 min)

git clone git@github.com:company/project-name.git cd project-name

Why: Get the codebase on your machine

Troubleshooting:

  • SSH key not working? See GitHub SSH setup
  • Permission denied? Ask your manager to verify GitHub access

Step 2: Install Dependencies (10 min)

# Install Volta (Node version manager)
curl https://get.volta.sh | bash

# Install dependencies
pnpm install

Expected output: "Dependencies installed successfully"

Troubleshooting:

  • pnpm not found? Restart terminal or run volta install pnpm
  • Installation hangs? Check VPN connection

Step 3: Configure Environment (10 min)

# Copy environment template
cp .env.example .env

Edit .env with these values:

DATABASE_URL=postgresql://postgres:password@localhost:5432/projectname_dev
REDIS_URL=redis://localhost:6379
API_KEY=ask-team-for-dev-key

Get credentials from:

  • Database: Local setup (see next step)
  • API keys: Ask @alice or @bob on Slack #dev-onboarding
  • External services: Check 1Password vault "Dev Credentials"

Troubleshooting:

  • Can't find credentials? Post in #dev-onboarding
  • Missing env var? Check.env.example for all required variables

Step 4: Setup Database (15 min)

# Start PostgreSQL with Docker
docker run --name project-postgres \
  -e POSTGRES_PASSWORD=password \
  -p 5432:5432 \
  -d postgres:15

# Run migrations
pnpm db:migrate

# Seed with test data
pnpm db:seed

Expected output: "Migration complete. Database seeded."

Verify: Open http://localhost:5432 and check for tables

Troubleshooting:

  • Port 5432 already in use? Kill existing process: lsof -ti:5432 | xargs kill
  • Migration fails? Drop and recreate: pnpm db:reset

Step 5: Start Development Server (5 min)

pnpm dev

Expected output:

✓ Ready on http://localhost:3000

Test: Open http://localhost:3000 - you should see the homepage

Troubleshooting:

  • Port 3000 in use? Kill process or change PORT in.env
  • Build errors? Clear cache: rm -rf.next && pnpm dev

Step 6: Run Tests (5 min)

pnpm test

Expected output: All tests passing ✓

If tests fail:

  • First time? This is a bug! Report in #dev-help
  • Known issue? Check #dev-help pinned messages

Day 1: Your First Task

Task: Fix a Starter Issue

We've labeled some issues as good-first-issue for new team members.

Goal: Successfully complete one small PR to learn our workflow

Steps:

  1. Browse good first issues
  2. Pick one that interests you (or ask for suggestion in #dev-onboarding)
  3. Comment on the issue: "I'll take this!"
  4. Create a branch: git checkout -b fix/issue-123-description
  5. Make your changes
  6. Write/update tests
  7. Run pnpm lint and pnpm test
  8. Commit following conventions
  9. Push and create PR
  10. Request review from your mentor

Estimated time: 2-4 hours

Success criteria:

  • Branch created with proper name
  • Code changes made
  • Tests written/updated
  • All checks passing
  • PR created with description
  • Code reviewed and merged

Mentors: @alice (backend), @bob (frontend), @charlie (full-stack)

Day 2-3: Codebase Tour

Project Structure Overview

src/
├── app/              # Next.js routes (start here!)
│   ├── api/          # API endpoints
│   └── (auth)/       # Authentication pages
├── components/       # React components
│   ├── ui/           # Base UI components
│   └── features/     # Feature-specific components
├── lib/              # Utilities and helpers
│   ├── api/          # API client
│   ├── hooks/        # Custom React hooks
│   └── utils/        # Helper functions
├── services/         # Business logic layer
└── types/            # TypeScript definitions

Key Files to Understand

FileWhat It DoesWhen You'll Touch It
src/app/layout.tsxRoot layout & providersAdding global providers
src/lib/db.tsDatabase clientDatabase queries
src/lib/auth.tsAuthentication logicAuth-related features
src/middleware.tsRequest middlewareAdding auth/redirects

Walking Tour (Read These Files in Order)

  1. src/app/page.tsx - Homepage (entry point)
  2. src/app/api/users/route.ts - Simple API endpoint
  3. src/services/user.service.ts - Business logic example
  4. src/components/ui/button.tsx - UI component pattern
  5. src/lib/hooks/useUser.ts - Custom hook example

Exercise: Find the code that handles user registration. Hint: Start at the API route!

Common Patterns

API Route Pattern

// src/app/api/[resource]/route.ts
export async function GET(req: Request) {
  // 1. Validate auth
  // 2. Parse request
  // 3. Call service layer
  // 4. Return response
}

Service Layer Pattern

// src/services/[resource].service.ts
export class UserService {
  async create(data: CreateUserDto) {
    // 1. Validate data
    // 2. Business logic
    // 3. Database operation
    // 4. Return result
  }
}

Week 1: Learning Path

Day 1

  • Complete environment setup
  • Fix first issue
  • Meet your team (schedule 1:1s)

Day 2-3

  • Read codebase tour documents
  • Complete second issue (medium complexity)
  • Review 2-3 PRs from teammates

Day 4-5

  • Work on first feature (with mentor pairing)
  • Attend team standup/planning
  • Set up development tools (linters, extensions)

Team Structure

Engineering Team

Alice (@alice) - Tech Lead

  • Approves architecture decisions
  • Code review on complex PRs
  • Ask: System design questions

Bob (@bob) - Senior Backend Engineer

  • Database and API expert
  • Ask: Backend, performance questions

Charlie (@charlie) - Senior Frontend Engineer

  • UI/UX implementation
  • Ask: React, styling questions

Your Manager (@manager)

  • Weekly 1:1s on Fridays 2pm
  • Career development discussions
  • Ask: Process, priorities, career questions

Communication Channels

  • #dev-general - General development discussion
  • #dev-help - Ask questions, get unstuck
  • #dev-onboarding - New member support
  • #dev-releases - Release announcements
  • #dev-alerts - Production alerts

Meeting Schedule

  • Daily Standup - 10:00 AM (15 min)
  • Sprint Planning - Mondays 2:00 PM (1 hour)
  • Team Retro - Fridays 4:00 PM (45 min)
  • Tech Talks - Thursdays 3:00 PM (30 min)

Development Workflow

Daily Workflow

  1. Morning: Check Slack, pull latest main
  2. Standup: Share yesterday, today, blockers
  3. Code: Work on assigned tickets
  4. Lunch: Team usually eats at 12:30
  5. Afternoon: Continue coding, review PRs
  6. End of day: Update ticket status, push work

PR Review Guidelines

When reviewing PRs:

  • Check code quality and style
  • Verify tests cover changes
  • Run the code locally if significant
  • Ask questions if unclear
  • Approve when satisfied

Getting Code Reviewed

When requesting review:

  • Self-review first
  • Add clear description
  • Link related issues
  • Tag appropriate reviewers
  • Address feedback promptly

Common Gotchas

Database

Problem: relation "users" does not exist Solution: Run migrations: pnpm db:migrate

Problem: Seed data not appearing Solution: Reset database: pnpm db:reset

Development Server

Problem: Changes not reflecting Solution:

  1. Hard refresh (Cmd+Shift+R)
  2. Clear.next folder: rm -rf.next
  3. Restart dev server

Problem: Port already in use Solution: Kill process: lsof -ti:3000 | xargs kill

Environment

Problem: Missing environment variable Solution: Check.env.example, add to your.env

Problem: API key not working Solution: Verify it's the dev key, not prod (ask team)

Resources

Documentation

Learning Resources

Internal Resources

Getting Help

When You're Stuck (5-15-30 Rule)

  • 5 minutes: Try to solve it yourself
  • 15 minutes: Search docs, Stack Overflow, past issues
  • 30 minutes: Ask in #dev-help with context

Good Question Template

**What I'm trying to do:** [goal]
**What I tried:** [attempts]
**Error message:** [full error]
**Environment:** [OS, Node version, etc.]
**Related code:** [link to file/line]

Who to Ask

  • Setup issues: #dev-onboarding or #dev-help
  • Code questions: #dev-help or your mentor
  • Process questions: Your manager
  • Urgent/production: #dev-alerts

Week 1 Checklist

By end of week 1, you should have:

  • Completed environment setup
  • Fixed 2-3 good-first-issues
  • Created first feature PR
  • Met with all team members
  • Attended all team meetings
  • Read key documentation
  • Understood development workflow
  • Know how to get help

Feedback

We're always improving onboarding! Please share:

  • What went well?
  • What was confusing?
  • What's missing?

Share in: #dev-onboarding or with your manager


Welcome to the team! We're excited to have you here! 🚀

## Onboarding Best Practices

### Time Estimates
- Be realistic with timing
- Include buffer for troubleshooting
- Track actual time vs estimated

### Progressive Complexity
- Day 1: Setup and simple task
- Week 1: Understanding patterns
- Month 1: Independent features

### Clear Success Criteria
- Checklist for each step
- Objective completion markers
- Regular check-ins

### Preemptive Troubleshooting
- Document known issues
- Provide solutions upfront
- Update based on new dev feedback

### Human Connection
- Introduce team members
- Schedule 1:1s
- Provide mentors

## First Task Selection Criteria

Good first task should:
- [ ] Be completable in 2-4 hours
- [ ] Touch multiple areas lightly
- [ ] Have clear acceptance criteria
- [ ] Require PR and review
- [ ] Be genuinely useful (not busy work)
- [ ] Have mentor availability

**Examples:**
- Fix typo in error message (touches: frontend, i18n, testing)
- Add validation to API endpoint (touches: backend, testing, docs)
- Improve loading state (touches: frontend, UX, components)

## Documentation Components

### Essential Sections
1. Prerequisites and access
2. Step-by-step setup with time estimates
3. First task assignment
4. Codebase tour
5. Team structure
6. Communication channels
7. Common issues and solutions
8. Resources and next steps

### Optional but Valuable
- Video walkthrough
- Pair programming schedule
- Reading list
- Architecture diagrams
- Glossary of terms

## Maintenance

### Keep Updated
- Review after each new hire
- Update tool versions
- Refresh access instructions
- Add new common issues

### Collect Feedback
- Exit survey after week 1
- Regular check-ins
- Track time to productivity
- Document pain points

## Output Checklist

Complete onboarding package includes:

- [ ] ONBOARDING.md with step-by-step guide
- [ ] Time estimates for each step
- [ ] First task identified and documented
- [ ] Team structure and communication
- [ ] Troubleshooting for common issues
- [ ] Links to all necessary resources
- [ ] Checklists for progress tracking
- [ ] Feedback mechanism
- [ ] Mentor assignments
- [ ] Expected timeline (day/week/month)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.47%
按下载量换算226

Gemini CLI

22.38%
按下载量换算171

Antigravity

18.33%
按下载量换算140

windsurf

11.62%
按下载量换算89

github-copilot

8.55%
按下载量换算65

Codex

3.09%
按下载量换算24

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills