|
|
@@ -309,6 +309,24 @@ export async function CopilotAuthPlugin(input: PluginInput): Promise<Hooks> {
|
|
|
output.headers["anthropic-beta"] = "interleaved-thinking-2025-05-14"
|
|
|
}
|
|
|
|
|
|
+ const parts = await sdk.session
|
|
|
+ .message({
|
|
|
+ path: {
|
|
|
+ id: incoming.message.sessionID,
|
|
|
+ messageID: incoming.message.id,
|
|
|
+ },
|
|
|
+ query: {
|
|
|
+ directory: input.directory,
|
|
|
+ },
|
|
|
+ throwOnError: true,
|
|
|
+ })
|
|
|
+ .catch(() => undefined)
|
|
|
+
|
|
|
+ if (parts?.data.parts?.some((part) => part.type === "compaction")) {
|
|
|
+ output.headers["x-initiator"] = "agent"
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
const session = await sdk.session
|
|
|
.get({
|
|
|
path: {
|