Complete project finalization with quality gates and git workflow automation.
Automates project finalization with quality gates, documentation updates, and git workflow.
/plugin marketplace add Para-FR/wd-framework/plugin install wd@wd-marketplaceComplete project finalization with quality gates and git workflow automation.
/wd:finalize [commit-message] [--skip-docs] [--skip-lint] [--skip-types] [--skip-build] [--dry-run] [--no-push]
bun lint for code quality validationbun type for TypeScript type checkingbun build for compilation verificationNote: Next.js 16+ removed
next lint. The command auto-detects the version and skips linting for Next.js 16+.
[commit-message] - Custom commit message (optional)--skip-docs - Skip documentation updates--skip-lint - Skip linting validation (only applies to Next.js < 16)--skip-types - Skip TypeScript type checking--skip-build - Skip build verification--dry-run - Show what would be done without executing--no-push - Commit locally but don't push to remote# Full workflow with custom message
/wd:finalize "feat: add user authentication system"
# Skip some steps
/wd:finalize --skip-docs --skip-build
# Dry run to see what would happen
/wd:finalize --dry-run
# Commit locally only
/wd:finalize "fix: resolve login bug" --no-push
Perfect for automating the repetitive "document + lint + build + commit + push" workflow you mentioned!