Our review
Builds all packages in a Turborepo monorepo with detailed error reporting.
Strengths
- Leverages Turborepo caching for faster builds
- Reports which packages fail with specific error messages
- Supports filtering to specific packages via --filter
Limitations
- Requires Bun and Turborepo to be installed
- Assumes the project follows @topographic-studio/* naming
- Does not handle non-monorepo projects
When you need to build all packages in a Turborepo monorepo and get a clear summary of results.
When you only want to build a single package or when the project is not a monorepo.
Security analysis
SafeThe skill instructs the user to run standard build commands (bun run build, turbo run build) in a known monorepo. No destructive actions, external downloads, or data exfiltration are involved.
No concerns found
Examples
Build all packages in the monorepo using Turborepo.Build only the @topographic-studio/ui package in our monorepo.Monorepo Build Skill
Build all packages in the Topographic Studio monorepo using Turborepo.
Task
You are helping the user build all packages in the monorepo.
Instructions
- Navigate to the monorepo root directory
- Run the build command with Turborepo
- Report any build errors with specific package names and error messages
- If successful, show a summary of built packages
Commands
# Build all packages
bun run build
# Build with cache info
turbo run build --summarize
# Build specific package
turbo run build --filter=@topographic-studio/ui
Success Criteria
- All packages build without errors
- No TypeScript errors
- dist/ directories created for each package
- Build artifacts are properly generated
Error Handling
If build fails:
- Identify which package failed
- Show the specific error message
- Suggest fixes based on the error type:
- TypeScript errors → Check type definitions
- Import errors → Verify package dependencies
- Missing files → Check file paths
Output Format
Provide a clear summary:
✅ Built 4 packages successfully:
- @topographic-studio/ui
- @topographic-studio/utils
- @topographic-studio/config
- @topographic-studio/types
Build time: 3.2s
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.