feat: Sync latest templates from blackroad-sandbox
✨ Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
94
templates/google-drive/PROJECT-STRUCTURE-TEMPLATE.json
Normal file
94
templates/google-drive/PROJECT-STRUCTURE-TEMPLATE.json
Normal file
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"name": "TEMPLATE-PROJECT-FOLDER",
|
||||
"folders": [
|
||||
{
|
||||
"name": "00-PROJECT-CHARTER",
|
||||
"type": "folder"
|
||||
},
|
||||
{
|
||||
"name": "01-ROADMAP",
|
||||
"type": "folder"
|
||||
},
|
||||
{
|
||||
"name": "02-TEAM-ROSTER",
|
||||
"type": "folder"
|
||||
},
|
||||
{
|
||||
"name": "03-MEETING-NOTES",
|
||||
"type": "folder"
|
||||
},
|
||||
{
|
||||
"name": "04-DELIVERABLES",
|
||||
"type": "folder"
|
||||
},
|
||||
{
|
||||
"name": "05-RESOURCES",
|
||||
"type": "folder"
|
||||
}
|
||||
],
|
||||
"files": [
|
||||
{
|
||||
"name": "PROJECT-CHARTER.gdoc",
|
||||
"type": "document",
|
||||
"content": {
|
||||
"title": "{{PROJECT_NAME}} - Project Charter",
|
||||
"sections": [
|
||||
{
|
||||
"heading": "\ud83d\udccb Project Overview",
|
||||
"content": "{{PROJECT_DESCRIPTION}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83c\udfaf Objectives",
|
||||
"content": "{{OBJECTIVES}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\udc65 Team",
|
||||
"content": "{{TEAM_MEMBERS}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\udcc6 Timeline",
|
||||
"content": "{{TIMELINE}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\udcb0 Budget",
|
||||
"content": "{{BUDGET}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\ude80 Success Criteria",
|
||||
"content": "{{SUCCESS_CRITERIA}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "ROADMAP.gsheet",
|
||||
"type": "spreadsheet",
|
||||
"content": {
|
||||
"sheets": [
|
||||
{
|
||||
"name": "Timeline",
|
||||
"columns": [
|
||||
"Phase",
|
||||
"Start Date",
|
||||
"End Date",
|
||||
"Status",
|
||||
"Owner",
|
||||
"Dependencies"
|
||||
],
|
||||
"rows": []
|
||||
},
|
||||
{
|
||||
"name": "Milestones",
|
||||
"columns": [
|
||||
"Milestone",
|
||||
"Target Date",
|
||||
"Status",
|
||||
"Deliverables"
|
||||
],
|
||||
"rows": []
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
25
templates/google-drive/TEMPLATE-DOC-MEETING-NOTES.json
Normal file
25
templates/google-drive/TEMPLATE-DOC-MEETING-NOTES.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"title": "{{MEETING_TITLE}} - {{DATE}}",
|
||||
"sections": [
|
||||
{
|
||||
"heading": "\ud83d\udcc5 Meeting Info",
|
||||
"content": "Date: {{DATE}}\nTime: {{TIME}}\nAttendees: {{ATTENDEES}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83c\udfaf Agenda",
|
||||
"content": "{{AGENDA}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\udcdd Discussion",
|
||||
"content": "{{DISCUSSION}}"
|
||||
},
|
||||
{
|
||||
"heading": "\u2705 Action Items",
|
||||
"content": "{{ACTION_ITEMS}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\udd1c Next Steps",
|
||||
"content": "{{NEXT_STEPS}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
33
templates/google-drive/TEMPLATE-DOC-TECHNICAL-SPEC.json
Normal file
33
templates/google-drive/TEMPLATE-DOC-TECHNICAL-SPEC.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"title": "{{PROJECT_NAME}} - Technical Specification",
|
||||
"sections": [
|
||||
{
|
||||
"heading": "\ud83c\udfaf Overview",
|
||||
"content": "{{OVERVIEW}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83c\udfd7\ufe0f Architecture",
|
||||
"content": "{{ARCHITECTURE}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\udcca Data Models",
|
||||
"content": "{{DATA_MODELS}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\udd0c API Endpoints",
|
||||
"content": "{{API_ENDPOINTS}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\udd10 Security",
|
||||
"content": "{{SECURITY}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\udcc8 Performance",
|
||||
"content": "{{PERFORMANCE}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83e\uddea Testing Strategy",
|
||||
"content": "{{TESTING}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
29
templates/google-drive/TEMPLATE-DOC-USER-GUIDE.json
Normal file
29
templates/google-drive/TEMPLATE-DOC-USER-GUIDE.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"title": "{{PROJECT_NAME}} - User Guide",
|
||||
"sections": [
|
||||
{
|
||||
"heading": "\ud83d\udc4b Welcome",
|
||||
"content": "{{WELCOME}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\ude80 Getting Started",
|
||||
"content": "{{GETTING_STARTED}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83d\udcd6 Features",
|
||||
"content": "{{FEATURES}}"
|
||||
},
|
||||
{
|
||||
"heading": "\ud83c\udfaf How-To Guides",
|
||||
"content": "{{HOW_TO}}"
|
||||
},
|
||||
{
|
||||
"heading": "\u26a0\ufe0f Troubleshooting",
|
||||
"content": "{{TROUBLESHOOTING}}"
|
||||
},
|
||||
{
|
||||
"heading": "\u2753 FAQ",
|
||||
"content": "{{FAQ}}"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user