Update ConnectAI codebase
This commit is contained in:
@@ -680,6 +680,19 @@ export async function activate(context: vscode.ExtensionContext) {
|
||||
vscode.commands.registerCommand('g1nation.calendar.connectOAuth', async () => {
|
||||
await runConnectGoogleCalendarOAuth(context);
|
||||
}),
|
||||
// Devil Agent (도현) — 매 답변 직후 비판적 반박. 토글 명령.
|
||||
vscode.commands.registerCommand('g1nation.devilAgent.toggle', async () => {
|
||||
const { isDevilAgentEnabled, setDevilAgentEnabled, DEVIL_PERSONA_NAME } =
|
||||
await import('./features/devilAgent');
|
||||
const wasOn = isDevilAgentEnabled();
|
||||
await setDevilAgentEnabled(!wasOn);
|
||||
const nowOn = !wasOn;
|
||||
vscode.window.showInformationMessage(
|
||||
nowOn
|
||||
? `🎭 ${DEVIL_PERSONA_NAME} 활성화됨 — 이제 매 답변 뒤에 비판적 반박 카드가 떠요.`
|
||||
: `🎭 ${DEVIL_PERSONA_NAME} 비활성화됨.`
|
||||
);
|
||||
}),
|
||||
);
|
||||
|
||||
/** All lesson/playbook/qa-finding cards in the active brain. Uses the brain index for the lesson-kind
|
||||
|
||||
Reference in New Issue
Block a user