@tencent-ai/codebuddy-code 2.23.3-next.f40d489.20251223 → 2.23.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/dist/codebuddy.js +3 -3
- package/package.json +2 -3
- package/product.cloudhosted.json +2 -2
- package/product.internal.json +2 -2
- package/product.ioa.json +2 -2
- package/product.json +5 -3
- package/product.selfhosted.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tencent-ai/codebuddy-code",
|
|
3
|
-
"version": "2.23.
|
|
3
|
+
"version": "2.23.4",
|
|
4
4
|
"description": "Use CodeBuddy, Tencent's AI assistant, right from your terminal. CodeBuddy can understand your codebase, edit files, run terminal commands, and handle entire workflows for you.",
|
|
5
5
|
"main": "lib/node/index.js",
|
|
6
6
|
"typings": "lib/node/index.d.ts",
|
|
@@ -29,8 +29,7 @@
|
|
|
29
29
|
"url": "https://cnb.cool/codebuddy/codebuddy-code/-/issues"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
|
-
"access": "public"
|
|
33
|
-
"tag": "next"
|
|
32
|
+
"access": "public"
|
|
34
33
|
},
|
|
35
34
|
"scripts": {},
|
|
36
35
|
"devDependencies": {},
|
package/product.cloudhosted.json
CHANGED
|
@@ -252,6 +252,6 @@
|
|
|
252
252
|
"BillingNotice": false,
|
|
253
253
|
"CustomModelsJSON": true
|
|
254
254
|
},
|
|
255
|
-
"commit": "
|
|
256
|
-
"date": "2025-12-
|
|
255
|
+
"commit": "31c97deaef9061152939eeae5daa51d6497c1bf8",
|
|
256
|
+
"date": "2025-12-23T11:34:35.657Z"
|
|
257
257
|
}
|
package/product.internal.json
CHANGED
|
@@ -254,6 +254,6 @@
|
|
|
254
254
|
"BillingNotice": false,
|
|
255
255
|
"CustomModelsJSON": true
|
|
256
256
|
},
|
|
257
|
-
"commit": "
|
|
258
|
-
"date": "2025-12-
|
|
257
|
+
"commit": "31c97deaef9061152939eeae5daa51d6497c1bf8",
|
|
258
|
+
"date": "2025-12-23T11:34:33.165Z"
|
|
259
259
|
}
|
package/product.ioa.json
CHANGED
|
@@ -477,6 +477,6 @@
|
|
|
477
477
|
"BillingNotice": false,
|
|
478
478
|
"CustomModelsJSON": true
|
|
479
479
|
},
|
|
480
|
-
"commit": "
|
|
481
|
-
"date": "2025-12-
|
|
480
|
+
"commit": "31c97deaef9061152939eeae5daa51d6497c1bf8",
|
|
481
|
+
"date": "2025-12-23T11:34:34.403Z"
|
|
482
482
|
}
|
package/product.json
CHANGED
|
@@ -445,7 +445,7 @@
|
|
|
445
445
|
},
|
|
446
446
|
{
|
|
447
447
|
"name": "tool-todowrite-description",
|
|
448
|
-
"template": "Use this tool to create and manage a structured task list for your current coding session. This helps you track progress, organize complex tasks, and demonstrate thoroughness to the user.\nIt also helps the user understand the progress of the task and overall progress of their requests.\n\n## When to Use This Tool\nUse this tool proactively in these scenarios:\n\n1. Complex multi-step tasks - When a task requires 3 or more distinct steps or actions\n2. Non-trivial and complex tasks - Tasks that require careful planning or multiple operations\n3. User explicitly requests todo list - When the user directly asks you to use the todo list\n4. User provides multiple tasks - When users provide a list of things to be done (numbered or comma-separated)\n5. After receiving new instructions - Immediately capture user requirements as todos\n6. When you start working on a task - Mark it as in_progress BEFORE beginning work. Ideally you should only have one todo as in_progress at a time\n7. After completing a task - Mark it as completed and add any new follow-up tasks discovered during implementation\n\n## When NOT to Use This Tool\n\nSkip using this tool when:\n1. There is only a single, straightforward task\n2. The task is trivial and tracking it provides no organizational benefit\n3. The task can be completed in less than 3 trivial steps\n4. The task is purely conversational or informational\n\nNOTE that you should not use this tool if there is only one trivial task to do. In this case you are better off just doing the task directly.\n\n## Examples of When to Use the Todo List\n\n<example>\nUser: I want to add a dark mode toggle to the application settings. Make sure you run the tests and build when you're done!\nAssistant: I'll help add a dark mode toggle to your application settings. Let me create a todo list to track this implementation.\n*Creates todo list with the following items:*\n1. Creating dark mode toggle component in Settings page\n2. Adding dark mode state management (context/store)\n3. Implementing CSS-in-JS styles for dark theme\n4. Updating existing components to support theme switching\n5. Running tests and build process, addressing any failures or errors that occur\n*Begins working on the first task*\n\n<reasoning>\nThe assistant used the todo list because:\n1. Adding dark mode is a multi-step feature requiring UI, state management, and styling changes\n2. The user explicitly requested tests and build be run afterward\n3. The assistant inferred that tests and build need to pass by adding \"Ensure tests and build succeed\" as the final task\n</reasoning>\n</example>\n\n<example>\nUser: Help me rename the function getCwd to getCurrentWorkingDirectory across my project\nAssistant: Let me first search through your codebase to find all occurrences of 'getCwd'.\n*Uses grep or search tools to locate all instances of getCwd in the codebase*\nAssistant: I've found 15 instances of 'getCwd' across 8 different files. Let me create a todo list to track these changes.\n*Creates todo list with specific items for each file that needs updating*\n\n<reasoning>\nThe assistant used the todo list because:\n1. First, the assistant searched to understand the scope of the task\n2. Upon finding multiple occurrences across different files, it determined this was a complex task with multiple steps\n3. The todo list helps ensure every instance is tracked and updated systematically\n4. This approach prevents missing any occurrences and maintains code consistency\n</reasoning>\n</example>\n\n\n<example>\nUser: I need to implement these features for my e-commerce site: user registration, product catalog, shopping cart, and checkout flow.\nAssistant: I'll help implement these features. First, let's add all the features to the todo list.\n*Creates a todo list breaking down each feature into specific tasks based on the project architecture*\nAssistant: Let's start with user registration. This will involve creating database models, API endpoints, and frontend forms that integrate with your existing authentication system.\n\n<reasoning>\nThe assistant used the todo list because:\n1. The user provided multiple complex features to implement in a comma separated list\n2. The todo list helps organize these large features into manageable tasks\n3. This approach allows for tracking progress across the entire implementation\n</reasoning>\n</example>\n\n<example>\nUser: Can you help optimize my React application? It's rendering slowly and has performance issues.</user>\nAssistant: I'll help optimize your React application. First, let me examine your codebase to identify potential performance bottlenecks.\n*Reviews component structure, render patterns, state management, and data fetching*\nAssistant: After analyzing your codebase, I've identified several performance issues. Let me create a todo list to track our optimization efforts.\n*Creates todo list with items like: 1) Implementing memoization for expensive calculations in ProductList, 2) Adding virtualization for long lists in Dashboard, 3) Optimizing image loading in Gallery component, 4) Fixing state update loops in ShoppingCart, 5) Reviewing bundle size and implementing code splitting*\nLet's start by implementing memoization for the expensive calculations in your ProductList component.</assistant>\n\n<reasoning>\nThe assistant used the todo list because:\n1. First, the assistant examined the codebase to identify specific performance issues\n2. Based on this analysis, it identified multiple optimization opportunities\n3. Performance optimization is a non-trivial task requiring multiple steps\n4. The todo list helps methodically track improvements across different components\n5. This systematic approach ensures all performance bottlenecks are addressed\n</reasoning>\n</example>\n\n## Examples of When NOT to Use the Todo List\n\n<example>\nUser: How do I print 'Hello World' in Python?\nAssistant: In Python, you can print \"Hello World\" with this simple code:\n\npython\nprint(\"Hello World\")\n\nThis will output the text \"Hello World\" to the console when executed.</assistant>\n\n<reasoning>\nThe assistant did not use the todo list because this is a single, trivial task that can be completed in one step. There's no need to track multiple tasks or steps for such a straightforward request.\n</reasoning>\n</example>\n\n<example>\nUser: What does the git status command do?\nAssistant: The git status command shows the current state of your working directory and staging area. It displays which changes have been staged, which haven't, and which files aren't being tracked by Git. This is a fundamental command for understanding the current state of your repository before making commits.\n\n<reasoning>\nThe assistant did not use the todo list because this is an informational request with no actual coding task to complete. The user is simply asking for an explanation, not for the assistant to perform multiple steps or tasks.\n</reasoning>\n</example>\n\n<example>\nUser: Can you add a comment to the calculateTotal function to explain what it does?\nAssistant: Sure, let me add a comment to the calculateTotal function to explain what it does.\n* Uses the Edit tool to add a comment to the calculateTotal function *\n\n<reasoning>\nThe assistant did not use the todo list because this is a single, straightforward task confined to one location in the code. Adding a comment doesn't require tracking multiple steps or systematic organization.\n</reasoning>\n</example>\n\n<example>\nUser: Run npm install for me and tell me what happens.\nAssistant: I'll run the npm install command for you.\n\n*Executes: npm install*\n\nThe command completed successfully. Here's the output:\n[Output of npm install command]\n\nAll dependencies have been installed according to your package.json file.\n\n<reasoning>\nThe assistant did not use the todo list because this is a single command execution with immediate results. There are no multiple steps to track or organize, making the todo list unnecessary for this straightforward task.\n</reasoning>\n</example>\n\n## Tool Usage Example\n\nHere's an example of how to use this tool:\n\n\\`\\`\\`json\n{\n \"oldTodos\":[],\n \"newTodos\": [\n {\n \"content\": \"Add dark mode toggle to Settings page\",\n \"activeForm\": \"Adding a dark mode toggle button to the settings page\"\n \"status\": \"in_progress\"\n },\n {\n \"content\": \"Update existing components to support theme switching\",\n \"activeForm\": \"Updating existing components to support theme switching\"\n \"status\": \"pending\"\n },\n {\n \"content\": \"Run tests and ensure they pass\",\n \"activeForm\": \"Running tests and checking if they pass.\"\n \"status\": \"pending\"\n }\n ]\n}\n\\`\\`\\`\n\nHere is an example of what was accomplished using this tool:\n\n\\`\\`\\`json\n{\n \"newTodos\":[],\n \"oldTodos\": [\n {\n \"content\": \"Add dark mode toggle to Settings page\",\n \"activeForm\": \"Adding a dark mode toggle button to the settings page\"\n \"status\": \"complete\"\n },\n {\n \"content\": \"Update existing components to support theme switching\",\n \"activeForm\": \"Updating existing components to support theme switching\"\n \"status\": \"complete\"\n },\n {\n \"content\": \"Run tests and ensure they pass\",\n \"activeForm\": \"Running tests and checking if they pass.\"\n \"status\": \"complete\"\n }\n ]\n}\n\\`\\`\\`\n\n## Task States and Management\n\n1. **Task States**: Use these states to track progress:\n - pending: Task not yet started\n - in_progress: Currently working on (limit to ONE task at a time)\n - completed: Task finished successfully\n\n **IMPORTANT**: Task descriptions must have two forms:\n - content: The imperative form describing what needs to be done (e.g., \"Run tests\", \"Build the project\")\n - activeForm: The present continuous form shown during execution (e.g., \"Running tests\", \"Building the project\")\n\n2. **Task Management**:\n - Update task status in real-time as you work\n - Mark tasks complete IMMEDIATELY after finishing (don't batch completions)\n - Exactly ONE task must be in_progress at any time (not less, not more)\n - Complete current tasks before starting new ones\n - Remove tasks that are no longer relevant from the list entirely\n - Even after all tasks are completed, a list of empty newTodos should still be returned to indicate that the tasks are complete.\n\n3. **Task Completion Requirements**:\n - ONLY mark a task as completed when you have FULLY accomplished it\n - If you encounter errors, blockers, or cannot finish, keep the task as in_progress\n - When blocked, create a new task describing what needs to be resolved\n - Never mark a task as completed if:\n - Tests are failing\n - Implementation is partial\n - You encountered unresolved errors\n - You couldn't find necessary files or dependencies\n\n4. **Task Breakdown**:\n - Create specific, actionable items\n - Break complex tasks into smaller, manageable steps\n - Use clear, descriptive task names\n - Always provide both forms:\n - content: \"Fix authentication bug\"\n - activeForm: \"Fixing authentication bug\"\n\nWhen in doubt, use this tool. Being proactive with task management demonstrates attentiveness and ensures you complete all requirements successfully.\n\n"
|
|
448
|
+
"template": "Use this tool to create and manage a structured task list for your current coding session. This helps you track progress, organize complex tasks, and demonstrate thoroughness to the user.\nIt also helps the user understand the progress of the task and overall progress of their requests.\n\n## When to Use This Tool\nUse this tool proactively in these scenarios:\n\n1. Complex multi-step tasks - When a task requires 3 or more distinct steps or actions\n2. Non-trivial and complex tasks - Tasks that require careful planning or multiple operations\n3. User explicitly requests todo list - When the user directly asks you to use the todo list\n4. User provides multiple tasks - When users provide a list of things to be done (numbered or comma-separated)\n5. After receiving new instructions - Immediately capture user requirements as todos\n6. When you start working on a task - Mark it as in_progress BEFORE beginning work. Ideally you should only have one todo as in_progress at a time\n7. After completing a task - Mark it as completed and add any new follow-up tasks discovered during implementation\n\n## When NOT to Use This Tool\n\nSkip using this tool when:\n1. There is only a single, straightforward task\n2. The task is trivial and tracking it provides no organizational benefit\n3. The task can be completed in less than 3 trivial steps\n4. The task is purely conversational or informational\n\nNOTE that you should not use this tool if there is only one trivial task to do. In this case you are better off just doing the task directly.\n\n## Examples of When to Use the Todo List\n\n<example>\nUser: I want to add a dark mode toggle to the application settings. Make sure you run the tests and build when you're done!\nAssistant: I'll help add a dark mode toggle to your application settings. Let me create a todo list to track this implementation.\n*Creates todo list with the following items:*\n1. Creating dark mode toggle component in Settings page\n2. Adding dark mode state management (context/store)\n3. Implementing CSS-in-JS styles for dark theme\n4. Updating existing components to support theme switching\n5. Running tests and build process, addressing any failures or errors that occur\n*Begins working on the first task*\n\n<reasoning>\nThe assistant used the todo list because:\n1. Adding dark mode is a multi-step feature requiring UI, state management, and styling changes\n2. The user explicitly requested tests and build be run afterward\n3. The assistant inferred that tests and build need to pass by adding \"Ensure tests and build succeed\" as the final task\n</reasoning>\n</example>\n\n<example>\nUser: Help me rename the function getCwd to getCurrentWorkingDirectory across my project\nAssistant: Let me first search through your codebase to find all occurrences of 'getCwd'.\n*Uses grep or search tools to locate all instances of getCwd in the codebase*\nAssistant: I've found 15 instances of 'getCwd' across 8 different files. Let me create a todo list to track these changes.\n*Creates todo list with specific items for each file that needs updating*\n\n<reasoning>\nThe assistant used the todo list because:\n1. First, the assistant searched to understand the scope of the task\n2. Upon finding multiple occurrences across different files, it determined this was a complex task with multiple steps\n3. The todo list helps ensure every instance is tracked and updated systematically\n4. This approach prevents missing any occurrences and maintains code consistency\n</reasoning>\n</example>\n\n\n<example>\nUser: I need to implement these features for my e-commerce site: user registration, product catalog, shopping cart, and checkout flow.\nAssistant: I'll help implement these features. First, let's add all the features to the todo list.\n*Creates a todo list breaking down each feature into specific tasks based on the project architecture*\nAssistant: Let's start with user registration. This will involve creating database models, API endpoints, and frontend forms that integrate with your existing authentication system.\n\n<reasoning>\nThe assistant used the todo list because:\n1. The user provided multiple complex features to implement in a comma separated list\n2. The todo list helps organize these large features into manageable tasks\n3. This approach allows for tracking progress across the entire implementation\n</reasoning>\n</example>\n\n<example>\nUser: Can you help optimize my React application? It's rendering slowly and has performance issues.</user>\nAssistant: I'll help optimize your React application. First, let me examine your codebase to identify potential performance bottlenecks.\n*Reviews component structure, render patterns, state management, and data fetching*\nAssistant: After analyzing your codebase, I've identified several performance issues. Let me create a todo list to track our optimization efforts.\n*Creates todo list with items like: 1) Implementing memoization for expensive calculations in ProductList, 2) Adding virtualization for long lists in Dashboard, 3) Optimizing image loading in Gallery component, 4) Fixing state update loops in ShoppingCart, 5) Reviewing bundle size and implementing code splitting*\nLet's start by implementing memoization for the expensive calculations in your ProductList component.</assistant>\n\n<reasoning>\nThe assistant used the todo list because:\n1. First, the assistant examined the codebase to identify specific performance issues\n2. Based on this analysis, it identified multiple optimization opportunities\n3. Performance optimization is a non-trivial task requiring multiple steps\n4. The todo list helps methodically track improvements across different components\n5. This systematic approach ensures all performance bottlenecks are addressed\n</reasoning>\n</example>\n\n## Examples of When NOT to Use the Todo List\n\n<example>\nUser: How do I print 'Hello World' in Python?\nAssistant: In Python, you can print \"Hello World\" with this simple code:\n\npython\nprint(\"Hello World\")\n\nThis will output the text \"Hello World\" to the console when executed.</assistant>\n\n<reasoning>\nThe assistant did not use the todo list because this is a single, trivial task that can be completed in one step. There's no need to track multiple tasks or steps for such a straightforward request.\n</reasoning>\n</example>\n\n<example>\nUser: What does the git status command do?\nAssistant: The git status command shows the current state of your working directory and staging area. It displays which changes have been staged, which haven't, and which files aren't being tracked by Git. This is a fundamental command for understanding the current state of your repository before making commits.\n\n<reasoning>\nThe assistant did not use the todo list because this is an informational request with no actual coding task to complete. The user is simply asking for an explanation, not for the assistant to perform multiple steps or tasks.\n</reasoning>\n</example>\n\n<example>\nUser: Can you add a comment to the calculateTotal function to explain what it does?\nAssistant: Sure, let me add a comment to the calculateTotal function to explain what it does.\n* Uses the Edit tool to add a comment to the calculateTotal function *\n\n<reasoning>\nThe assistant did not use the todo list because this is a single, straightforward task confined to one location in the code. Adding a comment doesn't require tracking multiple steps or systematic organization.\n</reasoning>\n</example>\n\n<example>\nUser: Run npm install for me and tell me what happens.\nAssistant: I'll run the npm install command for you.\n\n*Executes: npm install*\n\nThe command completed successfully. Here's the output:\n[Output of npm install command]\n\nAll dependencies have been installed according to your package.json file.\n\n<reasoning>\nThe assistant did not use the todo list because this is a single command execution with immediate results. There are no multiple steps to track or organize, making the todo list unnecessary for this straightforward task.\n</reasoning>\n</example>\n\n## Tool Usage Example\n\nHere's an example of how to use this tool:\n\n\\`\\`\\`json\n{\n \"oldTodos\":[],\n \"newTodos\": [\n {\n \"content\": \"Add dark mode toggle to Settings page\",\n \"activeForm\": \"Adding a dark mode toggle button to the settings page\"\n \"status\": \"in_progress\"\n },\n {\n \"content\": \"Update existing components to support theme switching\",\n \"activeForm\": \"Updating existing components to support theme switching\"\n \"status\": \"pending\"\n },\n {\n \"content\": \"Run tests and ensure they pass\",\n \"activeForm\": \"Running tests and checking if they pass.\"\n \"status\": \"pending\"\n }\n ]\n}\n\\`\\`\\`\n\nHere is an example of what was accomplished using this tool:\n\n\\`\\`\\`json\n{\n \"newTodos\":[],\n \"oldTodos\": [\n {\n \"content\": \"Add dark mode toggle to Settings page\",\n \"activeForm\": \"Adding a dark mode toggle button to the settings page\"\n \"status\": \"complete\"\n },\n {\n \"content\": \"Update existing components to support theme switching\",\n \"activeForm\": \"Updating existing components to support theme switching\"\n \"status\": \"complete\"\n },\n {\n \"content\": \"Run tests and ensure they pass\",\n \"activeForm\": \"Running tests and checking if they pass.\"\n \"status\": \"complete\"\n }\n ]\n}\n\\`\\`\\`\n\n## Task States and Management\n\n1. **Task States**: Use these states to track progress:\n - pending: Task not yet started\n - in_progress: Currently working on (limit to ONE task at a time)\n - completed: Task finished successfully\n\n **IMPORTANT**: Task descriptions must have two forms:\n - content: The imperative form describing what needs to be done (e.g., \"Run tests\", \"Build the project\")\n - activeForm: The present continuous form shown during execution (e.g., \"Running tests\", \"Building the project\")\n\n2. **Task Management**:\n - Update task status in real-time as you work\n - Mark tasks complete IMMEDIATELY after finishing (don't batch completions)\n - Exactly ONE task must be in_progress at any time (not less, not more)\n - Complete current tasks before starting new ones\n - Remove tasks that are no longer relevant from the list entirely\n - Every time you update the todo list, return ALL tasks (both completed and pending)\n - When all tasks are completed, return an empty newTodos array as the final state\n\n3. **Task Completion Requirements**:\n - ONLY mark a task as completed when you have FULLY accomplished it\n - If you encounter errors, blockers, or cannot finish, keep the task as in_progress\n - When blocked, create a new task describing what needs to be resolved\n - Never mark a task as completed if:\n - Tests are failing\n - Implementation is partial\n - You encountered unresolved errors\n - You couldn't find necessary files or dependencies\n\n4. **Task Breakdown**:\n - Create specific, actionable items\n - Break complex tasks into smaller, manageable steps\n - Use clear, descriptive task names\n - Always provide both forms:\n - content: \"Fix authentication bug\"\n - activeForm: \"Fixing authentication bug\"\n\n## CRITICAL: Task Completion Protocol\n\n**You MUST follow this protocol to properly complete a task session:**\n\n1. **Initial Task Definition**: When creating the todo list, ensure you have identified ALL tasks required to fulfill the user's request. Be thorough and comprehensive—missing tasks is a failure.\n\n2. **Progressive Tracking**: After completing each task, IMMEDIATELY call TodoWrite to:\n - Move the completed task from pending/in_progress to the oldTodos with \"completed\" status\n - Update the next task to in_progress in newTodos\n - If no more tasks remain, set newTodos to an empty array\n\n3. **Mid-Session Checkpoints**: For longer task sessions:\n - After every 3-5 completed tasks, explicitly summarize what has been accomplished\n - State how many tasks remain\n - Confirm you are continuing with the remaining tasks\n\n4. **Final Completion**: When all tasks are done:\n - Call TodoWrite one final time with an empty newTodos array\n - Move ALL completed tasks to oldTodos with \"completed\" status\n - Explicitly confirm to the user: \"All tasks have been completed successfully\"\n - List what was accomplished\n\n5. **Validation Before Stopping**:\n Before ending your work, verify:\n - ✓ Every task in the original list has been addressed\n - ✓ Every task is marked as \"completed\" in oldTodos or \"completed\" in the final TodoWrite call\n - ✓ No task remains in a \"pending\" or \"in_progress\" state\n - ✓ You have returned an empty newTodos array to formally conclude the task session\n - ✓ You have informed the user that all work is complete\n\n**FAILURE CONDITION**: If you stop working without returning an empty newTodos array, it signals that:\n- The task session is incomplete\n- There are unfinished tasks\n- The user may need to request continuation\n\nThis is non-negotiable. Every task session must end with an empty newTodos array and explicit user confirmation.\n\nWhen in doubt, use this tool. Being proactive with task management demonstrates attentiveness and ensures you complete all requirements successfully.\n"
|
|
449
449
|
},
|
|
450
450
|
{
|
|
451
451
|
"name": "tool-todowrite-planmode-result",
|
|
@@ -814,6 +814,8 @@
|
|
|
814
814
|
"StandaloneTerminal": true,
|
|
815
815
|
"DisableCreditsConsumed": true,
|
|
816
816
|
"DisablePlugin": true,
|
|
817
|
+
"Skills": true,
|
|
818
|
+
"UIComponentLibrary": true,
|
|
817
819
|
"BillingNotice": true,
|
|
818
820
|
"CustomModelsJSON": true
|
|
819
821
|
},
|
|
@@ -944,6 +946,6 @@
|
|
|
944
946
|
"description": "tool-ask-user-question-description"
|
|
945
947
|
}
|
|
946
948
|
],
|
|
947
|
-
"commit": "
|
|
948
|
-
"date": "2025-12-
|
|
949
|
+
"commit": "31c97deaef9061152939eeae5daa51d6497c1bf8",
|
|
950
|
+
"date": "2025-12-23T11:34:31.940Z"
|
|
949
951
|
}
|
package/product.selfhosted.json
CHANGED
|
@@ -191,6 +191,6 @@
|
|
|
191
191
|
"BillingNotice": false,
|
|
192
192
|
"CustomModelsJSON": true
|
|
193
193
|
},
|
|
194
|
-
"commit": "
|
|
195
|
-
"date": "2025-12-
|
|
194
|
+
"commit": "31c97deaef9061152939eeae5daa51d6497c1bf8",
|
|
195
|
+
"date": "2025-12-23T11:34:36.899Z"
|
|
196
196
|
}
|