fix: correct JSON syntax errors in 7 asset template files #117
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.
Summary
Fixed JSON syntax errors in 7 asset template files across the plugin marketplace. All files were causing parse errors due to missing commas.
Changes Made
Fixed missing commas in the following files:
plugins/api-development/api-rate-limiter/skills/skill-adapter/assets/error_message_template.jsonplugins/api-development/api-request-logger/skills/skill-adapter/assets/example_log_output.jsonplugins/testing/contract-test-validator/skills/contract-test-validator/assets/pact_contract_template.jsonplugins/ai-ml/deep-learning-optimizer/skills/deep-learning-optimizer/assets/optimization_config.jsonplugins/ai-ml/clustering-algorithm-runner/skills/clustering-algorithm-runner/assets/config_template.jsonplugins/ai-ml/time-series-forecaster/skills/time-series-forecaster/assets/configuration_template.jsonplugins/ai-ml/classification-model-builder/skills/classification-model-builder/assets/model_config_template.jsonRoot Cause
The common issue was missing commas after property values before
_commentfields:Before (Invalid):
After (Valid):
Additional Changes
Restructured
evaluation_metricsin the clustering config file from an array to an object to properly support_commentfields alongside metric names.Validation
All 7 files have been validated with
Node.js JSON.parse()andjqto ensure they are now valid JSON.Test Plan
🤖 Generated with Claude Code