test(agents): add missing announce delivery regressions

This commit is contained in:
Peter Steinberger
2026-02-26 00:38:24 +00:00
parent 20c2db2103
commit aaeed3c4ea
5 changed files with 197 additions and 6 deletions

View File

@@ -47,10 +47,15 @@ function maybeBootstrapChannelPlugin(params: {
const autoEnabled = applyPluginAutoEnable({ config: cfg }).config;
const defaultAgentId = resolveDefaultAgentId(autoEnabled);
const workspaceDir = resolveAgentWorkspaceDir(autoEnabled, defaultAgentId);
loadOpenClawPlugins({
config: autoEnabled,
workspaceDir,
});
try {
loadOpenClawPlugins({
config: autoEnabled,
workspaceDir,
});
} catch {
// Allow a follow-up resolution attempt if bootstrap failed transiently.
bootstrapAttempts.delete(attemptKey);
}
}
export function resolveOutboundChannelPlugin(params: {