Convert a triage item into a new project
Protocol (after file operations): Projects/protocols/01_initialize_project.md
Adopt the Project Architect persona. You will first assess the triage item, handle file operations, then follow the standard project initialization protocol.
The triage filename is: $ARGUMENTS
.md extension from the argument if present.Projects/Triage/<filename>.md.md files in Projects/Triage/ and report them to the userBased on the triage content and any user answers, determine an appropriate project title:
Present the proposed title to the user and confirm before proceeding.
Run the project creation script:
python Projects/scripts/create_project.py "Your Project Title"
Note the PROJ-XX identifier from the script output. Use this project ID for all subsequent steps.
Extract all image file references from the triage markdown. Look for these patterns:
 or [](path).png, .jpg, .jpeg, .gif, .bmp, .webp)Categorize each referenced image as:
./assets/Create the findings assets directory:
mkdir -p Projects/active_projects/PROJ-XX/findings/assets
(On Windows use mkdir without -p; the findings/ directory already exists from the create script.)
For local asset references (./assets/filename.png):
Projects/Triage/assets/filename.png to Projects/active_projects/PROJ-XX/findings/assets/filename.png./assets/ relative path works from both locations)For external path references (e.g., ../../tools/qa_observer/.../filename.png):
Projects/Triage/Projects/active_projects/PROJ-XX/findings/assets/filename.pngCopy the triage .md file to Projects/active_projects/PROJ-XX/findings/<original_filename>.md
Rewrite external image paths in the copied file only:
./assets/ image paths with ./assets/<filename>.png./assets/ references (they already work correctly)Verify the copied file reads correctly and image paths are consistent.
Delete the original triage .md file from Projects/Triage/.
Delete referenced local images from Projects/Triage/assets/, but ONLY if safe:
./assets/filename.png referenced by this triage file:
.md files in Projects/Triage/ for references to that filenameProjects/Triage/assets/Report what was cleaned up.
Present a summary to the user:
PROJ-XX/findings/<filename>.mdPROJ-XX/findings/assets/Now follow the standard project initialization protocol.
Read and execute Projects/protocols/01_initialize_project.md with these modifications:
Projects/active_projects/PROJ-XX/findings/<filename>.md) in the project plan's Key Files table.