一键导入
turbo-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 | turbo-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