feat(councils): add preflight, schema-driven outputs, and artifact reporting

This commit is contained in:
William Valentin
2026-02-22 15:56:30 -08:00
parent dafe9b4d3d
commit 44c7409a20
18 changed files with 1686 additions and 29 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ describe('builtin /council command', () => {
rawInput: '/council',
services: {},
});
expect(result).toEqual({ handled: true, text: 'Usage: /council <question or task>' });
expect(result).toEqual({ handled: true, text: 'Usage: /council <question or task> | /council preflight' });
});
});
+1 -1
View File
@@ -260,7 +260,7 @@ export function createCouncilCommand(): CommandDefinition {
if (!task) {
return {
handled: true,
text: 'Usage: /council <question or task>',
text: 'Usage: /council <question or task> | /council preflight',
};
}
if (!ctx.services?.runCouncil) {