Development
monorepo-scaffold - Claude MCP Skill
Convert single-app repos into a Turborepo monorepo using pnpm workspaces. Use when splitting apps into apps/ and shared code into packages/ with cached pipelines.
SEO Guide: Enhance your AI agent with the monorepo-scaffold tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to convert single-app repos into a turborepo monorepo using pnpm workspaces. use when splitting apps in... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# Monorepo Scaffold Convert a single-app repository into a Turborepo + pnpm workspace monorepo, without breaking builds or release flow. ## Purpose - Standardize on `pnpm` workspaces + `turbo` - Split runnable apps into `apps/` - Move shared code and config into `packages/` - Add reliable caching, fast CI, and clear ownership boundaries ## Target Structure Use this shape unless the repo already has stronger constraints. ```text . āā apps/ ā āā web/ ā āā mobile/ ā āā api/ āā packages/ ā āā shared/ ā āā ui-web/ ā āā ui-mobile/ ā āā config/ āā pnpm-workspace.yaml āā turbo.json āā package.json ``` ## CLI Commands Prefer explicit, reproducible commands. ```bash # Workspace baseline pnpm add -D turbo pnpm install # Optional: scaffold common layout quickly pnpm dlx create-turbo@latest --package-manager pnpm # Run tasks pnpm turbo run build pnpm turbo run dev --filter=web pnpm turbo run test --continue ``` ## Workflow Follow this order. Keep diffs small and reversible. 1. Audit current scripts, build outputs, and deploy entrypoints. 2. Create `apps/` and `packages/` folders. 3. Move the existing app into `apps/<name>/` with minimal edits. 4. Add `pnpm-workspace.yaml` and include `apps/*` and `packages/*`. 5. Add root `turbo.json` with a small, strict pipeline. 6. Normalize scripts so each app/package exposes `build`, `dev`, `lint`, `test`, and `typecheck` when relevant. 7. Extract shared code into `packages/shared` and wire via workspace deps. 8. Extract shared config into `packages/config` and reference it explicitly. 9. Update CI to run `pnpm install` then `pnpm turbo run build lint test typecheck`. 10. Verify with targeted filters, then full pipeline. ## Verification Checklist Do not trust the migration until all checks pass. - `pnpm install` completes without hoist hacks - `pnpm turbo run build` succeeds from repo root - `pnpm turbo run dev --filter=<app>` starts the expected app - Each app builds from a clean checkout - Shared packages are consumed via `workspace:*` ranges - Outputs are declared in `turbo.json` for cache hits - CI runs from root and matches local commands ## References - Setup guide: `skills/monorepo-scaffold/references/turborepo-setup.md` - Migration checks: `skills/monorepo-scaffold/references/migration-checklist.md`
Signals
Information
- Repository
- phrazzld/claude-config
- Author
- phrazzld
- Last Sync
- 3/2/2026
- Repo Updated
- 3/1/2026
- Created
- 1/28/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
upgrade-nodejs
Upgrading Bun's Self-Reported Node.js Version
cursorrules
CrewAI Development Rules
cn-check
Install and run the Continue CLI (`cn`) to execute AI agent checks on local code changes. Use when asked to "run checks", "lint with AI", "review my changes with cn", or set up Continue CI locally.
CLAUDE
CLAUDE.md
Related Guides
Bear Notes Claude Skill: Your AI-Powered Note-Taking Assistant
Learn how to use the bear-notes Claude skill. Complete guide with installation instructions and examples.
Mastering tmux with Claude: A Complete Guide to the tmux Claude Skill
Learn how to use the tmux Claude skill. Complete guide with installation instructions and examples.
OpenAI Whisper API Claude Skill: Complete Guide to AI-Powered Audio Transcription
Learn how to use the openai-whisper-api Claude skill. Complete guide with installation instructions and examples.