بنقرة واحدة
setup-project
Onboards a new developer - explains the project, runs setup steps, verifies everything works
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Onboards a new developer - explains the project, runs setup steps, verifies everything works
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | setup-project |
| description | Onboards a new developer - explains the project, runs setup steps, verifies everything works |
| user-invocable | true |
| allowed-tools | Bash Read Glob |
| effort | medium |
cat README.md 2>/dev/null | head -60
cat package.json | grep -E '"name"|"description"|"scripts"' -A 10
ls src/ 2>/dev/null
# Install dependencies
npm install 2>&1 || bun install 2>&1
# Check environment
ls .env* 2>/dev/null
.env is missing, copy from .env.example and list what needs filling:cp .env.example .env 2>/dev/null && echo "Created .env from example"
npx prisma migrate dev 2>/dev/null || echo "No Prisma detected"
npm run dev 2>&1 | head -20 &
sleep 3
curl -s http://localhost:3000/health 2>/dev/null || echo "Check manually"
npm test 2>&1 | tail -10
Project: [name]
Stack: [detected tech]
Setup: ✅ complete / ❌ issues found
Next steps for new developer:
1. Fill in .env: STRIPE_SECRET_KEY, SENDGRID_API_KEY
2. Run: npm run db:seed
3. Read: docs/architecture.md
Analyzes the current session's token usage, pinpoints where tokens were wasted, and produces concrete optimization actions
Generates API documentation from route definitions (Express, Fastify, Hono, etc.)
Adds caching to expensive operations - Redis, in-memory, HTTP cache headers
Staged değişiklikleri analiz edip Conventional Commits formatında commit mesajı oluşturur
Reports cyclomatic complexity hotspots and refactoring suggestions
Finds unused functions, variables, exports, and dependencies across the codebase