Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 835 Bytes

File metadata and controls

42 lines (32 loc) · 835 Bytes

Contributing

Contributions welcome! This guide covers bug reports, features, and pull requests.

Reporting Bugs

Open an issue with:

  • Description and steps to reproduce
  • Expected vs actual behavior
  • Platform (Windows/Mac/Android) and Geode version
  • Console errors if any

Suggesting Features

  • Check existing issues first
  • Explain use case and benefits
  • Be open to discussion

Pull Requests

  1. Fork and clone:
git clone https://github.com/Entity12208/EditorAI.git
cd EditorAI
  1. Create branch:
git checkout -b feature/your-feature
  1. Make changes:
  • Follow existing code style
  • Test thoroughly
  • Use Geode SDK best practices (see docs.geode-sdk.org)
  • Add comments for complex logic
  1. Commit and push:
git commit -m "feat: your feature"
git push origin feature/your-feature