fix: remove basic schema variant and unify to full schema#592
Merged
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom Feb 19, 2026
fix/remove-basic-schema-variantbreaking-brake/cc-wf-studio:fix/remove-basic-schema-variantCopy head branch name to clipboard
Merged
fix: remove basic schema variant and unify to full schema#592breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom fix/remove-basic-schema-variantbreaking-brake/cc-wf-studio:fix/remove-basic-schema-variantCopy head branch name to clipboard
breaking-brake merged 1 commit intomainbreaking-brake/cc-wf-studio:mainfrom
fix/remove-basic-schema-variantbreaking-brake/cc-wf-studio:fix/remove-basic-schema-variantCopy head branch name to clipboard
Conversation
- Remove getSchemaVariantForProvider() and SchemaVariant type - Simplify schema-loader-service caches to single values - Remove basic schema generation from TOON generator script - Delete workflow-schema-basic.json and workflow-schema-basic.toon Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Merged
braking-brake-semantic-release Bot
pushed a commit
that referenced
this pull request
Feb 19, 2026
## [3.23.1](v3.23.0...v3.23.1) (2026-02-19) ### Bug Fixes * remove basic schema variant and unify to full schema ([#592](#592)) ([694817f](694817f))
|
🎉 This PR is included in version 3.23.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
After PR #589 added SubAgent compatibility for all AI agents (Codex CLI, Roo Code, Copilot VSCode), the
workflow-schema-basic.json(a simplified variant excluding SubAgent types) became obsolete. TheSchemaVarianttype and provider-based variant selection logic added unnecessary complexity.Current Behavior
get_workflow_schemaMCP tool checks the AI providerExpected Behavior
get_workflow_schemaMCP tool is calledSolution
Remove the basic schema variant entirely and unify on the full schema.
Changes
File:
src/extension/services/mcp-server-tools.tsgetSchemaVariantForProvider()functionSchemaVarianttype import andAiEditingProviderimportget_workflow_schemato always use full schema pathFile:
src/extension/services/schema-loader-service.tsSchemaVarianttype exportMap<SchemaVariant, ...>to single variablesvariantparameter from all functionsFile:
scripts/generate-toon-schema.tscreateBasicSchema()functionDeleted:
resources/workflow-schema-basic.json,resources/workflow-schema-basic.toonImpact
Testing
npm run format && npm run lint && npm run checkpassednpm run buildsucceeded (TOON generation produces only full schema)SchemaVariant/schema-basicin codebase🤖 Generated with Claude Code