First Workflow
Your First Custy Workflow
Understand, preview, and deliberately run Custy's development pipeline for the first time.
custy --dry-run run devCategory
Quick Command
custy [GLOBAL OPTIONS] run dev [OPTIONS]Overviewâ
The public Dev profile coordinates routine development work. Its current
registered sequence validates and opens only the commit message, backs it up,
stages selected changes, creates a commit, and pushes branch HEAD.
For a first run, use global dry-run mode. Move to normal execution only when the repository, generated resources, commit message, and remote destination have all been reviewed.
Preflight Checklist
Before You Begin
- Initialization is reviewedRequired
Project configuration, templates, and version resources exist in the intended locations.
- Validation succeedsRequired
custy validatecompletes without unresolved readiness failures. - Working-tree changes are understoodRequired
Only the files intended for the next commit are present or staged.
- Commit message is readyRequired
The configured commit-message file contains a reviewed message for this change.
- Remote destination is confirmedRequired
The configured remote is reachable and points to the intended repository.
git status --short --branch
git diff
git diff --staged
git remote -v
custy validateWhat the Dev Profile Does
Registered Development Sequence
Preview the Workflow
Global options belong before run.custy --dry-run run dev
Review the output for the resolved commit-message file, backup locations, staging behavior, commit preparation, and remote destination. If any part is unexpected, stop and adjust the project configuration or command options.
Run Normally When Ready
Normal execution is an explicit decision after the preview and repository
review.custy run dev
After completion, verify both local and remote state.git status --short --branch
git log -1 --decorate --oneline
git remote -v