step abstract method

Future<void> step()

Executes a single step of the agent's main logic.

This method is called repeatedly by the orchestrator and should:

  • Check for work to do
  • Perform any necessary actions
  • Update status appropriately

Implementations should be idempotent and handle their own errors.

Implementation

Future<void> step();