32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { listChannelPluginCatalogEntries } from "../channels/plugins/catalog.js";
|
|
import { CHAT_CHANNEL_ORDER } from "../channels/registry.js";
|
|
import { listChannelPlugins } from "../channels/plugins/index.js";
|
|
import { isTruthyEnvValue } from "../infra/env.js";
|
|
import { ensurePluginRegistryLoaded } from "./plugin-registry.js";
|
|
|
|
function dedupe(values: string[]): string[] {
|
|
const seen = new Set<string>();
|
|
const resolved: string[] = [];
|
|
for (const value of values) {
|
|
if (!value || seen.has(value)) continue;
|
|
seen.add(value);
|
|
resolved.push(value);
|
|
}
|
|
return resolved;
|
|
}
|
|
|
|
export function resolveCliChannelOptions(): string[] {
|
|
const catalog = listChannelPluginCatalogEntries().map((entry) => entry.id);
|
|
const base = dedupe([...CHAT_CHANNEL_ORDER, ...catalog]);
|
|
if (isTruthyEnvValue(process.env.CLAWDBOT_EAGER_CHANNEL_OPTIONS)) {
|
|
ensurePluginRegistryLoaded();
|
|
const pluginIds = listChannelPlugins().map((plugin) => plugin.id);
|
|
return dedupe([...base, ...pluginIds]);
|
|
}
|
|
return base;
|
|
}
|
|
|
|
export function formatCliChannelOptions(extra: string[] = []): string {
|
|
return [...extra, ...resolveCliChannelOptions()].join("|");
|
|
}
|