Skip to content

Development Guides

This section covers how to extend OpenSage with new functionality.

Guides

Extending AigiseAgent

To add features to AigiseAgent:

  1. Modify src/aigise/agents/aigise_agent.py
  2. Ensure backward compatibility
  3. Add configuration options if needed
  4. Update documentation

General Development Workflow

  1. Create feature branch
  2. Make changes with tests
  3. Run tests and linting
  4. Update documentation
  5. Submit PR

See Also