From 1e5a0cb777d29741c43ba8524995e559a57f5e01 Mon Sep 17 00:00:00 2001 From: Evgenii Kniazev Date: Wed, 4 Mar 2026 11:51:46 +0000 Subject: [PATCH] fix: bump AppKit template to v0.14.1 The pinned AppKit template version (v0.11.0) is 3 minor versions behind the latest AppKit release (v0.14.1). This causes generated apps to miss important fixes: - SDK import fix (v0.12.2) - Skills reference (v0.14.0) - Valid types output (v0.14.1) Eval pipeline confirms apps generated with v0.11.0 score lower than expected due to these missing improvements. Co-Authored-By: Claude Opus 4.6 Signed-off-by: Evgenii Kniazev --- cmd/apps/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/apps/init.go b/cmd/apps/init.go index ad928213bf..a882cc17ea 100644 --- a/cmd/apps/init.go +++ b/cmd/apps/init.go @@ -36,7 +36,7 @@ const ( appkitTemplateDir = "template" appkitDefaultBranch = "main" appkitTemplateTagPfx = "template-v" - appkitDefaultVersion = "template-v0.11.0" + appkitDefaultVersion = "template-v0.14.1" defaultProfile = "DEFAULT" )