agent-ecosystem/agent-teams-controller/src/internal/messages.js
iliya 95d610f43b feat: enhance review and messaging functionalities
- Added requestReview method to facilitate task review requests, integrating with kanban and messaging systems.
- Updated taskStore to manage review states, ensuring compatibility with kanban columns.
- Enhanced message handling by introducing appendSentMessage for better tracking of sent messages.
- Improved task management by normalizing review states and integrating them into task creation and retrieval processes.
- Updated tests to cover new review and messaging features, ensuring robust functionality across components.
2026-03-07 17:47:28 +02:00

14 lines
325 B
JavaScript

const messageStore = require('./messageStore.js');
function sendMessage(context, flags) {
return messageStore.sendInboxMessage(context.paths, flags);
}
function appendSentMessage(context, flags) {
return messageStore.appendSentMessage(context.paths, flags);
}
module.exports = {
appendSentMessage,
sendMessage,
};