Command-line tool for Feature-Driven Development (FDD) methodology workflows.
Version: 0.1.0
Architecture: DRAFT (awaiting validation)
Features: ✅ 1/8 IMPLEMENTED
- ✅ feature-init: CLI entry point fully implemented (2026-01-03)
- ⏳ 7 features pending implementation
# Install dependencies
npm install
# Build
npm run build
# Link CLI locally for development
npm link# Check version
fdd --version
# Show help
fdd --helpsrc/- Source codecommands/- CLI command implementationsutils/- Shared utilities (logger, errors)validators/- Validation enginesgenerators/- Code generatorstypes/- TypeScript type definitions
architecture/- FDD designs and specificationsDESIGN.md- Overall Design (system architecture)cli-specs/- CLI API specifications (CLISPEC format)domain-model/schemas/- GTS domain model schemasfeatures/- Feature designs
spec/- SpecificationsFDD/- FDD methodology (submodule)GTS/- Global Type System spec (submodule)fdd-cli-adapter/- Project-specific FDD adapter
- Review and complete
architecture/DESIGN.md - Run
fdd validate-architecture(target: ≥90/100) - Generate features with
fdd init-features
- FDD Methodology:
spec/FDD/AGENTS.md - FDD Adapter:
spec/fdd-cli-adapter/AGENTS.md - GTS Specification:
spec/GTS/README.md - Workflows:
spec/FDD/workflows/