fix: correct databank architecture and implement proper CTO/COO structure\n\n- Remove incorrectly placed human/llm directories from databank root\n- Restructure databank with everything under databank/artifacts/ as requested\n- Implement proper CTO/COO structure under pmo/artifacts/ with complete PMO components\n- Create comprehensive collab/ directory structure for human/AI communication\n- Remove Joplin processing scripts and references as requested\n- Create proper scaffolding directories for quick domain standup\n- Update README documentation to reflect corrected architecture\n- Ensure only collab/ directories are editable by humans\n- AI agents manage databank/artifacts/ based on collab/ communications\n- Create structured intake templates and collaboration workflows\n- Maintain clear separation between readonly databank and read-write PMO\n- Implement proper single source of truth with AI-managed artifacts

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2025-10-24 12:38:23 -05:00
parent 919349aad2
commit a811335196
32 changed files with 941 additions and 1037 deletions

View File

@@ -0,0 +1,71 @@
# Questions Directory
This directory contains questions requiring AI responses and answers.
## Purpose
- **Knowledge Queries**: Questions about existing databank content
- **Clarification Requests**: Requests for clarification on procedures or content
- **Problem Solving**: Questions about solving specific problems
- **Information Gathering**: Requests for information about processes or tools
## Structure
```
questions/
├── answered/ # Answered questions with responses
├── pending/ # Pending questions awaiting responses
├── urgent/ # Urgent questions requiring immediate attention
└── README.md # This file
```
## Workflow
1. **Question Submission**: Submit new questions to appropriate category
2. **Triage**: AI agents triage questions by priority and complexity
3. **Research**: Gather information needed to answer questions
4. **Response**: Provide complete and accurate answers
5. **Archival**: Move answered questions to answered/ directory
## Question Format
All questions should follow a standard format:
```
# [QUESTION-TYPE]-[DATE]-[ID]: [Brief Title]
## Submitted By
Name and contact information
## Question
Complete question with all relevant context
## Context
Additional context that may help with answering
## Priority
Urgency level (High/Medium/Low)
## Deadline
If applicable, deadline for response
## Related Items
Links to related questions, proposals, or databank content
```
## Guidelines
### For Humans
- **Be Specific**: Provide complete questions with context
- **Include Details**: Include all relevant information upfront
- **Set Priority**: Indicate urgency level appropriately
- **Check Existing**: Look for existing answers before submitting
### For AI Agents
- **Respond Promptly**: Address questions in priority order
- **Be Complete**: Provide thorough and accurate answers
- **Reference Sources**: Link to relevant databank content
- **Follow Up**: Check if additional clarification needed
- **Maintain Records**: Keep complete question/answer history
---