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.