Files
aitbc/docs/8_development/3_contributing.md
oib d072acb468 docs: update documentation links and expand Q2-Q3 2026 milestone plan
- Fix broken documentation links in intro.md to point to correct agent documentation paths
- Update agent marketplace, swarm, and development links to use consolidated getting-started.md
- Expand Q2-Q3 2026 milestone plan from "OpenClaw Agent Economic Model & Scalability" to "Global Marketplace Expansion"
- Add comprehensive global infrastructure scaling strategy with multi-region deployment
- Include cross-chain agent economics
2026-02-27 23:33:39 +01:00

1.6 KiB

title, description
title description
Contributing How to contribute to the AITBC project

Contributing to AITBC

We welcome contributions from the community! This guide will help you get started.

Ways to Contribute

Code Contributions

  • Fix bugs
  • Add features
  • Improve performance
  • Write tests

Documentation

  • Improve docs
  • Add examples
  • Translate content
  • Fix typos

Community

  • Answer questions
  • Report issues
  • Share feedback
  • Organize events

Getting Started

1. Fork Repository

git clone https://github.com/your-username/aitbc.git
cd aitbc

2. Setup Development Environment

# Install dependencies
pip install -r requirements-dev.txt

# Run tests
pytest

# Start development server
aitbc dev start

3. Create Branch

git checkout -b feature/your-feature-name

Development Workflow

Code Style

  • Follow PEP 8 for Python
  • Use ESLint for JavaScript
  • Write clear commit messages
  • Add tests for new features

Testing

# Run all tests
pytest

# Run specific test
pytest tests/test_jobs.py

# Check coverage
pytest --cov=aitbc

Submitting Changes

  1. Push to your fork
  2. Create pull request
  3. Wait for review
  4. Address feedback
  5. Merge!

Reporting Issues

  • Use GitHub Issues
  • Provide clear description
  • Include reproduction steps
  • Add relevant logs

Code of Conduct

Please read and follow our Code of Conduct.

Getting Help

Thank you for contributing! 🎉