From ae5f8d7104fb6892b83f9924e165529da9caeefe Mon Sep 17 00:00:00 2001 From: ikjeong Date: Wed, 19 Nov 2025 11:28:35 +0900 Subject: [PATCH 1/2] chore: bump version to 0.1.3 in package.json --- npm/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/package.json b/npm/package.json index 16fb36d..808cf60 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "@dev-symphony/sym", - "version": "0.1.2", + "version": "0.1.3", "description": "Symphony - LLM-friendly convention linter for AI coding assistants", "keywords": [ "mcp", From 1114fd2f78c7444836d371b03a2b59744ab0b8af Mon Sep 17 00:00:00 2001 From: ikjeong Date: Wed, 19 Nov 2025 02:57:32 +0000 Subject: [PATCH 2/2] fix: correct formatting in validation results message and ensure go.mod dependency is properly listed --- go.mod | 2 +- internal/mcp/server.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index c815c07..eaae966 100644 --- a/go.mod +++ b/go.mod @@ -9,8 +9,8 @@ require ( ) require ( - github.com/modelcontextprotocol/go-sdk v1.1.0 github.com/manifoldco/promptui v0.9.0 + github.com/modelcontextprotocol/go-sdk v1.1.0 github.com/stretchr/testify v1.11.1 ) diff --git a/internal/mcp/server.go b/internal/mcp/server.go index f753f0a..6722c10 100644 --- a/internal/mcp/server.go +++ b/internal/mcp/server.go @@ -690,7 +690,7 @@ func (s *Server) handleValidateCode(params map[string]interface{}) (interface{}, } // Add note about saved results - textContent += fmt.Sprintf("\n💾 Validation results saved to .sym/validation-results.json\n") + textContent += "\n💾 Validation results saved to .sym/validation-results.json\n" // Return MCP-compliant response with content array return map[string]interface{}{