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.
npx claudepluginhub aeghnnsw/cc-toolkit --plugin dev-skillsThis skill uses the workspace's default tool permissions.
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.
Implements structured self-debugging workflow for AI agent failures: capture errors, diagnose patterns like loops or context overflow, apply contained recoveries, and generate introspection reports.
Monitors deployed URLs for regressions in HTTP status, console errors, performance metrics, content, network, and APIs after deploys, merges, or upgrades.
Provides React and Next.js patterns for component composition, compound components, state management, data fetching, performance optimization, forms, routing, and accessible UIs.
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.