See also: Installation · Configuration · Walk Guide · CLI Reference
rebuild init /path/to/my-serviceThis creates:
rebuild.yaml— configuration file.env— environment variables (API keys, etc.)
project:
days: 14
deploy:
method: none # or docker-compose, auto
health_url: http://localhost:8000/health
health_timeout: 60
base_url: http://localhost:8000
screenshots: false# Dry-run: walk history without deploying
rebuild walk /path/to/my-service --deploy none --days 7 --dry-runWith a running Docker Compose stack:
rebuild walk /path/to/my-service --deploy docker-compose --days 30# Serve results on http://localhost:7821
rebuild serve --results-dir /path/to/my-service/.rebuild
# Or open the generated index.html directly
open /path/to/my-service/.rebuild/index.html# Find duplicate code
rebuild analyze duplicates /path/to/my-service
# Build service dependency graph
rebuild analyze services /path/to/my-service
# Generate refactoring plan
rebuild refactor plan /path/to/my-service