agent/pkg/agentic/runner.go
Virgil cef4d5d1f6 docs(ax): add remaining usage examples
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-29 23:14:26 +00:00

20 lines
655 B
Go

// SPDX-License-Identifier: EUPL-1.2
package agentic
// StartRunner preserves the legacy PrepSubsystem call after queue ownership moved to pkg/runner.Service.
//
// prep := agentic.NewPrep()
// prep.StartRunner()
//
// The runner service registers as core.WithService(runner.Register) and
// manages its own background loop, frozen state, and concurrency checks.
func (s *PrepSubsystem) StartRunner() {}
// Poke preserves the legacy queue signal after queue ownership moved to pkg/runner.Service.
//
// prep := agentic.NewPrep()
// prep.Poke()
//
// Runner catches AgentCompleted via HandleIPCEvents and pokes itself.
func (s *PrepSubsystem) Poke() {}