원클릭으로
nx-monorepo-commands
Always use Turborepo commands for building, testing, and serving projects in this monorepo
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Always use Turborepo commands for building, testing, and serving projects in this monorepo
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
Use GitHub MCP tools for all repository operations instead of CLI or API calls
| name | nx-monorepo-commands |
| description | Always use Turborepo commands for building, testing, and serving projects in this monorepo |
CRITICAL: ALWAYS use Turborepo commands for this monorepo. Never run commands directly or use npm.
For any project operation, use the TURBO command format:
bunx turbo <target> --filter=<project>
Development:
bunx turbo serve --filter=<project> # Start development server
Build:
bunx turbo build --filter=<project> # Build for production
Testing:
bunx turbo test --filter=<project> # Run all tests
bunx turbo test --filter=<project> -- -- path/to/file.spec.ts # Run specific file
Linting:
bunx turbo lint --filter=<project> # Run linter
Workspace Commands:
bunx turbo lint
bunx turbo test
bunx turbo build
mcp - Mastra AI-powered Model Context Protocol serverelevenlabs - ElevenLabs voice interface integrationhome-assistant-voice-firmware - ESPHome firmware❌ NEVER use these patterns:
npm run <script> - Wrong package managernode or other direct executionAlways use appropriate timeouts for commands:
timeout 30 bunx turbo lint --filter=mcp
timeout 180 bunx turbo build --filter=mcp
timeout 180 bunx turbo test --filter=mcp