بنقرة واحدة
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