BUILD Workflow

Build new projects from specifications with automated planning and implementation

Build new projects from specifications
Feature extraction and planning
Auto-implementation with tests
Quality gates and validation

Commands in this Workflow

Detailed documentation for each command including when to use it, what it's best for, and real-world examples.

/siftcoder:build

Auto

Build new projects from specifications

What It Does

Analyzes your specification document and automatically generates a complete, production-ready implementation with comprehensive tests and documentation. Uses multi-agent architecture (Planner → Coder → Reviewer → Fixer) to ensure high-quality output.

Usage

/siftcoder:build <spec-file.md>

Parameters

spec-file.mdMarkdown file containing project requirements, features, and technical specifications

When to Use

Starting a new project, implementing feature specifications, prototyping ideas rapidly

Best For

Full-stack applications, microservices, APIs, web applications from specifications

Real-World Example

/siftcoder:build ecommerce-spec.md
# Creates: Database models, REST API, React UI, tests, docs

/siftcoder:project-setup

Auto

Initialize new project structure

What It Does

Creates a complete project scaffold with best practices, proper folder structure, configuration files, and development environment setup. Includes TypeScript, ESLint, Prettier, and testing framework configuration.

Usage

/siftcoder:project-setup

When to Use

Creating a new project from scratch, setting up development environment

Best For

Quick project scaffolding, ensuring consistent project structure across team

Real-World Example

/siftcoder:project-setup
# Creates: src/, tests/, docs/, config files, README