원클릭으로
use-npm-packages
Prefer well-maintained npm packages over custom implementations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Prefer well-maintained npm packages over custom implementations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Always use Turborepo commands for building, testing, and serving projects in this monorepo
Always use Turborepo commands for building, testing, and serving projects in this monorepo
Complete guide for Mastra development — agents, tools, workflows, vertical organization, and type safety
Always fix issues you encounter, even if unrelated to your current task
Essential clean code practices including naming, comments, and structure
Commit message format standards using Conventional Commits specification
| name | use-npm-packages |
| description | Prefer well-maintained npm packages over custom implementations |
ALWAYS prefer well-maintained npm packages over custom implementations.
Before writing custom code:
✅ Good Package Indicators:
This project uses lodash-es for common utility functions:
import { find, uniqueId, truncate, chain, groupBy, sumBy } from 'lodash-es';
const taskId = uniqueId('task-');
const description = truncate(longText, { length: 100 });
const task = find(tasks, task => task.status === 'running');
const result = chain(items)
.filter(item => item.active)
.sortBy('priority')
.take(5)
.value();
❌ Don't implement these yourself:
chokidarfkill, cross-spawnaxios, node-fetch, gotdate-fns, dayjspath modulezod, joi, yuplodash-esWrite custom code when:
Watch for packages with: