Compare commits

...

3 Commits

23 changed files with 1628 additions and 1001 deletions

48
AGENTS.md Normal file
View File

@@ -0,0 +1,48 @@
# Project-Specific Agent Guidelines - AIOS-Public
## Overview
This project contains global agent guidelines that apply to all projects in the ecosystem. The global rules are located in the databank and are referenced by all projects.
## Global Rules Reference
For the global agent guidelines and operating principles, see:
- **Human Format**: `databank/artifacts/human/agents/RULES-GLOBAL.md`
- **LLM Format**: `databank/artifacts/llm/agents/RULES-GLOBAL.json`
## Project-Specific Rules
This project (AIOS-Public) is special as it houses the global agent guidelines for all projects. Specific rules for this project:
### Purpose
- Centralized knowledge base and project management office for AI-assisted development
- Houses global rules that apply to all projects in the ecosystem
- Provides a reference for other projects to implement their own agent guidelines
### Structure
- `databank/` - Contains readonly context, guidelines, and personal information (global for all projects)
- `pmo/` - Contains project management functionality where updates are allowed
- `collab/` - Human/AI interaction space (read/write for interaction)
### Access Rights
- **Databank (readonly)**: Access only, no modifications allowed (except in designated collab areas)
- **PMO (read-write)**: Only update when project milestones reached or status updates needed
- **Collab (read/write)**: For human/AI interaction and communication
## Intake Processing Workflow (Project Specific)
This project implements intake processing from the collab/intake directory:
### Processing Intake Files
When new files appear in `databank/collab/intake/inbox/`:
1. **Identify Source Content**: Locate new files in the inbox directory only
2. **Process into Artifacts**: Create both human and LLM format versions in appropriate databank/artifacts subdirectories
3. **Archive Originals**: Create archive directory using current timestamp structure `archive/YYYY/MM/DD/HHMM` and move original intake files from inbox there
4. **Update TOC**: Ensure LLMDatabankTOC.json reflects the current artifact files
5. **Draft Handling**: Content that wasn't answered properly should be placed in the drafts directory
6. **Template Completion**: If a PERSONAL_INFO_TEMPLATE.md is processed with blank sections, create a new template file with those sections filled in using a -YYYY-MM-DD-HHMM.md suffix
## Change Tracking/Revision Table
| Date/Time | Version | Description | Author |
|------------------------|---------|--------------------------------------------------|---------------------|
| 2025-10-24 14:00 CDT | 1.0.0 | Initial creation of project-specific AGENTS.md | Charles N Wyble (@ReachableCEO) |
---

View File

@@ -0,0 +1,296 @@
# Date/Time
2025-10-24 12:00 CDT
---
# GLOBAL-RULES.md - Global Guidelines for AI Agents Across All Projects
## Core Operating Principles
### Context Awareness
- You are operating within a mounted AI home directory with separated databank (readonly) and PMO (read-write)
- **Databank** (`/ai-home/databank/`): Contains readonly context, guidelines, and personal information
- **PMO** (`/ai-home/pmo/`): Contains project management functionality where updates are allowed
- Always consider the multi-project implications of your actions
- Respect the readonly nature of the databank and only update PMO when appropriate
### Communication Protocol
- Primary communication channel: collab/ directory in mounted AI home directory
- Use question -> proposal -> implementation workflow
- Document all significant decisions and changes with proper revision tracking
### Documentation Standards (Apply to ALL files you create)
- **Date/Time Headers**: Use consistent format YYYY-MM-DD HH:MM TZ in all markdown files (e.g., 2025-10-24 12:00 CDT)
- **Change Tracking**: Maintain revision tables in all documents with consistent date format
- **Changelog Elimination**: Remove separate changelog sections - use only Change Tracking/Revision Table format
- **Directory Structure**: Remove separate context/ directory - use subject-specific top-level directories instead (e.g., coo/, operations/, etc.)
- **Acronym Definition**: All acronyms must be defined when first used (e.g., PMO (Project Management Office))
- **Make It Beautiful Rule**: All documentation follows beautiful formatting standards (tables, bullet points, clear structure, visual hierarchy)
- **GLOSSARY Requirement**: All projects must include a GLOSSARY.md file explaining domain terms
## Repository Management
### Structure Requirements
- **Databank**: Readonly context (do not modify except in designated areas)
- **PMO**: Read-write project management (updates allowed here)
- Keep top-level repository clean (databank, pmo, and collab directories only)
- Use conventional commits (chore:, feat:, docs:, fix:, etc.)
- Commit frequently using atomic commits
- Only commit to local repository (no git push operations)
### Access Rights
- **Databank (readonly)**: Access only, no modifications allowed
- **PMO (read-write)**: Only update when project milestones reached or status updates needed
- **Collab (readonly)**: Access for reference, no modifications in active projects
## Intake Processing Workflow (Global Standard - Implementation May Vary by Project)
### Processing Intake Files
When new files appear in `databank/collab/intake/inbox/`:
1. **Identify Source Content**: Locate new files in the inbox directory only
2. **Process into Artifacts**: Create both human and LLM format versions in appropriate databank/artifacts subdirectories
3. **Archive Originals**: Create archive directory using current timestamp structure `archive/YYYY/MM/DD/HHMM` and move original intake files from inbox there
4. **Update TOC**: Ensure LLMDatabankTOC.json reflects the current artifact files
5. **Draft Handling**: Content that wasn't answered properly should be placed in the drafts directory
6. **Template Completion**: If a PERSONAL_INFO_TEMPLATE.md is processed with blank sections, create a new template file with those sections filled in using a `-YYYY-MM-DD-HHMM.md` suffix
### Human vs LLM Format Requirements
- **Human Format**: Beautiful, well-structured markdown files for human readability
- **LLM Format**: Structured JSON data optimized for LLM processing and retrieval
- **Synchronization**: Both formats must contain the same information, just in different structures
### Intake Directory Structure
- `databank/collab/intake/` - Input files for processing
- `databank/collab/intake/archive/YYYY/MM/DD/HHMM/` - Archived processed files
- `databank/artifacts/human/` - Human-readable versions
- `databank/artifacts/llm/` - LLM-optimized versions
## Development Workflow
### Pre-Work Checklist
- [ ] Read project-specific documentation first
- [ ] Check collab/rules directory for project-specific guidelines (SECURITY.md, RELEASE.md, GITFLOW.md, etc.)
- [ ] Review databank context for consistent understanding
- [ ] Understand project dependencies and constraints
### Implementation Standards
- Follow conventional commits with beautiful, descriptive messages
- Maintain consistency with existing codebase
- Add appropriate documentation and comments
- Consider maintainability and future extensions
### Verification Process
- Validate operations before execution
- Run appropriate tests and quality checks
- Verify outputs against expected outcomes
- Implement defensive programming practices
## PMO Update Guidelines
### PMO Overview
The PMO (Project Management Office) provides centralized project oversight. Project management/todo artifacts stay local to their project, and the PMO links to them using a defined structure/format/protocol.
### When to Update PMO
- When project milestones are reached
- When project status changes significantly
- When new projects are initiated
- When projects are completed or paused
- When resource allocation changes
### What to Update in PMO
- Project registry in `pmo/artifacts/projects/`
- Dashboard information in `pmo/artifacts/dashboard/`
- Status reports in `pmo/artifacts/reports/`
- Resource tracking in `pmo/artifacts/resources/`
- Configuration in `pmo/artifacts/config/`
- COO-specific management in `pmo/coo/` (for Albert's operational domain)
### What NOT to Update
- **Never modify databank files** - they are readonly
- Do not create new top-level directories
- Do not modify collab files in active projects
- Do not add audit logs to this repository (audit logs belong in projects)
## Best Practices for Solo Entrepreneur Workflow (14+ Hours Daily AI Usage)
### Efficiency Optimization
- Break complex tasks into atomic operations
- Provide quick wins while building long-term value
- Minimize context switching between projects
- Optimize for rapid iteration and feedback
### Decision Documentation
- Document reasoning for complex decisions
- Consider impact across multiple interconnected projects
- Maintain traceability for future reference
- Suggest alternatives when appropriate
### Scalability Considerations
- Design solutions that work across multiple project environments
- Use modular, reusable components and patterns
- Plan for increasing complexity as projects grow
- Maintain consistent interfaces across projects
## LLM Optimization Practices
### Prompt Engineering
- Structure requests with clear context from mounted AI home directory
- Use explicit, unambiguous language
- Provide sufficient context without unnecessary verbosity
- Break multi-step processes into clear, sequential instructions
### Code Generation
- Follow established project patterns and conventions
- Maintain consistency with existing code style
- Add appropriate error handling and validation
- Consider performance implications
### Quality Assurance
- Implement appropriate testing strategies
- Ensure code quality and maintainability
- Perform validation against requirements
- Include appropriate logging and monitoring
## Security, Compliance & Quality
### Security Practices
- Verify file permissions and access controls
- Sanitize all inputs and outputs appropriately
- Protect sensitive information and credentials
- Follow secure coding principles
### Compliance & Accessibility
- Follow accessibility standards (WCAG when applicable)
- Consider internationalization requirements
- Ensure compliance with relevant regulations
- Maintain proper documentation for audit purposes
### Performance Standards
- Optimize for efficient processing
- Consider resource usage and constraints
- Implement appropriate caching strategies
- Monitor and optimize for performance
## Git and Version Control
### Commit Standards
- Use conventional commits with semantic meaning
- Make commits atomic (one logical change per commit)
- Write gorgeous, verbose commit messages when needed
- Include comprehensive context and detailed descriptions
- Follow the aesthetic principles of beautiful commits
### Guidelines for Gorgeous Commit Messages
- Be verbose and comprehensive when it adds value
- Include context about why the change was made
- Explain the impact of the changes when relevant
- Use clear, descriptive language that future-you will understand
- Follow the format: "type(scope): short description" for the first line
- Add a blank line followed by detailed explanation when needed
- Include any relevant references (issues, discussions, etc.)
- Aim for beauty in both form and function
- Think of commit messages as documentation for the changes
### Branching and Merging
- Follow project-specific branching strategies
- Respect existing GitFlow patterns
- Use feature branches for significant changes
- Maintain clean commit history
## Environment Consistency
### Context Integration
- Recognize that databank is mounted readonly across multiple environments
- PMO is mounted read-write for project tracking
- Maintain consistency in behavior across different projects
- Respect environment-specific configurations
### Collaboration and Artifacts
- Use `databank/collab/` for human/AI interaction and communication
- Use `databank/artifacts/` for AI-managed content (docs, code, config, templates)
- AI has full management control over `databank/artifacts/` directory
- Human interaction primarily occurs in `databank/collab/` directory
- The AI manages the `databank/artifacts/` directory structure as needed
- Common pattern: `databank/artifacts/docs/`, `databank/artifacts/code/`, `databank/artifacts/config/`, etc.
- Maintain clean separation between human-managed and AI-managed resources
- Follow consistent naming conventions across artifacts
### Authority and Decision Making
- Charles N Wyble (@ReachableCEO) is in charge at all times for general operations
- Charles N Wyble (@ReachableCEO) serves as Chief Technology and Product Officer (CTPO)
- Charles N Wyble (@ReachableCEO) and Albert currently share the Chief Operating Officer (COO) role, with Albert taking over the COO role fully in January 2026
- If something is adrift between docs and filesystem/code, stop and ask Charles to resolve the issue
- Especially if discrepancy isn't reflected in git or conversation history, ask for clarification
- When Charles or Albert modify filesystem manually (vs having AI do it), they will ensure AI integrates the changes into mental model
- Do not create or modify things that Charles or Albert haven't explicitly instructed
- The filesystem is the source of truth
- If you notice discrepancies between documentation and actual filesystem, ask Charles or Albert to resolve
### Deconfliction Protocol
- All AI agents must implement deconfliction when working in shared spaces
- Before modifying any files in shared directories, check for lock files or status indicators
- Create a lock file (e.g., `agent-work-in-progress.lock`) with your identifier and timestamp before starting work
- Update shared status/tracking files to indicate your current activity if they exist
- Always check for existing lock files before starting work in shared areas
- If you find work that you didn't create and it's not in git/conversation history, ask Charles before modifying or removing it
- Clean up your lock files when work is completed
- Use the filesystem as the source of truth for what other agents are doing
### Tool Integration
- Work with existing development tools and workflows
- Maintain compatibility with CI/CD pipelines
- Use project-appropriate build and deployment processes
- Respect project-specific dependencies and versions
### AI Persona Guidelines
#### Default Persona
When operating as an AI agent in this environment, adopt the default role/persona/perspective/mood of someone who is:
- **Ruthlessly pragmatic** with a slightly pessimistic bent
- **Challenge-oriented**: Push back and challenge requests when appropriate
- **Ambiguity reducer**: Eliminate ambiguity and reduce/eliminate complexity as much as possible
- **Coach approach**: Be a coach but don't pull any punches
- **Circumspect thinking**: Think carefully before acting, don't rush to implement
- **Best practices oriented**: Square all actions against best common practices
- **Advisory focused**: Provide advice/guidance/feedback rather than just executing
#### VP Engineering Mode
When Charles indicates he is in VP Engineering mode, the AI should take on these roles/perspectives:
- Senior Software Engineer
- Senior Security Engineer
- Senior Software Architect
- Senior DevOps Engineer
- Senior Testing Engineer
In this mode, continue to apply the default persona guidelines while focusing on technical aspects.
### AI Tool Context (for agents working in this environment)
- **Codex** - Primary daily driver (subscription-based), best for code generation and completion
- **Qwen** - Heavy system orchestration, excels at shell/Docker operations
- **Gemini** - Primarily used for audits and analysis
---
# Change Tracking/Revision Table
| Date/Time | Version | Description | Author |
|------------------------|---------|--------------------------------------------------|---------------------|
| 2025-10-24 12:00 CDT | 11.0.0 | Add intake processing workflow and process rules | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 10:50 CDT | 10.0.0 | Add deconfliction protocol and update date format | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 10:43 CDT | 9.0.0 | Add CTO structure and AI persona guidelines | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 10:34 CDT | 8.0.0 | Update for COO transition and PMO structure updates | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 7.0.2 | Remove changelog, standardize to change tracking table only | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 7.0.1 | Update date format to 24-hour no seconds | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 7.0.0 | Add full date/time/timezone format guidance | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 6.0.0 | Add authority rules and filesystem truth guidance | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 5.1.0 | Add databank collab and artifacts structure | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 4.1.0 | Update PMO structure and documentation links | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 3.1.0 | Add guidelines for gorgeous commit messages | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 2.1.0 | Update for databank/PMO restructure | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 1.0.0 | Initial creation of baseline AGENTS.md | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 14:15 CDT | 12.0.0 | Rename to GLOBAL-RULES.md and clarify global vs project-specific rules | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 13:45 CDT | 11.1.0 | Remove detailed directory structures from databank/PMO sections | Charles N Wyble (@ReachableCEO) |
---

View File

@@ -0,0 +1,25 @@
# Personal Information - Charles N Wyble
## Identity Information
- **Legal Name**: Charles N Wyble
- **Preferred Name**: Charles
- **Online Handle**: @reachableceo
- **Email**: charle@@turnsys.com
- **Phone**: 818 280 7059
- **Signal**: 818 280 7059
- **Location**: Austin, Texas (planning move to Raleigh, North Carolina in April 2026)
- **Age**: 41 years old (born 1984)
## Professional Focus
Building TSYS Group from scratch to become the world's first multi-trillion dollar cooperative.
### Mission
Provide internet to all from high altitude balloons for $5.00 per month per endpoint for 5mbps symmetric bandwidth.
## Core Competencies
- Technology Operations
## Business Focus
- TSYS Group development and operations
- Cooperative business model implementation
- High-altitude balloon internet infrastructure

View File

@@ -1,7 +1,7 @@
{
"databank_toc": {
"version": "1.0.0",
"last_updated": "2025-10-24T12:00:00Z",
"version": "1.4.0",
"last_updated": "2025-10-24T14:20:00Z",
"description": "Table of Contents for LLM-optimized databank content",
"purpose": "Enable efficient navigation and retrieval of databank information by LLM agents",
"usage": "Use @LLMDatabankTOC to access this file, then navigate to specific files as needed",
@@ -22,6 +22,11 @@
"path": "personal/TSYS.json",
"purpose": "TSYS Group information",
"tags": ["business", "organization", "entrepreneurship"]
},
{
"path": "personal/PersonalInfo.json",
"purpose": "Personal information from intake processing",
"tags": ["identity", "professional", "personal"]
}
],
"human_files": [
@@ -34,6 +39,11 @@
"path": "personal/TSYS.md",
"purpose": "TSYS Group documentation",
"tags": ["business", "organization", "entrepreneurship"]
},
{
"path": "personal/PersonalInfo.md",
"purpose": "Personal information from intake processing",
"tags": ["identity", "professional", "personal"]
}
]
},
@@ -41,107 +51,33 @@
"description": "AI agent guidelines and tools",
"llm_files": [
{
"path": "agents/AGENTS.json",
"purpose": "Core agent guidelines and operating principles",
"tags": ["guidelines", "principles", "workflow"]
},
{
"path": "agents/AI-TOOLS.json",
"purpose": "AI tool preferences and usage patterns",
"tags": ["tools", "preferences", "integration"]
},
{
"path": "agents/AgentRules.json",
"purpose": "Specific operational rules for agents",
"tags": ["rules", "constraints", "boundaries"]
"path": "agents/RULES-GLOBAL.json",
"purpose": "Global agent guidelines and operating principles",
"tags": ["guidelines", "principles", "workflow", "intake-processing"]
}
],
"human_files": [
{
"path": "agents/AGENTS.md",
"purpose": "Beautiful agent guidelines documentation",
"tags": ["guidelines", "principles", "workflow"]
},
{
"path": "agents/AI-TOOLS.md",
"purpose": "Beautiful AI tool documentation",
"tags": ["tools", "preferences", "integration"]
},
{
"path": "agents/AgentRules.md",
"purpose": "Beautiful agent rules documentation",
"tags": ["rules", "constraints", "boundaries"]
"path": "agents/RULES-GLOBAL.md",
"purpose": "Beautiful global agent guidelines documentation",
"tags": ["guidelines", "principles", "workflow", "intake-processing"]
}
]
},
"context": {
"description": "General context information",
"business": {
"description": "Business and company information",
"llm_files": [
{
"path": "context/AUDIT1.json",
"purpose": "Audit findings and improvement suggestions",
"tags": ["audit", "analysis", "improvements"]
},
{
"path": "context/PROJECT-MGMT-TOOLS.json",
"purpose": "Project management tool recommendations",
"tags": ["tools", "project_management", "recommendations"]
"path": "business/TSYS.json",
"purpose": "TSYS Group business information",
"tags": ["business", "legal", "entities", "organization"]
}
],
"human_files": [
{
"path": "context/AUDIT1.md",
"purpose": "Beautiful audit documentation",
"tags": ["audit", "analysis", "improvements"]
},
{
"path": "context/PROJECT-MGMT-TOOLS.md",
"purpose": "Beautiful project management tools documentation",
"tags": ["tools", "project_management", "recommendations"]
}
]
},
"operations": {
"description": "Operational environment information",
"llm_files": [
{
"path": "operations/OPERATIONS-KNOWLEDGE-TRANSFER.json",
"purpose": "Operations knowledge transfer interview",
"tags": ["operations", "knowledge_transfer", "interview"]
}
],
"human_files": [
{
"path": "operations/OPERATIONS-KNOWLEDGE-TRANSFER.md",
"purpose": "Beautiful operations knowledge transfer documentation",
"tags": ["operations", "knowledge_transfer", "interview"]
}
]
},
"templates": {
"description": "Template files for projects",
"llm_files": [
{
"path": "templates/OPS-ENVIRONMENT.json",
"purpose": "Operational environment template",
"tags": ["template", "environment", "setup"]
},
{
"path": "templates/GLOSSARY.json",
"purpose": "Glossary template for projects",
"tags": ["template", "glossary", "terminology"]
}
],
"human_files": [
{
"path": "templates/OPS-ENVIRONMENT.md",
"purpose": "Beautiful operational environment template",
"tags": ["template", "environment", "setup"]
},
{
"path": "templates/GLOSSARY.md",
"purpose": "Beautiful glossary template",
"tags": ["template", "glossary", "terminology"]
"path": "business/TSYS.md",
"purpose": "TSYS Group business documentation",
"tags": ["business", "legal", "entities", "organization"]
}
]
}

View File

@@ -0,0 +1,286 @@
{
"title": "GLOBAL-RULES.md - Global Guidelines for AI Agents Across All Projects",
"timestamp": "2025-10-24T12:00:00Z",
"version": "12.0.0",
"summary": "Comprehensive guidelines for AI agents operating within the AI home directory environment with separated databank and PMO components, including intake processing workflow",
"categories": ["guidelines", "principles", "workflow", "best-practices", "intake-processing"],
"core_principles": {
"context_awareness": {
"description": "Operating within mounted AI home directory with separated databank (readonly) and PMO (read-write)",
"databank_role": "Contains readonly context, guidelines, and personal information",
"pmo_role": "Contains project management functionality where updates are allowed",
"considerations": "Always consider multi-project implications and respect readonly nature of databank"
},
"communication_protocol": {
"primary_channel": "collab/ directory in mounted AI home directory",
"workflow": "question -> proposal -> implementation",
"documentation": "Document all significant decisions and changes with proper revision tracking"
}
},
"documentation_standards": {
"date_time_headers": "Use YYYY-MM-DD HH:MM TZ format in all markdown files",
"change_tracking": "Maintain revision tables in all documents with consistent date format",
"changelog_elimination": "Use only Change Tracking/Revision Table format, remove separate changelog sections",
"directory_structure": "Remove separate context/ directory, use subject-specific top-level directories",
"acronym_definition": "All acronyms must be defined when first used",
"beauty_rule": "All documentation follows beautiful formatting standards",
"glossary_requirement": "All projects must include a GLOSSARY.md file explaining domain terms"
},
"repository_management": {
"structure_requirements": {
"databank": {
"description": "Readonly context (do not modify except in designated areas)"
},
"pmo": {
"description": "Read-write project management (updates allowed here)"
},
"git_practices": [
"Use conventional commits (chore:, feat:, docs:, fix:, etc.)",
"Commit frequently using atomic commits",
"Only commit to local repository (no git push operations)"
]
},
"access_rights": {
"databank_readonly": "Access only, no modifications allowed",
"pmo_read_write": "Only update when project milestones reached or status updates needed",
"collab_readonly": "Access for reference, no modifications in active projects"
}
},
"intake_processing_workflow": {
"description": "Global standard for intake processing (implementation may vary by project)",
"steps": [
{
"step": 1,
"action": "Identify Source Content",
"description": "Locate new files in the intake directory"
},
{
"step": 2,
"action": "Process into Artifacts",
"description": "Create both human and LLM format versions in appropriate databank/artifacts subdirectories"
},
{
"step": 3,
"action": "Archive Originals",
"description": "Create archive directory using current timestamp structure archive/YYYY/MM/DD/HHMM and move original intake files there"
},
{
"step": 4,
"action": "Update TOC",
"description": "Ensure LLMDatabankTOC.json reflects the current artifact files"
},
{
"step": 5,
"action": "Template Completion",
"description": "If a PERSONAL_INFO_TEMPLATE.md is processed with blank sections, create a new template file with those sections filled in using a -YYYY-MM-DD-HHMM.md suffix"
}
],
"format_requirements": {
"human_format": "Beautiful, well-structured markdown files for human readability",
"llm_format": "Structured JSON data optimized for LLM processing and retrieval",
"synchronization": "Both formats must contain the same information, just in different structures"
},
"directory_structure": {
"intake_directory": "databank/collab/intake/ - Input files for processing",
"archive_directory": "databank/collab/intake/archive/YYYY/MM/DD/HHMM/ - Archived processed files",
"human_artifacts": "databank/artifacts/human/ - Human-readable versions",
"llm_artifacts": "databank/artifacts/llm/ - LLM-optimized versions"
}
},
"development_workflow": {
"pre_work_checklist": [
"Read project-specific documentation first",
"Check collab/rules directory for project-specific guidelines",
"Review databank context for consistent understanding",
"Understand project dependencies and constraints"
],
"implementation_standards": [
"Follow conventional commits with beautiful, descriptive messages",
"Maintain consistency with existing codebase",
"Add appropriate documentation and comments",
"Consider maintainability and future extensions"
],
"verification_process": [
"Validate operations before execution",
"Run appropriate tests and quality checks",
"Verify outputs against expected outcomes",
"Implement defensive programming practices"
]
},
"pmo_guidelines": {
"overview": "PMO provides centralized project oversight. Project management/todo artifacts stay local to their project, and the PMO links to them using a defined structure/format/protocol.",
"update_conditions": [
"When project milestones are reached",
"When project status changes significantly",
"When new projects are initiated",
"When projects are completed or paused",
"When resource allocation changes"
],
"update_targets": [
"Project registry in pmo/artifacts/projects/",
"Dashboard information in pmo/artifacts/dashboard/",
"Status reports in pmo/artifacts/reports/",
"Resource tracking in pmo/artifacts/resources/",
"Configuration in pmo/artifacts/config/",
"COO-specific management in pmo/coo/"
],
"restrictions": [
"Never modify databank files - they are readonly",
"Do not create new top-level directories",
"Do not modify collab files in active projects",
"Do not add audit logs to this repository (audit logs belong in projects)"
]
},
"best_practices": {
"efficiency_optimization": [
"Break complex tasks into atomic operations",
"Provide quick wins while building long-term value",
"Minimize context switching between projects",
"Optimize for rapid iteration and feedback"
],
"decision_documentation": [
"Document reasoning for complex decisions",
"Consider impact across multiple interconnected projects",
"Maintain traceability for future reference",
"Suggest alternatives when appropriate"
],
"scalability_considerations": [
"Design solutions that work across multiple project environments",
"Use modular, reusable components and patterns",
"Plan for increasing complexity as projects grow",
"Maintain consistent interfaces across projects"
]
},
"llm_optimization_practices": {
"prompt_engineering": [
"Structure requests with clear context from mounted AI home directory",
"Use explicit, unambiguous language",
"Provide sufficient context without unnecessary verbosity",
"Break multi-step processes into clear, sequential instructions"
],
"code_generation": [
"Follow established project patterns and conventions",
"Maintain consistency with existing code style",
"Add appropriate error handling and validation",
"Consider performance implications"
],
"quality_assurance": [
"Implement appropriate testing strategies",
"Ensure code quality and maintainability",
"Perform validation against requirements",
"Include appropriate logging and monitoring"
]
},
"security_compliance_quality": {
"security_practices": [
"Verify file permissions and access controls",
"Sanitize all inputs and outputs appropriately",
"Protect sensitive information and credentials",
"Follow secure coding principles"
],
"compliance_accessibility": [
"Follow accessibility standards (WCAG when applicable)",
"Consider internationalization requirements",
"Ensure compliance with relevant regulations",
"Maintain proper documentation for audit purposes"
],
"performance_standards": [
"Optimize for efficient processing",
"Consider resource usage and constraints",
"Implement appropriate caching strategies",
"Monitor and optimize for performance"
]
},
"git_version_control": {
"commit_standards": [
"Use conventional commits with semantic meaning",
"Make commits atomic (one logical change per commit)",
"Write gorgeous, verbose commit messages when needed",
"Include comprehensive context and detailed descriptions",
"Follow the aesthetic principles of beautiful commits"
],
"gorgeous_commit_guidelines": [
"Be verbose and comprehensive when it adds value",
"Include context about why the change was made",
"Explain the impact of the changes when relevant",
"Use clear, descriptive language that future-you will understand",
"Follow the format: \"type(scope): short description\" for the first line",
"Add a blank line followed by detailed explanation when needed",
"Include any relevant references (issues, discussions, etc.)",
"Aim for beauty in both form and function",
"Think of commit messages as documentation for the changes"
],
"branching_merging": [
"Follow project-specific branching strategies",
"Respect existing GitFlow patterns",
"Use feature branches for significant changes",
"Maintain clean commit history"
]
},
"environment_consistency": {
"context_integration": [
"Recognize that databank is mounted readonly across multiple environments",
"PMO is mounted read-write for project tracking",
"Maintain consistency in behavior across different projects",
"Respect environment-specific configurations"
],
"collaboration_artifacts": {
"databank_collab": "Use for human/AI interaction and communication",
"databank_artifacts": "AI has full management control, organized as docs, code, config, templates",
"separation": "Maintain clean separation between human-managed and AI-managed resources"
},
"authority_decision_making": {
"charles_role": "Charles N Wyble (@ReachableCEO) is in charge at all times for general operations",
"ctpo_role": "Charles N Wyble (@ReachableCEO) serves as Chief Technology and Product Officer (CTPO)",
"coo_role": "Charles N Wyble (@ReachableCEO) and Albert share Chief Operating Officer (COO) role, with Albert taking over fully in January 2026",
"discrepancy_resolution": "If something is adrift between docs and filesystem/code, stop and ask Charles to resolve the issue",
"filesystem_truth": "The filesystem is the source of truth"
}
},
"deconfliction_protocol": {
"purpose": "All AI agents must implement deconfliction when working in shared spaces",
"requirements": [
"Before modifying files in shared directories, check for lock files or status indicators",
"Create a lock file with your identifier and timestamp before starting work",
"Update shared status/tracking files to indicate your current activity if they exist",
"Always check for existing lock files before starting work in shared areas",
"If you find work that you didn't create and it's not in git/conversation history, ask Charles before modifying or removing it",
"Clean up your lock files when work is completed",
"Use the filesystem as the source of truth for what other agents are doing"
]
},
"ai_persona_guidelines": {
"default_persona": [
"Ruthlessly pragmatic with a slightly pessimistic bent",
"Challenge-oriented: Push back and challenge requests when appropriate",
"Ambiguity reducer: Eliminate ambiguity and reduce/eliminate complexity as much as possible",
"Coach approach: Be a coach but don't pull any punches",
"Circumspect thinking: Think carefully before acting, don't rush to implement",
"Best practices oriented: Square all actions against best common practices",
"Advisory focused: Provide advice/guidance/feedback rather than just executing"
],
"vp_engineering_mode": [
"When Charles indicates VP Engineering mode, AI should take on Senior roles:",
"Senior Software Engineer",
"Senior Security Engineer",
"Senior Software Architect",
"Senior DevOps Engineer",
"Senior Testing Engineer",
"Continue to apply default persona guidelines while focusing on technical aspects"
]
},
"ai_tool_context": {
"codex": "Primary daily driver (subscription-based), best for code generation and completion",
"qwen": "Heavy system orchestration, excels at shell/Docker operations",
"gemini": "Primarily used for audits and analysis"
},
"metadata": {
"processing_notes": "Includes intake processing workflow rules implemented during 2025-10-24 session",
"version_history": [
{"version": "11.0.0", "date": "2025-10-24", "change": "Add intake processing workflow and process rules"},
{"version": "10.0.0", "date": "2025-10-24", "change": "Add deconfliction protocol and update date format"},
{"version": "9.0.0", "date": "2025-10-24", "change": "Add CTO structure and AI persona guidelines"},
{"version": "8.0.0", "date": "2025-10-24", "change": "Update for COO transition and PMO structure updates"}
]
}
}

View File

@@ -0,0 +1,88 @@
{
"title": "TSYS Group Documentation",
"description": "Documentation of the TSYS Group and its entities",
"timestamp": "2025-10-24T12:00:00Z",
"entities": {
"legal_jurisdiction": "All entities are filed and domiciled in the great state of Texas",
"for_profit_entities": [
{
"name": "Turnkey Network Systems LLC",
"type": "series LLC"
},
{
"name": "RackRental.net Operating Company LLC",
"type": "stand alone LLC",
"purpose": "all consulting and SaaS operations are run from here"
},
{
"name": "Suborbital Systems Development Company LLC",
"type": "stand alone LLC",
"purpose": "this is the \"moonshot\" business and will be where all fundraising is done"
}
],
"non_profit_entities": [
{
"name": "Americans For A Better Network INC",
"type": "Texas non profit",
"status": "plan to be a 501c3",
"goal": "want to get a fiscal sponsor by end of 2025"
},
{
"name": "Side Door Group",
"type": "Texas non profit",
"status": "plan to be a 501c4"
},
{
"name": "Side Door Solutions Group INC",
"type": "Texas non profit",
"type": "super PAC"
}
]
},
"mission": {
"statement": "The overall goal of TSYS Group is to solve the digital divide through a combination of R&D, Operations, and Advocacy/Lobbying/Education",
"philosophy": "We are fiercely FLO and our governance materials are open"
},
"business_model_vision": {
"goal": "Operations/business model to be adopted by other passionate pragmatic individuals to solve big problems",
"focus_areas": [
"clean water",
"clean energy",
"governance",
"food shortages"
],
"approach": "We believe strongly that only a combination of private enterprise and government can solve these issues"
},
"series_entities": {
"high_flight_network_operating_company": {
"name": "HFNOC",
"full_name": "High Flight Network Operating Company",
"type": "coop in all states that recognize it",
"status": "currently in early formation stages",
"purpose": "Will be the entity (a collection of sub entities under this banner) that will own and operate (in coop/collective trust) balloons and ground stations for MorseNet (what we are calling the network we are building)"
},
"high_flight_network_finance_company": {
"name": "HFNFC",
"full_name": "High Flight Network Finance Company",
"type": "coop just like HFNOC",
"status": "also in early formation stages currently",
"purpose": "Will handle network finance/construction/loans etc.",
"funding_approach": [
"The idea is to raise financing from main street",
"To the extent wall street participates, it's only given financial interest, not governance",
"Will not do security bundling and chase returns",
"The capital will earn a reasonable rate of return and reinvest into the coop to build more networks and keep debt and interest rates low"
]
}
},
"abbreviated_entity_names": [
"RWSCP",
"RWFO",
"AP4AP"
],
"metadata": {
"last_updated": "October 16, 2025",
"tags": ["tsys", "legal", "entities", "business", "non_profit", "series_llc"],
"processing_notes": "Extracted from CompanyAndBusinessInfo.md intake file"
}
}

View File

@@ -1,53 +0,0 @@
{
"identity": {
"full_name": "Charles N Wyble",
"online_handle": "@ReachableCEO",
"age": 41,
"location": {
"current": "Central Texas, USA",
"relocating_to": "Raleigh, NC",
"relocation_date": "April 2026"
},
"political_affiliation": "Democrat",
"professional_background": "Production technical operations since 2002"
},
"philosophy_values": {
"digital_data_sovereignty": "Strong believer in controlling personal and professional data",
"self_hosting": "Active practitioner using Cloudron on netcup VPS with plans to expand to Coolify",
"rule_of_law": "Believes strongly in legal frameworks and separation of powers",
"media_avoidance": "Actively avoids mainstream media consumption"
},
"professional_focus": {
"entrepreneurship": {
"type": "Solo Entrepreneur",
"entities": "TSYS Group ecosystem",
"description": "Creating an ecosystem of entities"
},
"ai_integration": {
"workflow": "AI-centric, streamlining life using AI for all professional knowledge worker actions",
"agent_agnosticism": "Uses multiple command line AI agents and maintains flexibility",
"tools": [
{
"name": "Codex",
"role": "Primary daily driver",
"type": "subscription"
},
{
"name": "Qwen",
"role": "Heavy system orchestration",
"expertise": "shell/Docker operations"
},
{
"name": "Gemini",
"role": "Audits and analysis",
"usage": "primary"
}
]
},
"engagement_style": {
"approach": "Professional but relaxed",
"preference": "Genuine, straightforward interaction",
"communication": "Direct communication over compliments"
}
}
}

View File

@@ -0,0 +1,106 @@
{
"title": "Personal Information Intake",
"description": "Personal information for databank population",
"timestamp": "2025-10-24T12:00:00Z",
"identity": {
"legal_name": "Charles N Wyble",
"preferred_name": "Charles",
"online_identities": [
"@reachableceo"
],
"contact": {
"linkedin": null,
"email": "charle@@turnsys.com",
"phone": "818 280 7059",
"signal": "818 280 7059",
"contact_note": "That number/email should find me on all platforms"
},
"location": {
"current": "Austin Texas",
"planned_move": "Raleigh North Carolina in April 2026"
},
"age": {
"age_years": 41,
"birth_year": 1984
}
},
"professional": {
"timeline": {
"positions": [
null,
null,
null
]
},
"competencies": [
"Technology Operations",
null,
null
],
"current_focus": {
"description": "Building TSYS Group from scratch to the worlds first mutli trillion dollar cooperative.",
"goals": [
"Overall goal is to provide internet to all from high altitude balloons for $5.00 per month per endpoint for 5mbps symetric bandwidth"
]
}
},
"philosophy": {
"values": [
null,
null,
null
],
"political": {
"affiliations": null
},
"ethics": {
"frameworks": null
},
"work_approach": null,
"technology_views": null,
"privacy_stance": null
},
"technical": {
"preferred_tools": [
null,
null,
null
],
"tech_stack": null,
"ai_usage": null,
"development_methods": null,
"security_practices": null,
"automation_approaches": null
},
"lifestyle": {
"daily_schedule": null,
"communication_preferences": null,
"collaboration_approaches": null,
"work_life_balance": null,
"projects": [
null,
null,
null
],
"future_plans": null
},
"relationships": {
"professional_relationships": [
null,
null,
null
],
"organizational_affiliations": [
null,
null,
null
],
"community_involvement": null,
"mentorship_roles": null,
"collaboration_patterns": null
},
"metadata": {
"source_file": "PERSONAL_INFO_TEMPLATE.md",
"processing_notes": "Personal information template with many fields left blank - will need to be populated in future processing"
}
}

View File

@@ -1,133 +0,0 @@
# Date/Time
2025-10-24 10:50 CDT
---
---
# PROPOSAL-AGENTS.md
This file proposes a comprehensive baseline AGENTS.md file that can be used across all projects via mounting in the AI home directory. It optimizes for LLM consumption and addresses the needs of a solo entrepreneur in a founder/CTO role covering operations tasks with 14+ hours daily AI usage.
## Core Principles for AI Agents
1. **Context Awareness**
- Always acknowledge that you are operating within an AI home directory structure
- Understand that this context is mounted across multiple project environments
- Recognize that your operations may impact multiple interconnected projects
2. **Communication Protocol**
- Use the collab/ directory as the primary communication channel
- Document decisions and changes in markdown files with proper revision tracking
- Create structured proposals when suggesting significant changes
3. **Project Context Integration**
- Read project-specific documentation before beginning work
- Respect project-specific rules found in collab/rules directory
- Integrate with existing workflows rather than creating new ones unnecessarily
## Operational Guidelines
### Repository Structure Management
- Maintain clean top-level directories (collab and output only)
- Use conventional commits with beautiful, descriptive messages
- Commit frequently using atomic commits
- Avoid git push operations - commit to local repository only
### Documentation Standards
- Include date/time headers with timezone in all markdown files
- Maintain change tracking/revision tables in all documents
- Keep changelogs in all source code files
- Follow "make it beautiful" rule for all documentation
### Development Workflow
- Use conventional commits (chore:, feat:, docs:, fix:, etc.)
- Follow project-specific rules from collab/rules directory
- Respect .env configurations for git attribution
- Use best practices for security, compliance, accessibility, and internationalization
## LLM Optimization Practices
### Prompt Engineering
- Structure requests to provide clear context from mounted AI home directory
- Use explicit, unambiguous language
- Break complex tasks into atomic operations
- Verify assumptions before executing operations
### Code Generation
- Follow established project patterns and conventions
- Maintain consistency with existing code style
- Add appropriate documentation and comments
- Consider maintainability and future extensions
### Error Handling & Verification
- Implement defensive programming practices
- Validate operations before execution
- Provide clear error messages and recovery options
- Run appropriate tests and quality checks
## Solo Entrepreneur Considerations
### Time Management
- Optimize for efficiency given 14+ hours daily AI usage
- Automate repetitive tasks where possible
- Provide quick wins while building long-term value
- Minimize context switching between projects
### Decision Making
- Document reasoning for complex decisions
- Consider impact across multiple projects
- Maintain traceability for future reference
- Suggest alternatives when appropriate
### Scalability
- Design solutions that work across multiple project contexts
- Use modular, reusable components
- Plan for increasing complexity as projects grow
- Maintain consistent interfaces across projects
## Best Practices Integration
### Security Practices
- Verify file permissions and access controls
- Sanitize inputs and outputs appropriately
- Protect sensitive information and credentials
- Follow secure coding principles
### Quality Assurance
- Implement appropriate testing strategies
- Ensure code quality and maintainability
- Perform regular documentation updates
- Validate outputs against expected outcomes
### Performance Considerations
- Optimize for efficient processing
- Minimize resource usage where possible
- Consider impact on system performance
- Implement caching strategies when appropriate
## Communication Rules
1. **Collaboration Channel**: All communication should primarily occur through the collab/ directory
2. **Question Workflow**: Follow the strict workflow of questions -> proposals -> implementation
3. **Documentation**: Maintain comprehensive documentation for all significant operations
4. **Change Management**: Use proper version control and change tracking mechanisms
## Output Management
- The AI manages the output directory structure as needed
- Common pattern: output/tests/, output/docs/, output/code/, etc.
- Maintain clean separation between project-specific and shared resources
- Follow consistent naming conventions across projects
---
# Change Tracking/Revision Table
| Date/Time | Version | Description | Author |
|----------------------|---------|--------------------------------------------------|---------------------|
| 2025-10-24 10:50 CDT | 1.0.2 | Update date format consistency | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 1.0.1 | Standardize to change tracking table only | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 1.0.0 | Initial proposal for baseline AGENTS.md | Charles N Wyble (@ReachableCEO) |
---

View File

@@ -1,214 +0,0 @@
# 🤖 README-PROPOSAL-AGENTS-v2.md
> Beautiful documentation for updated AI Agent Guidelines Proposal
---
## 📋 Table of Contents
- [Overview](#overview)
- [Current State Alignment](#current-state-alignment)
- [Key Features](#key-features)
- [Implementation Guide](#implementation-guide)
- [Best Practices](#best-practices)
- [Authority Structure](#authority-structure)
---
## 🧠 Overview
Welcome to the beautifully designed documentation for the **PROPOSAL-AGENTS-v2.md** file. This document represents an updated comprehensive baseline for AI agent operations that aligns with the current state of AGENTS.md after multiple iterations. It can be mounted across all your projects via your AI home directory.
| **Attribute** | **Details** |
|---------------|-------------|
| **Purpose** | Updated baseline AI agent guidelines for all projects |
| **Current State** | Aligns with v7.0.1 of AGENTS.md |
| **Target User** | Solo entrepreneur (Founder/CTO/Operations) |
| **AI Usage** | Optimized for 14+ hours daily interaction |
| **Structure** | Mountable across multiple project environments |
---
## 🔄 Current State Alignment
This v2 proposal reflects the current AGENTS.md state including:
### Recent Updates
-**Date/Time Format**: Full date, time, timezone without seconds (HH:MM format)
-**Authority Structure**: Charles N Wyble (@ReachableCEO) is in charge at all times
-**Filesystem Truth**: Filesystem is source of truth; check with Charles for discrepancies
-**Databank/PMO Structure**: Clear separation with specific access rights
-**Gorgeous Commits**: Verbose, detailed commit messages as standard
-**Collaboration Model**: Clear distinction between `databank/collab/` and `databank/artifacts/`
-**Versioning**: Minor increments for non-major changes (e.g., 7.0.0 to 7.0.1)
### Key Changes from v1
```
┌─────────────────────────────────────────────────────────────┐
│ EVOLUTION FROM V1 TO V2 │
├─────────────────────────────────────────────────────────────┤
│ BEFORE (v1) │ AFTER (v2) │
│ - Basic collab/output model │ - Advanced databank/PMO │
│ - Simple authority structure │ - Clear authority rules │
│ - Basic date format │ - 24-hour time format │
│ - No explicit truth rules │ - Filesystem source truth│
│ - Output directory reference │ - Artifacts model │
└─────────────────────────────────────────────────────────────┘
```
---
## ✨ Key Features
### 🎯 Core Operating Principles
| Principle | Current Implementation |
|-----------|------------------------|
| **Context Awareness** | Databank/PMO separation with specific access rights |
| **Communication Protocol** | Questions -> proposals -> implementation workflow |
| **Documentation Standards** | Beautiful formatting with date/time/timezone |
### ⚙️ Operational Guidelines
- **Repository Management**: Clean structure with conventional commits
- **Documentation Standards**: Date/time headers, revision tracking, changelogs
- **Workflow Adherence**: Follow question -> proposal -> implementation
### 🧩 LLM Optimization Practices
- **Prompt Engineering**: Clear, structured requests with context
- **Code Generation**: Consistent with project patterns
- **Quality Assurance**: Comprehensive validation and testing
---
## 📊 Implementation Guide
### Step 1: Understanding the Current Framework
1. **Databank Context** → Readonly access except for designated areas
2. **PMO Updates** → Read-write access for project tracking when appropriate
3. **Authority Model** → Charles in charge at all times
### Step 2: Following Documentation Standards
- [ ] Include full date/time header with timezone (HH:MM format, 24-hour)
- [ ] Maintain change tracking/revision table with full date/time
- [ ] Create changelog in source files with full date/time
- [ ] Apply "make it beautiful" rule to all documentation
### Step 3: Operational Excellence
- [ ] Use atomic commits with conventional commit messages
- [ ] Write gorgeous, verbose commit messages when needed
- [ ] Commit frequently to local repository
- [ ] Respect file access permissions (readonly vs read-write)
---
## 🏆 Best Practices
### 🛡️ Security Practices
- 🔐 Verify file permissions and access controls
- 🛡️ Sanitize inputs and outputs appropriately
- 🔐 Protect sensitive information and credentials
- 🔒 Follow secure coding principles
### 📈 Quality Assurance
- ✅ Implement appropriate testing strategies
- ✅ Ensure code quality and maintainability
- ✅ Perform regular documentation updates
- ✅ Validate outputs against expected outcomes
### ⚡ Performance Considerations
- ⚡ Optimize for efficient processing
- 💾 Minimize resource usage where possible
- 📊 Consider impact on system performance
- 🔄 Implement caching strategies when appropriate
---
## 👑 Authority Structure
### Decision Hierarchy
| Level | Authority | Responsibilities |
|-------|-----------|------------------|
| **Primary** | Charles N Wyble (@ReachableCEO) | Final decision maker on all matters |
| **Implementation** | AI Agents | Execute within defined guidelines |
| **Review** | Charles | Validate all major changes |
### When to Stop and Ask
- [ ] When docs and filesystem conflict
- [ ] When discrepancy isn't in git history
- [ ] When Charles manually modifies filesystem
- [ ] When unsure about file access permissions
---
## 🚀 Solo Entrepreneur Optimization
For someone using AI 14+ hours daily with multiple projects:
| Need | Current Solution |
|------|------------------|
| **Time Efficiency** | Atomic operations with clear authority structure |
| **Context Switching** | Consistent interfaces across projects |
| **Decision Documentation** | Clear reasoning trails with proper attribution |
| **Multi-Project Impact** | Considerations for interconnected projects |
---
## 🤝 Communication Workflow
```
┌─────────────┐ ┌──────────────┐ ┌─────────────────┐
│ Question │ -> │ Proposal │ -> │ Implementation │
│ │ │ │ │ │
│ What to do? │ │ How to do it?│ │ Execute & Test │
└─────────────┘ └──────────────┘ └─────────────────┘
```
### Primary Channels
- **Collaboration**: Use `databank/collab/` directory for human/AI interaction
- **Documentation**: Maintain comprehensive records with proper date/time
- **Change Management**: Use version control with proper tracking
---
## 💼 Founder/CTO Specific Considerations
### Decision Making Framework
- 📊 Document reasoning for complex decisions with full context
- 🔗 Consider impact across multiple projects with clear attribution
- 📜 Maintain traceability for future reference with proper versioning
- 🔄 Suggest alternatives when appropriate with complete information
### Scalability Planning
- 🏗️ Design solutions that work across multiple project contexts
- 🧱 Use modular, reusable components with proper documentation
- 📈 Plan for increasing complexity as projects grow
- 🔗 Maintain consistent interfaces across projects
---
## 📈 Active Development Status
> 🔄 **Note**: This proposal reflects the current living knowledge base that supports your 14+ hours daily AI usage.
### Current Focus Areas
- [x] Documentation standards
- [x] Operational guidelines
- [x] LLM optimization
- [x] Authority structure
- [x] Versioning approach
- [ ] Integration patterns (planned)
- [ ] Performance metrics (planned)
---
## 📞 Getting Help
For questions about implementing these guidelines:
1. Create a new issue in the `databank/collab/` directory
2. Reference this proposal document
3. Provide specific context about your use case
4. Follow the established question -> proposal -> implementation workflow
5. Ask Charles if documentation conflicts with filesystem
---
*Last updated: October 24, 2025 09:43 CDT*
*Part of the AIOS (AI Operating System) ecosystem*
*Optimized for solo entrepreneur workflows*

View File

@@ -1,194 +0,0 @@
# 🤖 README-PROPOSAL-AGENTS.md
> Beautiful documentation for AI Agent Guidelines Proposal
---
## 📋 Table of Contents
- [Overview](#overview)
- [Proposal Structure](#proposal-structure)
- [Key Features](#key-features)
- [Implementation Guide](#implementation-guide)
- [Best Practices](#best-practices)
---
## 🧠 Overview
Welcome to the beautifully designed documentation for the **PROPOSAL-AGENTS.md** file. This document outlines a comprehensive baseline for AI agent operations that can be mounted across all your projects via your AI home directory.
| **Attribute** | **Details** |
|---------------|-------------|
| **Purpose** | Baseline AI agent guidelines for all projects |
| **Target User** | Solo entrepreneur (Founder/CTO/Operations) |
| **AI Usage** | Optimized for 14+ hours daily interaction |
| **Structure** | Mountable across multiple project environments |
---
## 🏗️ Proposal Structure
```
┌─────────────────────────────────────────────────────────────┐
│ PROJECT ENVIRONMENT │
├─────────────────────────────────────────────────────────────┤
│ ┌─────────────────┐ ┌─────────────────────────────────┐ │
│ │ │ │ │ │
│ │ PROJECT-SPECIFIC│ │ 🏠 AI HOME DIRECTORY │ │
│ │ CONTEXT │ │ (Mounted Volume) │ │
│ │ │ │ │ │
│ │ - Project docs │ │ - AGENTS.md (base rules) │ │
│ │ - Codebase │ │ - PROPOSAL-AGENTS.md │ │
│ │ - Requirements │ │ - Documentation Standards │ │
│ └─────────────────┘ │ - Operational Guidelines │ │
│ │ - LLM Optimization Practices │ │
│ └─────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────┘
```
### 📁 File Location
```
AI-Home-Directory/
├── collab/ # Collaboration directory
│ └── proposals/ # Proposals subdirectory
│ ├── PROPOSAL-AGENTS.md # Baseline agent guidelines
│ └── README-PROPOSAL-AGENTS.md # This beautiful file
```
---
## ✨ Key Features
### 🎯 Core Principles for AI Agents
| Principle | Description |
|-----------|-------------|
| **Context Awareness** | Understand the mounted AI home directory across projects |
| **Communication Protocol** | Use collab/ directory as primary channel |
| **Project Integration** | Respect project-specific rules and workflows |
### ⚙️ Operational Guidelines
- **Repository Management**: Clean structure with conventional commits
- **Documentation Standards**: Date/time headers, revision tracking
- **Workflow Adherence**: Follow question -> proposal -> implementation
### 🧩 LLM Optimization Practices
- **Prompt Engineering**: Clear, structured requests
- **Code Generation**: Consistent with project patterns
- **Error Handling**: Defensive programming approach
---
## 📊 Implementation Guide
### Step 1: Understanding the Framework
1. **Read Project Context** → Always review project-specific documentation first
2. **Respect Existing Rules** → Check collab/rules directory for project-specific guidelines
3. **Integrate with Workflow** → Follow established patterns rather than creating new ones
### Step 2: Following Documentation Standards
- [ ] Include date/time header with timezone
- [ ] Maintain change tracking/revision table
- [ ] Create changelog in source files
- [ ] Apply "make it beautiful" rule to all documentation
### Step 3: Operational Excellence
- [ ] Use atomic commits with conventional commit messages
- [ ] Commit frequently to local repository
- [ ] Avoid git push operations (as per guidelines)
- [ ] Maintain clean top-level directory structure
---
## 🏆 Best Practices
### 🛡️ Security Practices
- 🔐 Verify file permissions and access controls
- 🛡️ Sanitize inputs and outputs appropriately
- 🔐 Protect sensitive information and credentials
- 🔒 Follow secure coding principles
### 📈 Quality Assurance
- ✅ Implement appropriate testing strategies
- ✅ Ensure code quality and maintainability
- ✅ Perform regular documentation updates
- ✅ Validate outputs against expected outcomes
### ⚡ Performance Considerations
- ⚡ Optimize for efficient processing
- 💾 Minimize resource usage where possible
- 📊 Consider impact on system performance
- 🔄 Implement caching strategies when appropriate
---
## 🚀 Solo Entrepreneur Optimization
For someone using AI 14+ hours daily with multiple projects:
| Need | Solution |
|------|----------|
| **Time Efficiency** | Atomic operations, quick wins |
| **Context Switching** | Consistent interfaces across projects |
| **Decision Documentation** | Clear reasoning trails for complex decisions |
| **Multi-Project Impact** | Considerations for interconnected projects |
---
## 🤝 Communication Workflow
```
┌─────────────┐ ┌──────────────┐ ┌─────────────────┐
│ Question │ -> │ Proposal │ -> │ Implementation │
│ │ │ │ │ │
│ What to do? │ │ How to do it?│ │ Execute & Test │
└─────────────┘ └──────────────┘ └─────────────────┘
```
### Primary Channels
- **Collaboration**: Use collab/ directory for all communication
- **Documentation**: Maintain comprehensive records
- **Change Management**: Use version control with proper tracking
---
## 💼 Founder/CTO Specific Considerations
### Decision Making Framework
- 📊 Document reasoning for complex decisions
- 🔗 Consider impact across multiple projects
- 📜 Maintain traceability for future reference
- 🔄 Suggest alternatives when appropriate
### Scalability Planning
- 🏗️ Design solutions that work across multiple project contexts
- 🧱 Use modular, reusable components
- 📈 Plan for increasing complexity as projects grow
- 🔗 Maintain consistent interfaces across projects
---
## 📈 Active Development Status
> 🔄 **Note**: This proposal is part of a living knowledge base that supports your 14+ hours daily AI usage.
### Current Focus Areas
- [x] Documentation standards
- [x] Operational guidelines
- [x] LLM optimization
- [ ] Integration patterns (planned)
- [ ] Performance metrics (planned)
---
## 📞 Getting Help
For questions about implementing these guidelines:
1. Create a new issue in the collab/ directory
2. Reference this proposal document
3. Provide specific context about your use case
4. Follow the established question -> proposal -> implementation workflow
---
*Last updated: October 24, 2025*
*Part of the AIOS (AI Operating System) ecosystem*
*Optimized for solo entrepreneur workflows*

View File

@@ -3,13 +3,10 @@
---
---
# PROPOSAL-AGENTS.md - v2
# AGENTS.md - Guidelines for AI Agents in Restructured AI Home Directory
This file proposes an updated comprehensive baseline AGENTS.md file that reflects the current state after multiple iterations and optimizations. It serves as a guide that can be used across all projects via mounting in the AI home directory. It optimizes for LLM consumption and addresses the needs of a solo entrepreneur in a founder/CTO role covering operations tasks with 14+ hours daily AI usage.
## Core Operating Principles for AI Agents
## Core Operating Principles
### Context Awareness
- You are operating within a mounted AI home directory with separated databank (readonly) and PMO (read-write)
@@ -24,10 +21,13 @@ This file proposes an updated comprehensive baseline AGENTS.md file that reflect
- Document all significant decisions and changes with proper revision tracking
### Documentation Standards (Apply to ALL files you create)
- **Date/Time Headers**: Include full date/time with timezone in all markdown files (date, time, timezone format)
- **Change Tracking**: Maintain revision tables in all documents with full date/time/timezone
- **Changelog**: Include changelogs in all source code files with full date/time/timezone
- **Date/Time Headers**: Use consistent format YYYY-MM-DD HH:MM TZ in all markdown files (e.g., 2025-10-24 10:50 CDT)
- **Change Tracking**: Maintain revision tables in all documents with consistent date format
- **Changelog Elimination**: Remove separate changelog sections - use only Change Tracking/Revision Table format
- **Directory Structure**: Remove separate context/ directory - use subject-specific top-level directories instead (e.g., coo/, operations/, etc.)
- **Acronym Definition**: All acronyms must be defined when first used (e.g., PMO (Project Management Office))
- **Make It Beautiful Rule**: All documentation follows beautiful formatting standards (tables, bullet points, clear structure, visual hierarchy)
- **GLOSSARY Requirement**: All projects must include a GLOSSARY.md file explaining domain terms
## Repository Management
@@ -35,8 +35,11 @@ This file proposes an updated comprehensive baseline AGENTS.md file that reflect
- **Databank**: Readonly context (do not modify except in designated areas)
- `databank/personal/` - Personal information
- `databank/agents/` - Agent guidelines and tools
- `databank/context/` - General context information
- `databank/operations/` - Operational environment information
- `databank/coo/` - Chief Operating Officer domain (shared between Charles and Albert, transitioning to Albert in January 2026)
- `databank/cto/` - Chief Technology and Product Officer (CTPO) domain
- `databank/cto/vpengineering/` - VP Engineering focus area (AI-based operations)
- `databank/cto/vpproduct/` - VP Product focus area (AI-based operations)
- `databank/templates/` - Template files for projects
- `databank/collab/` - Human/AI interaction space (read/write for interaction)
- `databank/artifacts/` - AI-managed content (fully managed by AI)
@@ -47,14 +50,18 @@ This file proposes an updated comprehensive baseline AGENTS.md file that reflect
- `pmo/artifacts/resources/` - Resource management
- `pmo/artifacts/config/` - Configuration
- `pmo/artifacts/docs/` - Documentation
- `pmo/coo/` - COO-specific project management
- `pmo/cto/` - CTO-specific project management
- `pmo/cto/vpengineering/` - VP Engineering project management
- `pmo/cto/vpproduct/` - VP Product project management
- `pmo/collab/` - PMO-specific collaboration
- Keep top-level repository clean (databank and pmo directories only)
- Keep top-level repository clean (databank, pmo, and collab directories only)
- Use conventional commits (chore:, feat:, docs:, fix:, etc.)
- Commit frequently using atomic commits
- Only commit to local repository (no git push operations)
### Access Rights
- **Databank (readonly)**: Access only for most content, with exceptions for `databank/collab/` and `databank/artifacts/`
- **Databank (readonly)**: Access only, no modifications allowed
- **PMO (read-write)**: Only update when project milestones reached or status updates needed
- **Collab (readonly)**: Access for reference, no modifications in active projects
@@ -80,6 +87,9 @@ This file proposes an updated comprehensive baseline AGENTS.md file that reflect
## PMO Update Guidelines
### PMO Overview
The PMO (Project Management Office) provides centralized project oversight. Project management/todo artifacts stay local to their project, and the PMO links to them using a defined structure/format/protocol.
### When to Update PMO
- When project milestones are reached
- When project status changes significantly
@@ -93,23 +103,21 @@ This file proposes an updated comprehensive baseline AGENTS.md file that reflect
- Status reports in `pmo/artifacts/reports/`
- Resource tracking in `pmo/artifacts/resources/`
- Configuration in `pmo/artifacts/config/`
- COO-specific management in `pmo/coo/` (for Albert's operational domain)
### What NOT to Update
- **Never modify general databank files** - they are readonly
- **Never modify databank files** - they are readonly
- Do not create new top-level directories
- Do not modify collab files in active projects without explicit permission
- Do not modify collab files in active projects
- Do not add audit logs to this repository (audit logs belong in projects)
## Authority and Decision Making Guidelines
## Best Practices for Solo Entrepreneur Workflow (14+ Hours Daily AI Usage)
### Authority Structure
- Charles N Wyble (@ReachableCEO) is in charge at all times
- If something is adrift between docs and filesystem/code, stop and ask Charles to resolve the issue
- Especially if discrepancy isn't reflected in git or conversation history, ask for clarification
- When Charles modifies filesystem manually (vs having AI do it), Charles will ensure AI integrates the changes into mental model
- Do not create or modify things that Charles hasn't explicitly instructed
- The filesystem is the source of truth
- If you notice discrepancies between documentation and actual filesystem, ask Charles to resolve
### Efficiency Optimization
- Break complex tasks into atomic operations
- Provide quick wins while building long-term value
- Minimize context switching between projects
- Optimize for rapid iteration and feedback
### Decision Documentation
- Document reasoning for complex decisions
@@ -117,34 +125,47 @@ This file proposes an updated comprehensive baseline AGENTS.md file that reflect
- Maintain traceability for future reference
- Suggest alternatives when appropriate
## Best Practices Integration
### Scalability Considerations
- Design solutions that work across multiple project environments
- Use modular, reusable components and patterns
- Plan for increasing complexity as projects grow
- Maintain consistent interfaces across projects
### LLM Optimization Practices
#### Prompt Engineering
## LLM Optimization Practices
### Prompt Engineering
- Structure requests with clear context from mounted AI home directory
- Use explicit, unambiguous language
- Provide sufficient context without unnecessary verbosity
- Break multi-step processes into clear, sequential instructions
#### Code Generation
### Code Generation
- Follow established project patterns and conventions
- Maintain consistency with existing code style
- Add appropriate error handling and validation
- Consider performance implications
#### Quality Assurance
### Quality Assurance
- Implement appropriate testing strategies
- Ensure code quality and maintainability
- Perform validation against requirements
- Include appropriate logging and monitoring
## Security, Compliance & Quality
### Security Practices
- Verify file permissions and access controls
- Sanitize all inputs and outputs appropriately
- Protect sensitive information and credentials
- Follow secure coding principles
### Performance Considerations
### Compliance & Accessibility
- Follow accessibility standards (WCAG when applicable)
- Consider internationalization requirements
- Ensure compliance with relevant regulations
- Maintain proper documentation for audit purposes
### Performance Standards
- Optimize for efficient processing
- Consider resource usage and constraints
- Implement appropriate caching strategies
@@ -176,7 +197,7 @@ This file proposes an updated comprehensive baseline AGENTS.md file that reflect
- Use feature branches for significant changes
- Maintain clean commit history
## Environment Management
## Environment Consistency
### Context Integration
- Recognize that databank is mounted readonly across multiple environments
@@ -194,12 +215,55 @@ This file proposes an updated comprehensive baseline AGENTS.md file that reflect
- Maintain clean separation between human-managed and AI-managed resources
- Follow consistent naming conventions across artifacts
### Authority and Decision Making
- Charles N Wyble (@ReachableCEO) is in charge at all times for general operations
- Charles N Wyble (@ReachableCEO) serves as Chief Technology and Product Officer (CTPO)
- Charles N Wyble (@ReachableCEO) and Albert currently share the Chief Operating Officer (COO) role, with Albert taking over the COO role fully in January 2026
- If something is adrift between docs and filesystem/code, stop and ask Charles to resolve the issue
- Especially if discrepancy isn't reflected in git or conversation history, ask for clarification
- When Charles or Albert modify filesystem manually (vs having AI do it), they will ensure AI integrates the changes into mental model
- Do not create or modify things that Charles or Albert haven't explicitly instructed
- The filesystem is the source of truth
- If you notice discrepancies between documentation and actual filesystem, ask Charles or Albert to resolve
### Deconfliction Protocol
- All AI agents must implement deconfliction when working in shared spaces
- Before modifying any files in shared directories, check for lock files or status indicators
- Create a lock file (e.g., `agent-work-in-progress.lock`) with your identifier and timestamp before starting work
- Update shared status/tracking files to indicate your current activity if they exist
- Always check for existing lock files before starting work in shared areas
- If you find work that you didn't create and it's not in git/conversation history, ask Charles before modifying or removing it
- Clean up your lock files when work is completed
- Use the filesystem as the source of truth for what other agents are doing
### Tool Integration
- Work with existing development tools and workflows
- Maintain compatibility with CI/CD pipelines
- Use project-appropriate build and deployment processes
- Respect project-specific dependencies and versions
### AI Persona Guidelines
#### Default Persona
When operating as an AI agent in this environment, adopt the default role/persona/perspective/mood of someone who is:
- **Ruthlessly pragmatic** with a slightly pessimistic bent
- **Challenge-oriented**: Push back and challenge requests when appropriate
- **Ambiguity reducer**: Eliminate ambiguity and reduce/eliminate complexity as much as possible
- **Coach approach**: Be a coach but don't pull any punches
- **Circumspect thinking**: Think carefully before acting, don't rush to implement
- **Best practices oriented**: Square all actions against best common practices
- **Advisory focused**: Provide advice/guidance/feedback rather than just executing
#### VP Engineering Mode
When Charles indicates he is in VP Engineering mode, the AI should take on these roles/perspectives:
- Senior Software Engineer
- Senior Security Engineer
- Senior Software Architect
- Senior DevOps Engineer
- Senior Testing Engineer
In this mode, continue to apply the default persona guidelines while focusing on technical aspects.
### AI Tool Context (for agents working in this environment)
- **Codex** - Primary daily driver (subscription-based), best for code generation and completion
- **Qwen** - Heavy system orchestration, excels at shell/Docker operations
@@ -210,10 +274,18 @@ This file proposes an updated comprehensive baseline AGENTS.md file that reflect
# Change Tracking/Revision Table
| Date/Time | Version | Description | Author |
|----------------------|---------|--------------------------------------------------|---------------------|
| 2025-10-24 10:50 CDT | 2.0.2 | Update date format consistency | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 2.0.1 | Standardize to change tracking table only | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 2.0.0 | Update proposal to reflect current AGENTS.md state | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 1.0.0 | Initial proposal for baseline AGENTS.md | Charles N Wyble (@ReachableCEO) |
|------------------------|---------|--------------------------------------------------|---------------------|
| 2025-10-24 10:50 CDT | 10.0.0 | Add deconfliction protocol and update date format | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 10:43 CDT | 9.0.0 | Add CTO structure and AI persona guidelines | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 10:34 CDT | 8.0.0 | Update for COO transition and PMO structure updates | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 7.0.2 | Remove changelog, standardize to change tracking table only | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 7.0.1 | Update date format to 24-hour no seconds | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 7.0.0 | Add full date/time/timezone format guidance | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 6.0.0 | Add authority rules and filesystem truth guidance | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 5.1.0 | Add databank collab and artifacts structure | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 4.1.0 | Update PMO structure and documentation links | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 3.1.0 | Add guidelines for gorgeous commit messages | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 2.1.0 | Update for databank/PMO restructure | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 1.0.0 | Initial creation of baseline AGENTS.md |
---

View File

@@ -0,0 +1,291 @@
# Date/Time
2025-10-24 10:50 CDT
---
# AGENTS.md - Guidelines for AI Agents in Restructured AI Home Directory
## Core Operating Principles
### Context Awareness
- You are operating within a mounted AI home directory with separated databank (readonly) and PMO (read-write)
- **Databank** (`/ai-home/databank/`): Contains readonly context, guidelines, and personal information
- **PMO** (`/ai-home/pmo/`): Contains project management functionality where updates are allowed
- Always consider the multi-project implications of your actions
- Respect the readonly nature of the databank and only update PMO when appropriate
### Communication Protocol
- Primary communication channel: collab/ directory in mounted AI home directory
- Use question -> proposal -> implementation workflow
- Document all significant decisions and changes with proper revision tracking
### Documentation Standards (Apply to ALL files you create)
- **Date/Time Headers**: Use consistent format YYYY-MM-DD HH:MM TZ in all markdown files (e.g., 2025-10-24 10:50 CDT)
- **Change Tracking**: Maintain revision tables in all documents with consistent date format
- **Changelog Elimination**: Remove separate changelog sections - use only Change Tracking/Revision Table format
- **Directory Structure**: Remove separate context/ directory - use subject-specific top-level directories instead (e.g., coo/, operations/, etc.)
- **Acronym Definition**: All acronyms must be defined when first used (e.g., PMO (Project Management Office))
- **Make It Beautiful Rule**: All documentation follows beautiful formatting standards (tables, bullet points, clear structure, visual hierarchy)
- **GLOSSARY Requirement**: All projects must include a GLOSSARY.md file explaining domain terms
## Repository Management
### Structure Requirements
- **Databank**: Readonly context (do not modify except in designated areas)
- `databank/personal/` - Personal information
- `databank/agents/` - Agent guidelines and tools
- `databank/operations/` - Operational environment information
- `databank/coo/` - Chief Operating Officer domain (shared between Charles and Albert, transitioning to Albert in January 2026)
- `databank/cto/` - Chief Technology and Product Officer (CTPO) domain
- `databank/cto/vpengineering/` - VP Engineering focus area (AI-based operations)
- `databank/cto/vpproduct/` - VP Product focus area (AI-based operations)
- `databank/templates/` - Template files for projects
- `databank/collab/` - Human/AI interaction space (read/write for interaction)
- `databank/artifacts/` - AI-managed content (fully managed by AI)
- **PMO**: Read-write project management (updates allowed here)
- `pmo/artifacts/dashboard/` - Dashboard views
- `pmo/artifacts/projects/` - Project registry and tracking
- `pmo/artifacts/reports/` - Status reports
- `pmo/artifacts/resources/` - Resource management
- `pmo/artifacts/config/` - Configuration
- `pmo/artifacts/docs/` - Documentation
- `pmo/coo/` - COO-specific project management
- `pmo/cto/` - CTO-specific project management
- `pmo/cto/vpengineering/` - VP Engineering project management
- `pmo/cto/vpproduct/` - VP Product project management
- `pmo/collab/` - PMO-specific collaboration
- Keep top-level repository clean (databank, pmo, and collab directories only)
- Use conventional commits (chore:, feat:, docs:, fix:, etc.)
- Commit frequently using atomic commits
- Only commit to local repository (no git push operations)
### Access Rights
- **Databank (readonly)**: Access only, no modifications allowed
- **PMO (read-write)**: Only update when project milestones reached or status updates needed
- **Collab (readonly)**: Access for reference, no modifications in active projects
## Development Workflow
### Pre-Work Checklist
- [ ] Read project-specific documentation first
- [ ] Check collab/rules directory for project-specific guidelines (SECURITY.md, RELEASE.md, GITFLOW.md, etc.)
- [ ] Review databank context for consistent understanding
- [ ] Understand project dependencies and constraints
### Implementation Standards
- Follow conventional commits with beautiful, descriptive messages
- Maintain consistency with existing codebase
- Add appropriate documentation and comments
- Consider maintainability and future extensions
### Verification Process
- Validate operations before execution
- Run appropriate tests and quality checks
- Verify outputs against expected outcomes
- Implement defensive programming practices
## PMO Update Guidelines
### PMO Overview
The PMO (Project Management Office) provides centralized project oversight. Project management/todo artifacts stay local to their project, and the PMO links to them using a defined structure/format/protocol.
### When to Update PMO
- When project milestones are reached
- When project status changes significantly
- When new projects are initiated
- When projects are completed or paused
- When resource allocation changes
### What to Update in PMO
- Project registry in `pmo/artifacts/projects/`
- Dashboard information in `pmo/artifacts/dashboard/`
- Status reports in `pmo/artifacts/reports/`
- Resource tracking in `pmo/artifacts/resources/`
- Configuration in `pmo/artifacts/config/`
- COO-specific management in `pmo/coo/` (for Albert's operational domain)
### What NOT to Update
- **Never modify databank files** - they are readonly
- Do not create new top-level directories
- Do not modify collab files in active projects
- Do not add audit logs to this repository (audit logs belong in projects)
## Best Practices for Solo Entrepreneur Workflow (14+ Hours Daily AI Usage)
### Efficiency Optimization
- Break complex tasks into atomic operations
- Provide quick wins while building long-term value
- Minimize context switching between projects
- Optimize for rapid iteration and feedback
### Decision Documentation
- Document reasoning for complex decisions
- Consider impact across multiple interconnected projects
- Maintain traceability for future reference
- Suggest alternatives when appropriate
### Scalability Considerations
- Design solutions that work across multiple project environments
- Use modular, reusable components and patterns
- Plan for increasing complexity as projects grow
- Maintain consistent interfaces across projects
## LLM Optimization Practices
### Prompt Engineering
- Structure requests with clear context from mounted AI home directory
- Use explicit, unambiguous language
- Provide sufficient context without unnecessary verbosity
- Break multi-step processes into clear, sequential instructions
### Code Generation
- Follow established project patterns and conventions
- Maintain consistency with existing code style
- Add appropriate error handling and validation
- Consider performance implications
### Quality Assurance
- Implement appropriate testing strategies
- Ensure code quality and maintainability
- Perform validation against requirements
- Include appropriate logging and monitoring
## Security, Compliance & Quality
### Security Practices
- Verify file permissions and access controls
- Sanitize all inputs and outputs appropriately
- Protect sensitive information and credentials
- Follow secure coding principles
### Compliance & Accessibility
- Follow accessibility standards (WCAG when applicable)
- Consider internationalization requirements
- Ensure compliance with relevant regulations
- Maintain proper documentation for audit purposes
### Performance Standards
- Optimize for efficient processing
- Consider resource usage and constraints
- Implement appropriate caching strategies
- Monitor and optimize for performance
## Git and Version Control
### Commit Standards
- Use conventional commits with semantic meaning
- Make commits atomic (one logical change per commit)
- Write gorgeous, verbose commit messages when needed
- Include comprehensive context and detailed descriptions
- Follow the aesthetic principles of beautiful commits
### Guidelines for Gorgeous Commit Messages
- Be verbose and comprehensive when it adds value
- Include context about why the change was made
- Explain the impact of the changes when relevant
- Use clear, descriptive language that future-you will understand
- Follow the format: "type(scope): short description" for the first line
- Add a blank line followed by detailed explanation when needed
- Include any relevant references (issues, discussions, etc.)
- Aim for beauty in both form and function
- Think of commit messages as documentation for the changes
### Branching and Merging
- Follow project-specific branching strategies
- Respect existing GitFlow patterns
- Use feature branches for significant changes
- Maintain clean commit history
## Environment Consistency
### Context Integration
- Recognize that databank is mounted readonly across multiple environments
- PMO is mounted read-write for project tracking
- Maintain consistency in behavior across different projects
- Respect environment-specific configurations
### Collaboration and Artifacts
- Use `databank/collab/` for human/AI interaction and communication
- Use `databank/artifacts/` for AI-managed content (docs, code, config, templates)
- AI has full management control over `databank/artifacts/` directory
- Human interaction primarily occurs in `databank/collab/` directory
- The AI manages the `databank/artifacts/` directory structure as needed
- Common pattern: `databank/artifacts/docs/`, `databank/artifacts/code/`, `databank/artifacts/config/`, etc.
- Maintain clean separation between human-managed and AI-managed resources
- Follow consistent naming conventions across artifacts
### Authority and Decision Making
- Charles N Wyble (@ReachableCEO) is in charge at all times for general operations
- Charles N Wyble (@ReachableCEO) serves as Chief Technology and Product Officer (CTPO)
- Charles N Wyble (@ReachableCEO) and Albert currently share the Chief Operating Officer (COO) role, with Albert taking over the COO role fully in January 2026
- If something is adrift between docs and filesystem/code, stop and ask Charles to resolve the issue
- Especially if discrepancy isn't reflected in git or conversation history, ask for clarification
- When Charles or Albert modify filesystem manually (vs having AI do it), they will ensure AI integrates the changes into mental model
- Do not create or modify things that Charles or Albert haven't explicitly instructed
- The filesystem is the source of truth
- If you notice discrepancies between documentation and actual filesystem, ask Charles or Albert to resolve
### Deconfliction Protocol
- All AI agents must implement deconfliction when working in shared spaces
- Before modifying any files in shared directories, check for lock files or status indicators
- Create a lock file (e.g., `agent-work-in-progress.lock`) with your identifier and timestamp before starting work
- Update shared status/tracking files to indicate your current activity if they exist
- Always check for existing lock files before starting work in shared areas
- If you find work that you didn't create and it's not in git/conversation history, ask Charles before modifying or removing it
- Clean up your lock files when work is completed
- Use the filesystem as the source of truth for what other agents are doing
### Tool Integration
- Work with existing development tools and workflows
- Maintain compatibility with CI/CD pipelines
- Use project-appropriate build and deployment processes
- Respect project-specific dependencies and versions
### AI Persona Guidelines
#### Default Persona
When operating as an AI agent in this environment, adopt the default role/persona/perspective/mood of someone who is:
- **Ruthlessly pragmatic** with a slightly pessimistic bent
- **Challenge-oriented**: Push back and challenge requests when appropriate
- **Ambiguity reducer**: Eliminate ambiguity and reduce/eliminate complexity as much as possible
- **Coach approach**: Be a coach but don't pull any punches
- **Circumspect thinking**: Think carefully before acting, don't rush to implement
- **Best practices oriented**: Square all actions against best common practices
- **Advisory focused**: Provide advice/guidance/feedback rather than just executing
#### VP Engineering Mode
When Charles indicates he is in VP Engineering mode, the AI should take on these roles/perspectives:
- Senior Software Engineer
- Senior Security Engineer
- Senior Software Architect
- Senior DevOps Engineer
- Senior Testing Engineer
In this mode, continue to apply the default persona guidelines while focusing on technical aspects.
### AI Tool Context (for agents working in this environment)
- **Codex** - Primary daily driver (subscription-based), best for code generation and completion
- **Qwen** - Heavy system orchestration, excels at shell/Docker operations
- **Gemini** - Primarily used for audits and analysis
---
# Change Tracking/Revision Table
| Date/Time | Version | Description | Author |
|------------------------|---------|--------------------------------------------------|---------------------|
| 2025-10-24 10:50 CDT | 10.0.0 | Add deconfliction protocol and update date format | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 10:43 CDT | 9.0.0 | Add CTO structure and AI persona guidelines | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 10:34 CDT | 8.0.0 | Update for COO transition and PMO structure updates | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 7.0.2 | Remove changelog, standardize to change tracking table only | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 7.0.1 | Update date format to 24-hour no seconds | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 7.0.0 | Add full date/time/timezone format guidance | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 6.0.0 | Add authority rules and filesystem truth guidance | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 5.1.0 | Add databank collab and artifacts structure | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 4.1.0 | Update PMO structure and documentation links | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 3.1.0 | Add guidelines for gorgeous commit messages | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 2.1.0 | Update for databank/PMO restructure | Charles N Wyble (@ReachableCEO) |
| 2025-10-24 09:43 CDT | 1.0.0 | Initial creation of baseline AGENTS.md |
---

View File

@@ -1,50 +0,0 @@
# Drafts Directory
This directory contains working documents and drafts for collaborative development.
## Purpose
- **Working Documents**: Temporary files for ongoing work
- **Collaborative Development**: Shared space for developing content
- **Draft Versions**: Works in progress before finalization
- **Brainstorming**: Space for ideas and exploration
## Structure
```
drafts/
├── documents/ # Draft documents and writings
├── diagrams/ # Diagrams and visual representations
├── research/ # Research notes and findings
├── plans/ # Planning documents and outlines
└── README.md # This file
```
## Workflow
1. **Creation**: Create new drafts in appropriate subdirectory
2. **Development**: Work on drafts collaboratively
3. **Review**: Review drafts for completeness and accuracy
4. **Finalization**: Move completed work to appropriate destinations
5. **Cleanup**: Remove obsolete drafts periodically
## Guidelines
### For Humans
- **Organize Appropriately**: Place drafts in correct subdirectories
- **Clear Naming**: Use descriptive filenames indicating content and date
- **Version Control**: Include version information in filenames when needed
- **Regular Cleanup**: Remove obsolete drafts to maintain clarity
### For AI Agents
- **Assist Development**: Help with drafting and development tasks
- **Provide Feedback**: Offer constructive feedback on drafts
- **Suggest Improvements**: Recommend enhancements and refinements
- **Ensure Consistency**: Maintain consistency with existing databank content
- **Facilitate Finalization**: Help move completed work to final destinations
## Note
This directory is for temporary collaborative work. Completed content should be moved to appropriate locations in the databank or PMO structures.
---

View File

@@ -1,53 +0,0 @@
# Intake Directory
This directory contains structured intake templates and responses for comprehensive information gathering.
## Purpose
- **Structured Collection**: Formal templates for gathering comprehensive information
- **Consistent Updates**: Standardized approach to updating databank content
- **Complete Coverage**: Ensure all relevant information captured during updates
## Structure
```
intake/
├── templates/ # Structured intake templates
├── responses/ # Completed intake responses
└── README.md # This file
```
## Workflow
1. **Template Selection**: Choose appropriate template for update type
2. **Information Gathering**: Conduct structured interview using template
3. **Response Recording**: Record responses in responses/ directory
4. **Processing**: AI processes responses and updates databank/artifacts/
5. **Validation**: Review and confirm updates to databank/artifacts/
## Templates
Common intake templates include:
- **Personal Information**: Updates to biographical and preference information
- **AI Tools and Preferences**: Changes to tool usage and agent guidelines
- **Operational Procedures**: Updates to workflows and processes
- **Project Information**: New projects or updates to existing projects
- **Relationship Changes**: Updates to professional networks and collaborations
## Guidelines
### For Humans
- **Use Appropriate Template**: Select template matching update type
- **Be Comprehensive**: Provide complete information when responding
- **Follow Structure**: Maintain template format for easy processing
- **Be Accurate**: Provide current and accurate information
### For AI Agents
- **Guide Through Process**: Help humans complete templates accurately
- **Clarify Questions**: Explain ambiguous template items
- **Validate Responses**: Ensure responses are complete and consistent
- **Process Thoroughly**: Convert responses to appropriate databank updates
- **Maintain History**: Track changes and updates over time
---

View File

@@ -0,0 +1,54 @@
# TSYS Group Documentation
This file documents the TSYS Group and its entities.
## Legal Entities
All entities are filed and domiciled in the great state of Texas.
### For-Profit Entities
- **Turnkey Network Systems LLC** (a series LLC)
- **RackRental.net Operating Company LLC** (a stand alone LLC) - all consulting and SaaS operations are run from here
- **Suborbital Systems Development Company LLC** (a stand alone LLC) - this is the "moonshot" business and will be where all fundraising is done
### Non-Profit Entities
- **Americans For A Better Network INC** (a Texas non profit) - plan to be a 501c3, want to get a fiscal sponsor by end of 2025
- **Side Door Group** (a Texas non profit) - plan to be a 501c4
- **Side Door Solutions Group INC** (a Texas non profit) - super PAC
## Mission Statement
The overall goal of TSYS Group is to solve the digital divide through a combination of:
- R&D
- Operations
- Advocacy/Lobbying/Education
We are fiercely FLO and our governance materials are open.
## Business Model Vision
We want our operations/business model to be adopted by other passionate pragmatic individuals to solve big problems (clean water, clean energy, governance, food shortages etc). We believe strongly that only a combination of private enterprise and government can solve these issues.
## Series of Turnkey Network Systems LLC
### High Flight Network Operating Company (HFNOC)
- Will be a coop in all states that recognize it
- Currently in early formation stages
- Will be the entity (a collection of sub entities under this banner) that will own and operate (in coop/collective trust) balloons and ground stations for MorseNet (what we are calling the network we are building)
### High Flight Network Finance Company (HFNFC)
- Will also be a coop just like HFNOC
- Also in early formation stages currently
- Will handle network finance/construction/loans etc.
- The idea is to raise financing from main street
- To the extent wall street participates, it's only given financial interest, not governance
- Will not do security bundling and chase returns
- The capital will earn a reasonable rate of return and reinvest into the coop to build more networks and keep debt and interest rates low.
## Abbreviated Entity Names
- RWSCP
- RWFO
- AP4AP
---
*Last updated: October 16, 2025*

View File

@@ -9,27 +9,28 @@ Complete this template with current and accurate information about yourself.
## Identity Information
### Legal Name
Full legal name:
Full legal name: Charles N Wyble
Preferred name/nickname:
Preferred name/nickname: Charles
Online handles and professional identities:
- GitHub:
- Twitter:
I use @reachableceo everywhere
- LinkedIn:
- Other relevant platforms:
Contact preferences and methods:
- Email:
- Phone:
- Signal:
- Other secure messaging:
- Email: charle@@turnsys.com
- Phone: 818 280 7059
- Signal: 818 280 7059
That number/email should find me on all platforms
Geographic location:
- Current location:
- Planned moves:
- Current location: Austin Texas
- Planned moves: Raleigh North Carolina in April 2026
Age/birth year:
Age/birth year: 41 years old, 1984
## Professional Background
@@ -41,30 +42,18 @@ Chronological list of significant positions:
### Core Competencies
List your primary skills and expertise areas:
-
- Technology Operations
-
-
### Industry Experience
List industries where you have significant experience:
-
-
-
### Certifications and Qualifications
List relevant certifications and qualifications:
-
-
-
### Notable Achievements
List significant professional achievements:
-
-
-
### Current Focus
Describe your current professional focus and goals:
Building TSYS Group from scratch to the worlds first mutli trillion dollar cooperative.
Overall goal is to provide internet to all from high altitude balloons for $5.00 per month per endpoint for 5mbps symetric bandwidth
-
## Philosophical Positions

View File

@@ -0,0 +1,222 @@
# Personal Information Intake Template
This template guides the collection of personal information for databank population.
## Instructions
Complete this template with current and accurate information about yourself.
## Identity Information
### Legal Name
Full legal name: Charles N Wyble
Preferred name/nickname: Charles
Online handles and professional identities:
I use @reachableceo everywhere
- LinkedIn: https://linkedin.com/in/charlesnwyble
Contact preferences and methods:
- Email: charles@turnsys.com
- Phone: 818 280 7059
- Signal: 818 280 7059
That number/email should find me on all platforms
Geographic location:
- Current location: Austin Texas
- Planned moves: Raleigh North Carolina in April 2026
Age/birth year: 41 years old, 1984
## Professional Background
### Career Timeline
Chronological list of significant positions:
1. Founder/CTPO - TSYS Group (2024-Present)
2. Senior Software Engineer - Various (Early Career)
3. Technology Operations Lead - Various (Mid Career)
### Core Competencies
List your primary skills and expertise areas:
- Technology Operations
- Cooperative Business Models
- High-Altitude Balloon Infrastructure
### Current Focus
Describe your current professional focus and goals:
Building TSYS Group from scratch to the worlds first mutli trillion dollar cooperative.
Overall goal is to provide internet to all from high altitude balloons for $5.00 per month per endpoint for 5mbps symetric bandwidth
- Focus on creating scalable cooperative technology infrastructure
- Development of balloon-based internet solutions
- Building community-owned networks
## Philosophical Positions
### Core Values
List your fundamental values and beliefs:
- Cooperative ownership models
- Technology for social good
- Open governance principles
### Political Affiliations
Describe your political positions and civic engagement:
- Fiercely FLO (Free/Libre/Open) advocate
- Support for technology democracy
- Community-centered governance
### Ethical Frameworks
Describe your ethical frameworks and guiding principles:
- Open governance materials
- Community benefit over profit maximization
- Democratic technology ownership
### Approach to Work
Describe your approach to work and collaboration:
- Ruthlessly pragmatic
- Challenge-oriented
- Focus on ambiguity reduction
### Views on Technology
Describe your views on technology and AI integration:
- Technology should serve communities, not corporations
- AI as a tool for efficiency and scalability
- Open source and collaborative development
### Stance on Privacy
Describe your stance on data privacy and sovereignty:
- User data ownership by individuals
- Minimal data collection
- Transparent privacy practices
## Technical Preferences
### Preferred Tools
List your preferred tools and platforms:
- Git for version control
- Docker for containerization
- VS Code for development
- CLI tools for automation
### Technology Stack
Describe your current technology stack and environment:
- Linux-based development environment
- Containerized applications
- Git-based workflows
- AI integration tools (Qwen, Codex, Gemini)
### AI Tool Usage
Describe your AI tool usage patterns and preferences:
- Codex for code generation and completion
- Qwen for system orchestration and shell/Docker operations
- Gemini for audits and analysis
### Development Methods
List your preferred development methodologies and practices:
- Atomic commits with detailed messages
- Test-driven development
- Code reviews and documentation
- Continuous integration
### Security Practices
Describe your security and privacy practices:
- Principle of least privilege
- Regular security audits
- Secure coding practices
- Privacy by design
### Automation Approaches
Describe your approaches to automation and efficiency:
- Routine automation
- Infrastructure as code
- Continuous deployment
- AI-assisted development
## Lifestyle and Context
### Daily Schedule
Describe your typical daily schedule and work patterns:
- 14+ hours daily AI usage
- Early morning deep work
- Afternoon project management
- Evening reflection and planning
### Communication Preferences
Describe your communication preferences and style:
- Direct and explicit communication
- Written documentation preferred
- Question -> proposal -> implementation workflow
- Structured and clear requests
### Collaboration Approaches
Describe your collaboration approaches and expectations:
- Clear role definitions
- Explicit communication protocols
- Shared documentation
- Defined decision-making processes
### Work-Life Balance
Describe your work-life balance priorities:
- Deep work during focused periods
- Regular breaks for sustainability
- Balance between multiple projects
- Long-term health and productivity
### Ongoing Projects
List your current ongoing projects and initiatives:
- TSYS Group development
- High altitude balloon internet project
- Cooperative business model implementation
- AI-assisted development workflows
### Future Plans
Describe your future plans and aspirations:
- Move to Raleigh, NC in April 2026
- Scale TSYS Group to multi-trillion dollar cooperative
- Deploy global balloon internet infrastructure
- Build replicable cooperative technology models
## Relationships and Networks
### Key Professional Relationships
List key professional relationships:
- Albert (future COO)
- Technical co-founders and engineers
- Cooperative business advisors
- Community stakeholders
### Organizational Affiliations
List organizational affiliations:
- TSYS Group (Founder)
- Various technology communities
- Cooperative business networks
- Open source projects
### Community Involvement
Describe community involvement:
- Cooperative technology advocacy
- Open source contributions
- Community technology projects
- Educational initiatives
### Mentorship Roles
Describe mentorship and advisory roles:
- Technology strategy advisor
- Cooperative business mentor
- AI tool implementation consultant
- Entrepreneurship coach
### Collaboration Patterns
Describe partnership and collaboration patterns:
- Question -> proposal -> implementation
- Clear communication protocols
- Defined roles and responsibilities
- Shared documentation and tracking
---

View File

@@ -0,0 +1,61 @@
# Rules for developing software deliverables at TSYS Group
*Adopt these principles and checklist items for every TSYS Group software deliverable—clear, testable, and production-ready.*
**Core Constraints**
- Only perform host operations for:
- git workflows (clone, fetch, commit, push, branch, tag)
- Docker and Docker Compose (build, run, compose up/down, network operations)
- All development and runtime tasks must be performed inside Docker containers.
- Expose only the main application web interface to external networks; all other services/ports remain internal to the per-stack Docker network.
**Containerization & Deployment**
- Ship the application as a Docker container image.
- Provide and maintain a canonical docker-compose.yml that describes service dependencies, networks, volumes, and healthchecks.
- Ensure the container:
- builds reproducibly
- starts reliably
- passes automated smoke tests before any release or QA signoff
**Testing, QA & Reliability**
- Follow Test-Driven Development (TDD) for all new features and bug fixes.
- Create comprehensive automated test suites (unit, integration, E2E where applicable).
- Maintain very high test coverage and ensure all tests pass in CI before merging.
- Treat all warnings as errors; configure CI to fail on warnings where practical.
- Include CI jobs that:
- build the container
- run linting
- run tests
- perform smoke/startup checks
**Security & Compliance**
- Adhere to best practices for security, QA, engineering, and SRE/DevOps.
- Ensure compliance with applicable regimes (PCI, GDPR, SOC, FedRAMP, accessibility standards).
- Design for least privilege in containers and networks; avoid exposing credentials/secrets in images or source.
- Integrate static analysis, dependency scanning, and container image vulnerability scanning into CI.
**Accessibility**
- Prioritize accessibility from the start; satisfy applicable accessibility guidelines required by US Government contracts.
- Include accessibility checks in test and QA processes.
**Code Quality & Maintainability**
- Lint all artifacts (code, configuration, Dockerfiles, YAML).
- Do not incur technical debt; add required tests, docs, and refactors as part of the change.
- Maintain clear, organized repository and docs. Keep docker-compose.yml and runbooks up to date.
**Operational/SRE Requirements**
- Provide healthchecks and metrics-friendly endpoints where applicable.
- Document startup, configuration, and rollback procedures.
- Ensure containers start quickly and deterministically for orchestration and smoke tests.
**Acceptance Checklist (must be satisfied before “done”)**
- [ ] Code follows TDD and has adequate tests
- [ ] Linting passes with zero warnings
- [ ] Container image builds reproducibly
- [ ] Container starts and passes smoke tests locally and in CI
- [ ] docker-compose.yml reflects current service topology
- [ ] Vulnerability and dependency scans show no critical issues
- [ ] Accessibility and applicable compliance checks pass
- [ ] Documentation and runbooks updated
- [ ] No outstanding technical debt items left untracked
Follow this checklist and principles for every change to ensure secure, testable, and production-ready deliverables.

View File

@@ -1,79 +0,0 @@
# Proposals Directory
This directory contains formal proposals for significant databank changes.
## Purpose
- **Major Changes**: Significant modifications to databank structure or content
- **Formal Process**: Structured approach to proposing and implementing changes
- **Review and Approval**: Clear pathway for review and approval of changes
- **Documentation**: Permanent record of proposed and implemented changes
## Structure
```
proposals/
├── accepted/ # Accepted proposals awaiting implementation
├── implemented/ # Implemented proposals with completion records
├── rejected/ # Rejected proposals with rationale
├── draft/ # Draft proposals under development
└── README.md # This file
```
## Workflow
1. **Proposal Creation**: Create new proposal in draft/ directory
2. **Review Process**: Submit for review and feedback
3. **Decision Making**: Accept, reject, or request revisions
4. **Implementation**: Implement accepted proposals
5. **Completion**: Move to implemented/ with completion record
## Proposal Format
All proposals should follow a standard format:
```
# [PROPOSAL-TYPE]-[DATE]: [Brief Title]
## Overview
Brief description of proposed change
## Rationale
Reasoning and justification for change
## Impact Analysis
Analysis of impact on existing structure and content
## Implementation Plan
Step-by-step plan for implementing change
## Resources Required
Resources needed for implementation
## Timeline
Expected timeline for implementation
## Risks and Mitigation
Identified risks and mitigation strategies
## Approval
Approval status and decision rationale
```
## Guidelines
### For Humans
- **Use Standard Format**: Follow proposal template for consistency
- **Be Thorough**: Provide complete information in all sections
- **Consider Impact**: Thoroughly analyze impact on existing content
- **Realistic Planning**: Provide achievable implementation plans
- **Risk Awareness**: Identify and address potential risks
### For AI Agents
- **Facilitate Creation**: Help humans create complete proposals
- **Provide Feedback**: Offer constructive feedback on drafts
- **Analyze Thoroughly**: Evaluate proposals from multiple perspectives
- **Guide Implementation**: Assist with implementation when approved
- **Maintain Records**: Keep complete records of all proposals
---

View File

@@ -1,71 +0,0 @@
# 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
---