From 524bb1ebfee51a1b0f14fa51d63477ecc9facda6 Mon Sep 17 00:00:00 2001 From: daymade Date: Sat, 25 Oct 2025 15:32:24 +0800 Subject: [PATCH] Release v1.4.0: Add Cloudflare troubleshooting and UI design system extraction skills MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This release adds two new professional skills to the marketplace: 1. cloudflare-troubleshooting - API-driven Cloudflare diagnostics - Investigate SSL errors, DNS issues, redirect loops - Systematic investigation using Cloudflare API - Bundled scripts for config checking and SSL mode fixes 2. ui-designer - Design system extraction from UI mockups - Extract color palettes, typography, spacing from screenshots - Generate design system documentation - Create implementation-ready UI design prompts Changes: - Updated marketplace.json to register 2 new skills (now 11 total) - Bumped version from 1.3.0 to 1.4.0 - Enhanced .gitignore patterns for archives and build artifacts - Updated metadata description to include new capabilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .claude-plugin/marketplace.json | 24 ++++++++++++++++++++++-- .gitignore | 27 ++++++++++++++++++++++++++- 2 files changed, 48 insertions(+), 3 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 8fed115..15dbbe4 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -5,8 +5,8 @@ "email": "daymadev89@gmail.com" }, "metadata": { - "description": "Professional Claude Code skills for GitHub operations, document conversion, diagram generation, statusline customization, Teams communication, repomix utilities, skill creation, CLI demo generation, and LLM icon access", - "version": "1.3.0", + "description": "Professional Claude Code skills for GitHub operations, document conversion, diagram generation, statusline customization, Teams communication, repomix utilities, skill creation, CLI demo generation, LLM icon access, Cloudflare troubleshooting, and UI design system extraction", + "version": "1.4.0", "homepage": "https://github.com/daymade/claude-code-skills" }, "plugins": [ @@ -99,6 +99,26 @@ "category": "developer-tools", "keywords": ["cli", "demo", "terminal", "vhs", "gif", "recording", "animation", "documentation"], "skills": ["./cli-demo-generator"] + }, + { + "name": "cloudflare-troubleshooting", + "description": "Investigate and resolve Cloudflare configuration issues using API-driven evidence gathering. Use when troubleshooting ERR_TOO_MANY_REDIRECTS, SSL errors, DNS issues, or any Cloudflare-related problems", + "source": "./", + "strict": false, + "version": "1.0.0", + "category": "developer-tools", + "keywords": ["cloudflare", "troubleshooting", "ssl", "dns", "api", "debugging", "devops"], + "skills": ["./cloudflare-troubleshooting"] + }, + { + "name": "ui-designer", + "description": "Extract design systems from reference UI images and generate implementation-ready UI design prompts. Use when users provide UI screenshots/mockups and want to create consistent designs", + "source": "./", + "strict": false, + "version": "1.0.0", + "category": "design", + "keywords": ["ui", "design-system", "mockup", "screenshot", "design-extraction", "mvp"], + "skills": ["./ui-designer"] } ] } diff --git a/.gitignore b/.gitignore index 78b6d94..42bda1b 100644 --- a/.gitignore +++ b/.gitignore @@ -32,7 +32,6 @@ env/ *.swp *.swo *~ -.DS_Store # Testing .pytest_cache/ @@ -51,3 +50,29 @@ temp/ # OS files Thumbs.db .DS_Store + +# Archives (should not be in root) +*.zip +*.tar +*.tar.gz +*.tgz +*.rar +*.7z + +# Build artifacts +*.o +*.a +*.exe +*.dll +*.dylib + +# Documentation artifacts that should be in docs/ +IMPROVEMENT_PLAN.md +IMPLEMENTATION_SUMMARY.md +RELEASE_NOTES_*.md +INSTALLATION.md + +# Backup files +*.bak +*.backup +*~