From 4c31f62f331c7dd2a050d399dfa8d6fb0b0be547 Mon Sep 17 00:00:00 2001 From: Lior Kanfi Date: Wed, 4 Mar 2026 20:14:34 +0200 Subject: [PATCH 1/2] fix: update release workflow to trigger on agentic-sdlc-v* tags --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2e29592cc0..dc43a9fb64 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: Create Release on: push: tags: - - 'v*' + - 'agentic-sdlc-v*' jobs: release: From 34ef4aed19a06692e29dc7c4d27f927c47c1497e Mon Sep 17 00:00:00 2001 From: Lior Kanfi Date: Wed, 4 Mar 2026 22:59:21 +0200 Subject: [PATCH 2/2] fix: update eval prompt with correct command pattern - Changed command pattern from speckit.{extension-id}.{command-name} to adlc.{extension-id}.{command-name} - Ensures extension evaluation tests validate correct naming convention - Part of breaking change migration to adlc.* prefix --- evals/prompts/ext-prompt.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evals/prompts/ext-prompt.txt b/evals/prompts/ext-prompt.txt index 5a4545dcb1..27755f339d 100644 --- a/evals/prompts/ext-prompt.txt +++ b/evals/prompts/ext-prompt.txt @@ -17,7 +17,7 @@ A YAML manifest with ALL of the following fields: - extension.author: Author name - extension.repository: GitHub repository URL - extension.license: License type (e.g., MIT) -- requires.speckit_version: Minimum spec-kit version (e.g., ">=0.1.0") +- requires.adlc_version: Minimum spec-kit version (e.g., ">=0.1.0") - provides.commands: List of commands with name, file, description - provides.config: Configuration file references - tags: 2-5 relevant tags for catalog discovery @@ -46,7 +46,7 @@ A YAML configuration file with: IMPORTANT CONSTRAINTS: - All YAML must be valid and parseable -- Command names must follow pattern: speckit.{extension-id}.{command-name} +- Command names must follow pattern: adlc.{extension-id}.{command-name} - Extension ID must be lowercase with hyphens only - Include clear CUSTOMIZE comments for user modification - Self-contained: no references to @rule, @persona, or @example