docs: update repository structure, add COO directories, and merge v2 proposal updates\n\n- Update main README.md repository structure to reflect current state\n- Remove context/ directory from databank as per new structure\n- Add COO sections to both databank/ and pmo/ directories\n- Create COO directories for transition to Albert\n- Add GLOSSARY.md template for project use\n- Update AGENTS.md to include COO transition information for Albert\n- Add rule requiring acronyms to be defined when first used\n- Add GLOSSARY requirement for all projects\n- Update PMO section to explain PMO (Project Management Office) acronym\n- Merge updates from PROPOSAL-AGENTS-v2.md into current AGENTS.md\n- Update version tracking in AGENTS.md to v8.0.0 reflecting COO changes\n- Add change tracking table to README.md\n- Reflect that project management artifacts stay local to projects with PMO linking to them\n- Update authority structure to include Albert's future role in COO transition

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2025-10-24 10:43:51 -05:00
parent 974fc96959
commit 347ef9d496
13 changed files with 669 additions and 34 deletions

View File

@@ -0,0 +1,72 @@
{
"name": "Demo Project",
"id": "SAMPLE-001",
"status": "Active",
"priority": "Medium",
"health": "Green",
"last_updated": "2025-10-24 10:00:00",
"tracking_url": "https://github.com/example/demo-project",
"owner": "Project Owner",
"dependencies": [],
"due_date": "2025-12-31",
"progress": 25,
"next_milestone": "Complete initial design phase",
"description": "This is a sample project created to demonstrate the PMO project registry functionality. It serves as an example of how projects should be structured and tracked within the PMO system.",
"objectives": [
"Set up project structure",
"Complete initial design phase",
"Implement core features",
"Testing and validation",
"Project completion"
],
"milestones": [
{
"name": "Project Setup",
"target_date": "2025-10-20",
"status": "Completed"
},
{
"name": "Initial Design",
"target_date": "2025-11-15",
"status": "In Progress"
},
{
"name": "Feature Implementation",
"target_date": "2025-11-30",
"status": "Not Started"
},
{
"name": "Testing",
"target_date": "2025-12-15",
"status": "Not Started"
},
{
"name": "Project Completion",
"target_date": "2025-12-31",
"status": "Not Started"
}
],
"resources": {
"team_members": [
"Project Owner"
],
"budget": "Demo project",
"tools": [
"GitHub",
"Documentation tools"
]
},
"risks": [
{
"risk": "Scope creep",
"impact": "Medium",
"mitigation_strategy": "Clearly defined objectives and scope"
},
{
"risk": "Resource availability",
"impact": "Low",
"mitigation_strategy": "Single owner, flexible timeline"
}
],
"notes": "This is a demonstration project for the PMO system. It shows how projects should be documented and tracked according to the established schema."
}