├── LICENSE ├── README.md ├── committees ├── dispute_resolution │ └── README.md ├── ethics │ └── README.md └── project_approval │ └── README.md ├── contributing.md ├── creative_contributions └── README.md ├── docs └── documentation_standards.md ├── implementation └── README.md ├── marketing_business_development └── README.md ├── project_management └── README.md ├── setup.sh ├── technical_expertise └── README.md ├── tools_communication └── README.md └── working_groups ├── marketing └── README.md ├── project_management └── README.md └── technical └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/AiHCC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/AiHCC/HEAD/README.md -------------------------------------------------------------------------------- /committees/dispute_resolution/README.md: -------------------------------------------------------------------------------- 1 | # Dispute Resolution Committee 2 | -------------------------------------------------------------------------------- /committees/ethics/README.md: -------------------------------------------------------------------------------- 1 | # Ethics Committee 2 | -------------------------------------------------------------------------------- /committees/project_approval/README.md: -------------------------------------------------------------------------------- 1 | # Project Approval Committee 2 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/AiHCC/HEAD/contributing.md -------------------------------------------------------------------------------- /creative_contributions/README.md: -------------------------------------------------------------------------------- 1 | # Creative Contributions 2 | -------------------------------------------------------------------------------- /docs/documentation_standards.md: -------------------------------------------------------------------------------- 1 | # Documentation Standards 2 | -------------------------------------------------------------------------------- /implementation/README.md: -------------------------------------------------------------------------------- 1 | # Implementation 2 | -------------------------------------------------------------------------------- /marketing_business_development/README.md: -------------------------------------------------------------------------------- 1 | # Marketing and Business Development 2 | -------------------------------------------------------------------------------- /project_management/README.md: -------------------------------------------------------------------------------- 1 | # Project Management 2 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/AiHCC/HEAD/setup.sh -------------------------------------------------------------------------------- /technical_expertise/README.md: -------------------------------------------------------------------------------- 1 | # Technical Expertise 2 | -------------------------------------------------------------------------------- /tools_communication/README.md: -------------------------------------------------------------------------------- 1 | # Tools and Communication 2 | -------------------------------------------------------------------------------- /working_groups/marketing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvnet/AiHCC/HEAD/working_groups/marketing/README.md -------------------------------------------------------------------------------- /working_groups/project_management/README.md: -------------------------------------------------------------------------------- 1 | # Project Management Working Group 2 | -------------------------------------------------------------------------------- /working_groups/technical/README.md: -------------------------------------------------------------------------------- 1 | # Technical Working Group 2 | --------------------------------------------------------------------------------