3.9 KiB
3.9 KiB
ChangeLog
v0.7.3 - 2026-02-25
Breaking Changes:
- break(base): remove
get_call_task_group(),get_event_task_group(), andget_request_task_group()override methods - now inherited fromServiceBase
Enhancements:
- feat(base): add
set_manual_listening()method and publicis_manual_listening()accessor - feat(base): implement
on_start()override to configure task group parent relationships - feat(base): use
set_manual_listening()method instead of direct member access indo_stop()anddo_sleep() - feat(base): improve
do_manual_start_listening()anddo_manual_stop_listening()- change callback to non-blocking and adjust call order - feat(base): change
get_state_task_group()to returnget_call_task_group()instead of separate state task group - feat(state_machine): reduce log verbosity - remove INFO logs for init/deinit/start/stop operations
- feat(state_machine): change time sync check warnings to debug level logs
v0.7.2 - 2026-02-02
Breaking Changes:
- break(base):
Baseclass now inherits fromservice::ServiceBase - break(repo): migrate agent helper from
service::helper::AgentManagertoagent::helper::Manager - break(repo): remove
gmf_ai_audiodependency - break(repo): change
brookesia_service_sntpandbrookesia_service_audiodependencies to private - break(base): rename lifecycle methods:
on_start->on_startup,on_stop->on_shutdown - break(base): refactor
AudioConfigto useEncoderDynamicConfigandDecoderDynamicConfig - break(state_machine): add new states to
GeneralStateFlagBit:TimeSyncing,Ready,Activating,Activated,Error
Enhancements:
- feat(Kconfig): add
BROOKESIA_AGENT_MANAGER_ENABLE_AUTO_REGISTERoption for automatic plugin registration - feat(Kconfig): add
BROOKESIA_AGENT_MANAGER_ENABLE_AFE_EVENT_PROCESSINGoption for AFE event processing - feat(base): add
ServiceConfigstruct for configuring service dependencies - feat(base): add
ChatModetype support - feat(base): add
on_manual_start_listening()andon_manual_stop_listening()methods - feat(base): add task group methods:
get_call_task_group(),get_event_task_group(),get_request_task_group(),get_state_task_group() - feat(repo): add
brookesia_agent_helperdependency - feat(Kconfig): rename default worker name from
SrvAmWorkertoAgentMgrWorker - feat(Kconfig): change default worker poll interval from 5ms to 10ms
v0.7.1~1 - 2026-01-14
Enhancements:
- feat(CMake): use linker option
-uto register plugin instead ofWHOLE_ARCHIVE
Bug Fixes
- fix(agent): call
try_load_data()inset_info()
v0.7.1 - 2025-12-25
Bug Fixes
- fix(yml): update
brookesia_service_audiodependency version to0.7.*
v0.7.0 - 2025-12-24
Initial Release
- feat(repo): add agent management framework for ESP-Brookesia ecosystem
- feat(repo): implement unified agent lifecycle management (init, activate, start, stop, sleep, wakeup) through plugin mechanism
- feat(repo): implement state machine for automatic agent state transitions (TimeSyncing, TimeSynced, Starting, Started, Sleeping, Slept, WakingUp, Stopping)
- feat(repo): support agent activation/deactivation, suspend/resume, interrupt speaking, and state query operations
- feat(repo): implement event-driven architecture with support for general actions, state changes, text interactions (agent/user speaking text), and emote events
- feat(repo): support plugin mechanism for complete decoupling between project code and agent implementations
- feat(repo): provide agent attributes configuration with support for function calling, text processing, interrupt speaking, and emote features
- feat(repo): integrate with Audio service and SNTP service through service manager framework
- feat(repo): support NVS-based data persistence for active agent state
- feat(repo): implement plugin registry for dynamic agent discovery and management