From f3db53798d38103210c560ee414f24a5ff3cf99e Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Mon, 2 Mar 2026 14:17:33 +0200 Subject: [PATCH] fix: change default Confluence space from AG to AI AG space does not exist. AI Collaboration (AI) is the correct default. Co-Authored-By: Claude Opus 4.6 --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 86f257c..b799cfa 100644 --- a/bot.py +++ b/bot.py @@ -186,7 +186,7 @@ ATLASSIAN_TOOLS = [ "properties": { "title": {"type": "string", "description": "Page title"}, "content": {"type": "string", "description": "Page body text (paragraphs separated by newlines)"}, - "space_key": {"type": "string", "description": "Confluence space key (default: AG)", "default": "AG"}, + "space_key": {"type": "string", "description": "Confluence space key (default: AI)", "default": "AI"}, }, "required": ["title", "content"], }, @@ -646,7 +646,7 @@ class AtlassianClient: return f"Failed to update Confluence page: {e}" async def confluence_create_page(self, token: str, title: str, content: str, - space_key: str = "AG") -> str: + space_key: str = "AI") -> str: cloud_id = await self._get_cloud_id(token) if not cloud_id: return "Error: Could not determine Atlassian Cloud instance."