Run complete quality gates workflow (craft → format → lint → type-check → test)
/plugin marketplace add marcioaltoe/claude-craftkit/plugin install quality@claude-craftkit# Quality Gates Execute the complete quality gates workflow to ensure code quality before committing. ## What This Does Runs the following sequence in order: 1. **Barrel Files** (`bun run craft`) - Generate/update barrel files 2. **Format** (`bun run format`) - Format code with Biome + Prettier 3. **Lint** (`bun run lint`) - Lint code with Biome 4. **Type Check** (`bun run type-check`) - TypeScript type checking 5. **Tests** (`bun run test`) - Run all tests ## When to Use Run quality gates: - ✅ Before committing code - ✅ After implementing a feature - ✅ After fixing bugs - ✅ Before c...