Project Bootstrap
Overview
Use this skill to create a new project scaffold from the current bundled template pack. The skill is script-first and stops after deterministic folder creation and file copying.
This skill is Windows-only.
Required Workflow
- Run
scripts/bootstrap_project.pyfirst. Do not hand-create the scaffold when the script can copy it deterministically. - Pass an explicit output directory. The script creates the target folder if it does not already exist.
- Use
--forceonly when the user explicitly wants existing scaffold files overwritten. - Review the
CREATEDandSKIPPEDsummary to confirm the expected layout. - Stop after scaffold creation. Do not interpret questionnaire answers, synthesize document content, or continue into follow-up document updates as part of this skill.
Bootstrap Command
Use PowerShell-style examples when showing the command:
python .\scripts\bootstrap_project.py C:\path\to\project
Use --force only when the user explicitly wants existing files overwritten:
python .\scripts\bootstrap_project.py C:\path\to\project --force
What the Script Does
scripts/bootstrap_project.py is standard-library only and deterministic. It:
- Validates that every expected source template and questionnaire file exists before copying.
- Creates
docs\,docs\questionnaires\,docs\BRD PRD SRD,docs\Data Documents, andrepo\if they do not already exist. - Copies the full current template pack into the target project with a fixed explicit source-to-target manifest.
- Copies templates unchanged. Placeholder tokens such as
{{PROJECT_NAME}},{{OWNER}}, and{{LAST_UPDATED}}remain untouched if they exist in source files. - Refuses to overwrite existing files unless
--forceis provided. - Proceeds safely in existing non-empty folders by copying missing scaffold files and skipping existing ones unless
--forceis used. - Prints stable plain-text summary lines labeled
CREATEDorSKIPPED. - Stops after copying. It does not read, interpret, or update any copied documents.
Generated Layout
The generated project layout is:
<output_dir>/
README.md
AGENTS.md
PM_AGENT.md
DATA_ENGINEERING_LEAD.md
DOCUMENTATION_AGENT.md
docs/
PROJECT_PLAN.md
WORK_LOG.md
BRD PRD SRD/
BRD_TEMPLATE.md
PRD_TEMPLATE.md
SRD_TEMPLATE.md
Data Documents/
DATA_DICTIONARY_TEMPLATE.md
DATA_MAPPING_DOCUMENT_TEMPLATE.md
DATA_QUALITY_AND_RECONCILIATION_PLAN.md
METRIC_DEFINITION_SIMPLE_TEMPLATE.md
METRIC_DEFINITION_TEMPLATE.md
METRIC_DICTIONARY_TEMPLATE.md
DATA_QUALITY_AND_RECONCILIATION_PLAN_QUESTIONNAIRE.md
RUNBOOK_SUPPORT_TEMPLATE.md
RUNBOOK_SUPPORT_QUESTIONNAIRE.md
questionnaires/
AGENTS.QUESTIONNAIRE.md
WORK_LOG.QUESTIONNAIRE.md
BRD_QUESTIONNAIRE.md
PRD_QUESTIONNAIRE.md
SRD_QUESTIONNAIRE.md
repo/
Keep this layout exact. Do not create extra planning files unless the user explicitly asks for them.
Resources
scripts/bootstrap_project.py: deterministic bootstrappertemplates/: source markdown templates copied into the target projectquestionnaires/: passive scaffold assets copied intodocs\questionnairesanddocs\Data Documentsaccording to the fixed manifest
Passive Assets
Questionnaires, role files, and templates remain in the scaffold as project assets, but this skill does not act on them after copying.
- Do not tell the user to fill questionnaires as part of this skill workflow.
- Do not read questionnaire answers during scaffold creation.
- Do not mutate any copied files during scaffold creation.
Maintenance Rules
- Keep the skill narrow, deterministic, and easy to validate.
- Keep the current file inventory, template contents, and target placement unchanged unless the user explicitly asks for a scaffold change.
- Keep
scripts/bootstrap_project.pyscript-first with a fixed explicit copy manifest. - If you change a template or questionnaire path, update the file map in
scripts/bootstrap_project.pyin the same edit. - If you change the scope again, update
agents/openai.yamlso the UI metadata stays aligned with the skill behavior.