From dev-skills
This skill should be used when organizing work using step-based file naming and folder structure. Load this skill at the start of working on a new feature to establish sequential, numbered organization for all files (scripts, outputs, tests, documentation). The skill guides the use of numbered prefixes (01_, 02_, 03_) and sub-step notation (01_1_, 01_2_) to maintain clear workflow order and traceability.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-skills:step-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Organize all work for a feature using step-based file naming with numbered prefixes. All files (scripts, outputs, tests, documentation) in the feature folder follow this convention.
Organize all work for a feature using step-based file naming with numbered prefixes. All files (scripts, outputs, tests, documentation) in the feature folder follow this convention.
<step_number>_<descriptive_name>.<extension>
Examples:
01_load_data.py02_clean_data.py03_analysis.ipynb04_results.csvWhen a step has multiple related files:
<step>_<substep>_<descriptive_name>.<extension>
Examples:
01_1_fetch_api.py01_2_parse_response.py02_1_clean_text.py02_2_clean_numbers.pyUse leading zeros based on expected number of steps:
01, 02, ..., 99001, 002, ..., 999This ensures proper alphabetical sorting.
Each todo item corresponds to a numbered step:
1. [in_progress] Load data (01_load_data.py)
2. [pending] Clean data (02_clean_data.py)
3. [pending] Run analysis (03_analysis.py)
This makes progress tracking natural and clear.
npx claudepluginhub aeghnnsw/cc-toolkit --plugin dev-skillsOrganizes project directories by mapping folders to work breakdowns or disposition rules, grouping files that change together. Use for repo layout, deciding file placement, or cleaning up messy folders.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.