更新版本至 1.0.8,新增 zod-to-json-schema 依賴項、詳細的任務拆分指南及強化的錯誤處理機制;更新 MCP SDK 整合以提升相容性,改善任務提示模板及優化工具描述;修復部分 Agent 無法正常處理錯誤的問題及模板文件行格式。

This commit is contained in:
siage 2025-04-21 17:59:11 +08:00
parent a73f3a0105
commit 9911ff95ef
3 changed files with 39 additions and 1 deletions

View File

@ -4,6 +4,25 @@
All notable changes to this project will be documented in this file. 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] ## [1.0.7]
### Added ### Added

View File

@ -4,6 +4,25 @@
本文件記錄專案的所有重要變更。 本文件記錄專案的所有重要變更。
## [1.0.8]
### 新增
- 新增 zod-to-json-schema 依賴項,用於更好的結構定義整合
- 新增詳細的任務拆分指南,改善任務管理體驗
- 新增更強大的 Agent 工具呼叫錯誤處理機制
### 變更
- 更新 MCP SDK 整合方式,提升錯誤處理和相容性
- 改進任務實現提示模板,使指令更加清晰
- 優化任務拆分工具描述和參數驗證
### 修復
- 修復問題 #5,修正部分 Agent 無法正常處理錯誤的問題
- 修復模板文件中的行格式,提高可讀性
## [1.0.7] ## [1.0.7]
### 新增 ### 新增

View File

@ -1,6 +1,6 @@
{ {
"name": "mcp-shrimp-task-manager", "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", "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", "main": "dist/index.js",
"type": "module", "type": "module",