소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 5월 11일 16:18
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill monorepo-patterns명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | monorepo-patterns |
| description | Monorepo — workspace tooling, package boundaries, CI optimization. |
| Tool | Key Features | Best For |
|---|---|---|
| Turborepo | Remote caching, task pipelines, incremental builds | JS/TS monorepos, fast CI |
| Nx | Affected-build detection, generators, plugin ecosystem | Large orgs, polyglot repos |
| pnpm workspaces | Built-in workspace protocol, disk-efficient hoisting | JS/TS, lean setup |
| Yarn workspaces | Mature, broad compatibility | Teams already on Yarn |
| Lerna | Package publishing, changelog automation | Library monorepos with many npm packages |
Turborepo + pnpm workspaces is the recommended default for new JS/TS monorepos. For polyglot (JS + Go + Python), prefer Nx or Bazel.
packages/auth, packages/billing, packages/notificationspackages/shared (or packages/types)apps/web, apps/api) depend on packages, never on each otherprivate: true in package.json — they are not published to npmmonorepo/
apps/
web/ ← Next.js / React app
api/ ← Node.js / Express API
packages/
shared/ ← types, constants, utilities
ui/ ← design system, primitives
auth/ ← auth logic, shared between apps
config/ ← ESLint, TypeScript, Prettier configs
"@acme/shared": "workspace:*""react": "18.3.1") for leaf apps to ensure reproducible builds"^18.0.0") only for published library packagespackage.json to avoid duplicate installspnpm dedupe periodically to collapse duplicate transitive dependencies# Turborepo
turbo run build test --filter=...[HEAD^1]
# Nx
nx affected --target=build --base=HEAD~1
lint and typecheck in parallel with test; gate deploy on both passing| Package type | Strategy | Tool |
|---|---|---|
Published libraries (packages/*) | Independent — each has its own semver | Changesets, Lerna |
Internal apps (apps/*) | Fixed / date-based, not published | Git tags per app |
| Shared internal packages | Follow apps that consume them; no independent publish | — |
Use Changesets for automated changelog generation and version bumps on published packages.
packages/shared — never copy-pastepackages/ui; app-specific components stay in apps/webpackages/config/eslint, packages/config/tsconfig) keep shared tooling config DRYsrc/ directory — only from published/workspace packageseslint-plugin-import no-restricted-paths to block cross-app imports:// .eslintrc — prevent apps/web from importing apps/api internals
"import/no-restricted-paths": ["error", {
"zones": [{ "target": "apps/web", "from": "apps/api/src" }]
}]
@nx/enforce-module-boundaries with depConstraints to declare allowed dependency directions# Build from root
COPY pnpm-workspace.yaml ./
COPY packages/shared ./packages/shared
COPY apps/api ./apps/api
RUN pnpm install --frozen-lockfile --filter api...
dist/ and node_modules to the final imageacme/api:abc1234pnpm store layer in Docker BuildKit cache mounts to speed up dependency installs