diff --git a/CHANGELOG.md b/CHANGELOG.md index bdb50f0..0aa4b3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file. +## [1.0.8] + +### Added + +- Added dependency on zod-to-json-schema for better schema integration +- Added detailed task splitting guidelines for better task management +- Added more robust error handling for Agent tool calls + +### Changed + +- Updated MCP SDK integration for better error handling and compatibility +- Improved task implementation prompt templates for clearer instructions +- Optimized task split tool descriptions and parameter validation + +### Fixed + +- Fixed issue #5 where some Agents couldn't properly handle errors +- Fixed line formatting in template documents for better readability + ## [1.0.7] ### Added diff --git a/docs/zh/CHANGELOG.md b/docs/zh/CHANGELOG.md index 7dcb7d8..0c129d9 100644 --- a/docs/zh/CHANGELOG.md +++ b/docs/zh/CHANGELOG.md @@ -4,6 +4,25 @@ 本文件記錄專案的所有重要變更。 +## [1.0.8] + +### 新增 + +- 新增 zod-to-json-schema 依賴項,用於更好的結構定義整合 +- 新增詳細的任務拆分指南,改善任務管理體驗 +- 新增更強大的 Agent 工具呼叫錯誤處理機制 + +### 變更 + +- 更新 MCP SDK 整合方式,提升錯誤處理和相容性 +- 改進任務實現提示模板,使指令更加清晰 +- 優化任務拆分工具描述和參數驗證 + +### 修復 + +- 修復問題 #5,修正部分 Agent 無法正常處理錯誤的問題 +- 修復模板文件中的行格式,提高可讀性 + ## [1.0.7] ### 新增 diff --git a/package.json b/package.json index e5951b7..d496073 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mcp-shrimp-task-manager", - "version": "1.0.7", + "version": "1.0.8", "description": "Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavior in reasoning AI systems", "main": "dist/index.js", "type": "module",