fix(skills): rewrite custom-code-management with full workflow and missing sections#20
Merged
yan-xie-webflow merged 2 commits intomainfrom Apr 7, 2026
Merged
Conversation
…ssing sections The custom-code-management skill was severely underdeveloped compared to all other MCP-based skills (~50 lines vs 150-600+). This rewrite: - Adds webflow_guide_tool as first step (was completely missing) - Adds phased workflow: Discovery → Analysis → Planning → Execution → Verification - Adds Examples section with 5 concrete examples (view, add GTM, remove all, chat widget, page-level) - Adds Guidelines section (script rules, confirmation requirements, scope, safety, errors) - Adds page-level script operations (get_page_script, upsert_page_script, delete_all_page_scripts) - Fixes header casing: "Important note" → "Important Note" - Adds explicit confirmation gates before all mutations Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Same coverage, tighter format: compressed examples into shorthand flows, merged guidelines into a single flat list. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
viratatwebflow
approved these changes
Apr 6, 2026
Collaborator
viratatwebflow
left a comment
There was a problem hiding this comment.
Looks much more clean now!
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.
Summary
Rewrite of the
custom-code-managementskill — the most underdeveloped skill in the repo (~50 lines, missing required sections). Now ~90 lines with full coverage.What was wrong
webflow_guide_tool(only MCP skill without it)## Examplessection (required by CONTRIBUTING.md)## Guidelinessection (required by CONTRIBUTING.md)get_page_script,upsert_page_script,delete_all_page_scripts)## Important note→## Important Note)All original guidance preserved
register (store) → apply (attach)conceptlist_registered_scripts/list_applied_scriptsadd_inline_site_scriptwith displayName, sourceCode, version, location, canCopydelete_all_site_scripts— no selective delete<script>tags (Webflow adds them)displayName + versionmust be uniqueWhat's new
webflow_guide_toolas first stepget_page_script,upsert_page_script,delete_all_page_scripts🤖 Generated with Claude Code