用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/UitbreidenOS/UitKit --skill team-onboarding命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Guidelines and instructions for Agent execution state rollback rules
Guidelines and instructions for Agent execution step counters limits
Guidelines and instructions for Agent execution timeout limits setups
基于 SOC 职业分类
正在显示 SKILL.md
| name | team-onboarding |
| description | - User runs `/team-onboarding` |
/team-onboardingONBOARDING.md or equivalent — update the existing doc rather than regeneratingThe onboarding document covers everything a developer needs to go from zero to first commit. Sections:
package.json, pyproject.toml, go.mod, or equivalent.claude/skills/, what agents are available, what MCP servers are configured, useful slash commands for this projectRead these files before generating:
README.md — project description, quick start
package.json / pyproject.toml / go.mod / Cargo.toml — versions, scripts, dependencies
CLAUDE.md — team conventions, Claude config
Makefile — available commands
docker-compose.yml — services, ports, environment
.env.example — required environment variables
.github/workflows/ — CI/CD pipeline, test commands, deploy triggers
src/ or app/ — entry points, top-level structure
Do not invent information. If a section's source file doesn't exist or doesn't contain the relevant info, write a placeholder like [TODO: add deployment process] rather than guessing.
Output: a single Markdown document. No HTML, no front matter.
Structure:
# Project Name — Developer Onboarding
> One-sentence description of what the project does.
## Prerequisites
## Local Setup
## Tech Stack
## Key File Locations
## Running Tests
## Deployment
## Team Conventions
## Claude Code Config
## Getting Help
Keep it scannable. Use code blocks for every command. Use tables for tech stack and file locations. Target length: 2–4 pages when printed.
Check in this order:
docs/ directory exists → save to docs/onboarding.mdONBOARDING.md already exists → update it in placeONBOARDING.md at the project rootAfter saving, tell the user the file path and suggest they add it to the new hire checklist or a pinned Slack/Notion link.
Read .claude/ to populate this section:
ls .claude/skills/ # list active skills → document slash commands
ls .claude/agents/ # list agents → document when to use each
cat .claude/settings.json # MCP servers, hooks, auto-approvals
Format as a quick-reference table:
| Slash command | What it does |
|---|---|
/graphql-client | Set up Apollo Client with codegen |
/db-specialist | Delegate complex query optimization to the DB agent |
/pr-review | Run automated PR review before merging |
Run /team-onboarding on a Next.js + Drizzle + Vercel project.
Claude reads: package.json (Next.js 15, Drizzle ORM 0.30, TypeScript 5.4), docker-compose.yml (PostgreSQL 16 on port 5432), .env.example (DATABASE_URL, NEXTAUTH_SECRET, RESEND_API_KEY), Makefile (dev, test, migrate, seed targets), .github/workflows/deploy.yml (Vercel preview on PR, production on merge to main), CLAUDE.md (squash merge policy, conventional commits, PR requires 1 approval).
Generated docs/onboarding.md includes:
# Acme App — Developer Onboarding
> B2B SaaS for invoice management — Next.js 15 frontend, Drizzle ORM + PostgreSQL backend, deployed on Vercel.
## Prerequisites
- Node.js 20+
- Docker Desktop (for local PostgreSQL)
- Vercel CLI: `npm i -g vercel`
## Local Setup
\`\`\`bash
git clone git@github.com:org/acme-app.git
cd acme-app
npm install
cp .env.example .env.local # fill in DATABASE_URL and NEXTAUTH_SECRET
docker compose up -d # starts PostgreSQL on localhost:5432
npm run db:migrate # apply all migrations
npm run db:seed # load dev fixtures
npm run dev # http://localhost:3000
\`\`\`
## Tech Stack
| Layer | Technology | Version |
|---|---|---|
| Framework | Next.js (App Router) | 15.1.0 |
| Language | TypeScript | 5.4.5 |
| ORM | Drizzle ORM | 0.30.9 |
| Database | PostgreSQL | 16 |
| Auth | NextAuth.js | 5.0.0-beta |
| Email | Resend | 3.2.0 |
| Deployment | Vercel | — |
...
The full document runs ~3 pages and covers everything from first clone to first merged PR.