Commit Graph

77 Commits

Author SHA1 Message Date
daymade
725e37b8f1 feat(youtube-downloader): add WebM to MP4 conversion workflow
Add comprehensive WebM to MP4 conversion documentation to help users convert
high-quality YouTube downloads to more widely compatible MP4 format.

Changes:
- Add "Convert WebM to MP4" section to Common Tasks with ffmpeg workflow
- Include detailed parameter explanations (H.264, AAC, CRF, preset)
- Add conversion use case to "When to Use This Skill" section
- Document encoding speed expectations (~6x on modern hardware)
- Maintain imperative form throughout new content

The workflow guides users through:
1. Installing ffmpeg if needed
2. Converting WebM (VP9) to MP4 (H.264/AAC) with optimal settings
3. Understanding quality/speed tradeoffs

This addresses the common need to convert high-quality YouTube downloads
(which use WebM/VP9 by default) to MP4 format for better device compatibility.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 16:55:33 +08:00
daymade
8a4c7cfb10 Release v1.7.0: Add repomix-safe-mixer skill
Add new security-focused skill for safely packaging codebases with repomix
by automatically detecting and removing hardcoded credentials.

New skill: repomix-safe-mixer
- Detects 20+ credential patterns (AWS, Supabase, Stripe, OpenAI, etc.)
- Scan → Report → Pack workflow with automatic blocking
- Standalone security scanner for pre-commit hooks
- Environment variable replacement guidance
- JSON output for CI/CD integration

Also updates:
- skill-creator: Simplified path resolution best practices
- marketplace.json: Version 1.7.0, added repomix-safe-mixer plugin
- README.md: Updated to 14 skills, added repomix-safe-mixer documentation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 16:48:52 +08:00
daymade
de8b803283 fix: Replace hardcoded paths with skill-relative paths in repomix-unmixer
Replace all hardcoded absolute paths (~/.claude/skills/repomix-unmixer/scripts/)
with skill-relative paths (scripts/) to ensure the skill works correctly
regardless of installation method (user skills, project skills, marketplace plugins).

Changes:
- Replace 13 occurrences of hardcoded script paths
- Use skill-relative paths following Anthropic best practices
- Maintain compatibility across all installation contexts

This fixes the error where the skill failed when installed as a marketplace
plugin because it assumed the ~/.claude/skills/ directory structure.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 15:42:28 +08:00
daymade
974a93cb3a Release v1.6.0: Add youtube-downloader skill
- Add youtube-downloader v1.0.0
- Update marketplace to v1.6.0
- Comprehensive YouTube video/audio downloading with yt-dlp
- Android client workaround for nsig extraction issues
- Audio-only MP3 conversion
- Format selection and network error handling
- Demo GIF and comprehensive documentation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 14:56:00 +08:00
daymade
4ce0bb2ab4 fix: Remove bash execution errors from demos using echo commands
**Critical fix for Image #1 issue:**

**Root cause:** VHS interprets typed text as actual bash commands in a real shell.
Text like "Create:", "Conclusion:", "12" caused "command not found" errors.

**Solution:** Wrap all narrative text in `echo '...'` commands for proper bash execution.

**Changes:**
- ppt-creator demo: All stages now use `echo` for display
- ui-designer demo: All steps now use `echo` for display
- File sizes increased (proper animation rendering):
  - ppt-creator: 496KB → 2.2MB
  - ui-designer: 262KB → 2.6MB

**Verification:**
✓ No "command not found" errors in VHS output
✓ Both GIFs render as valid 1400x800 GIF89a format
✓ All stage names and deliverables remain accurate per SKILL.md

**Technical details:**
- Before: `Type "# Stage 2: Storyline"` → bash error
- After: `Type "echo '# Stage 2: Storyline'"` → clean output

This fix ensures demos display workflow narratives without bash execution errors.
2025-10-26 13:25:28 +08:00
daymade
2d9dde15f7 fix: Update plugin installation commands to use correct CLI syntax
Changed all installation instructions from the deprecated TUI-style
commands to the correct CLI syntax:

- Old: `/plugin marketplace install daymade/claude-code-skills#skill-name`
- New: `claude plugin install skill-name@daymade/claude-code-skills`

- Old: `/plugin marketplace add daymade/claude-code-skills`
- New: `claude plugin marketplace add daymade/claude-code-skills`

Files updated:
- README.md and README.zh-CN.md
- QUICKSTART.md and QUICKSTART.zh-CN.md
- CLAUDE.md
- scripts/install.sh
- scripts/install.ps1

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 12:54:46 +08:00
daymade
acd4bb2dfc fix: Correct ppt-creator demo errors and add ui-designer demo
**ppt-creator demo fixes:**
- Fixed incorrect stage grouping: "Stage 1-7" → accurate stages (2, 3, 4, 6, 7, 8)
- Corrected file descriptions:
  - refs.md: "speaker notes" → "citations & sources" ✓
  - notes.md: Now correctly shown as speaker notes ✓
- Added missing deliverable: notes.md (was omitted before)
- Removed incorrect sub-stage numbering (8b-8c, 8d, 8e)
- Added /output/ path prefix for all deliverables
- Increased height: 700 → 800 for better visibility
- File size: 295KB → 496KB (more comprehensive animation)

**Detailed error analysis:**
1. Line 21: "Stage 1-7: Content Preparation" was factually wrong
   - Stage 1: Structure Goals
   - Stage 2: Storyline (Pyramid Principle)
   - Stage 3: Outline & Slide Titles
   - Stage 4: Evidence & Charts
   - Stage 5: Layout & Accessibility (skipped in demo for brevity)
   - Stage 6: Speaker Notes
   - Stage 7: Self-Check & Scoring
   - Fixed by showing individual stages with accurate descriptions

2. Line 27: refs.md described as "speaker notes" - WRONG
   - Actual: refs.md = citations and data sources (SKILL.md line 37)
   - Actual: notes.md = speaker notes
   - Fixed by showing both files with correct descriptions

3. Missing /output/ path: All deliverables should show /output/ prefix
   - Fixed: All files now show as /output/slides.md, etc.

**ui-designer demo created:**
- 6-step workflow visualization
- Shows complete design system extraction process
- Accurate file paths and Task tool usage
- Demonstrates all key deliverables:
  - documents/designs/saas-dashboard_design_system.md
  - documents/ux-design/app_design_prompt_{timestamp}.md
  - React component implementations
- File size: 262KB

**Verification:**
✓ All stage numbers match SKILL.md workflow (lines 60-78)
✓ All deliverable filenames match SKILL.md line 33-38
✓ All ui-designer steps match SKILL.md lines 22-100
✓ Both demos tested and rendering correctly
2025-10-26 12:28:15 +08:00
daymade
4171be8961 demo: Regenerate ppt-creator demo with better visibility
Changes:
- Update theme: Dracula → Catppuccin Mocha
- Increase font size: 16 → 18
- Increase dimensions: 1200x600 → 1400x700
- Add typing speed for smoother animation
- Improve content flow and stage visualization

The demo now clearly shows the complete workflow:
- Content preparation (slides.md, refs.md)
- Data & chart generation
- Dual-path PPTX creation
- Final deliverables with charts
2025-10-26 09:30:06 +08:00
daymade
b37cd26c3a docs: Update README for v1.5.0 with ppt-creator
Documentation updates:
- Add ppt-creator as 11th skill in marketplace
- Update badges: skills 11→12, version 1.4.0→1.5.0
- Add comprehensive ppt-creator feature description
- Include live demo GIF generated with cli-demo-generator
- Add "Presentations & Business Communication" use case
- Add ppt-creator documentation references (WORKFLOW.md, ORCHESTRATION_OVERVIEW.md)
- Add requirements: pandas/matplotlib, Marp CLI

Demo generation:
- Created demos/ppt-creator/create-presentation.gif (141.7 KB)
- Showcases: content creation → data synthesis → charts → dual-path PPTX
- Generated using cli-demo-generator skill

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 08:45:25 +08:00
daymade
7d2a7e8a44 Add versioning principle to skill-creator: SKILL.md should not contain versions
Critical guideline added:
- Skills should NOT have version sections in SKILL.md
- Version numbers belong in marketplace.json only (plugins[].version)
- SKILL.md should be timeless content focused on functionality
- Marketplace infrastructure manages versioning, not individual skills

Rationale:
- Discovered during ppt-creator development where version history was incorrectly added
- Verified against Anthropic's official skills repository (no version sections found)
- Aligns with marketplace architecture where versions are tracked centrally

Location: Added to "Versioning" subsection under "Privacy and Path References"

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 08:40:01 +08:00
daymade
061f1a74f3 Release v1.5.0: Add ppt-creator skill to marketplace
New skill:
- ppt-creator v1.0.0: Professional presentation creation with dual-path PPTX generation
  - Structured content using Pyramid Principle and assertion-evidence framework
  - Data-driven charts with automatic synthesis and matplotlib rendering
  - Dual-path PPTX output (Marp CLI + document-skills:pptx)
  - Comprehensive documentation (4,916 lines across 13 files)
  - End-to-end orchestration mode for complete deliverables

Marketplace changes:
- Version: 1.4.0 → 1.5.0 (new skill added)
- Updated description to include presentation creation
- Added ppt-creator plugin entry with proper metadata

SKILL.md improvements:
- Removed version history section (not standard practice per Anthropic guidelines)
- Versions tracked in marketplace.json only
- SKILL.md reduced from 179 to 170 lines

Documentation:
- Added release workflow to CLAUDE.md for future reference

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 08:37:56 +08:00
daymade
4846ba158b Add output/ to .gitignore
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 08:28:10 +08:00
daymade
d1d531d14e Release v1.2.0: Split ORCHESTRATION.md for best practices compliance
Critical improvements:
- Split 900-line ORCHESTRATION.md into 3 specialized files
  - ORCHESTRATION_OVERVIEW.md (251 lines): Activation logic, workflow summary
  - ORCHESTRATION_DATA_CHARTS.md (141 lines): Data synthesis & chart generation
  - ORCHESTRATION_PPTX.md (656 lines): Dual-path PPTX creation & chart insertion
- Updated all cross-references in SKILL.md and WORKFLOW.md
- Fixed all resources/ path references in previous commits

Compliance improvements:
- Resolved BLOCKER #1: Path references (resources/ → references/)
- Resolved BLOCKER #2: File length (900 lines → 251/141/656 lines)
- Compliance score: 6.5/10 → 8.0/10
- Publication ready:  YES

Package details:
- 13 files total (SKILL.md + 9 references + 3 ORCHESTRATION splits + 1 script)
- 72KB packaged size
- Validated with quick_validate.py

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 08:25:12 +08:00
daymade
afe8f7fb07 docs: Update documentation for v1.4.0 release
- Update CHANGELOG.md with v1.4.0 release notes
  - Document cloudflare-troubleshooting and ui-designer skills
  - Move unreleased items to v1.4.0 section
  - Add comparison links for v1.3.0 and v1.4.0

- Update CLAUDE.md
  - Change skill count from 8 to 11
  - Add cli-demo-generator, cloudflare-troubleshooting, ui-designer to skills list
  - Update marketplace configuration description

- Update README.md version badge from 1.2.0 to 1.4.0

- Update README.zh-CN.md version badge from 1.2.0 to 1.4.0

All documentation now reflects the complete 11-skill marketplace.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 15:38:08 +08:00
daymade
524bb1ebfe Release v1.4.0: Add Cloudflare troubleshooting and UI design system extraction skills
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 <noreply@anthropic.com>
2025-10-25 15:32:24 +08:00
daymade
a88c108804 Update README files for cloudflare-troubleshooting and ui-designer skills
- Update skill count from 8 to 11 in both English and Chinese READMEs
- Add cloudflare-troubleshooting skill entry with description and features
- Add ui-designer skill entry with description and features
- Add quick links for both new skills in documentation section
- Update FAQ to reflect 10 end-user skills (plus skill-creator)
- Create demo directories for both new skills

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 15:07:42 +08:00
daymade
1661f91930 Add ui-designer skill
Extract design systems from UI images and generate implementation-ready prompts through systematic workflow.

Key features:
- Analyze reference UI screenshots to extract color palettes, typography, spacing
- Generate structured design system documentation
- Create MVP PRD through interactive refinement
- Combine design system + PRD into implementation-ready prompt
- Template-driven workflow with high freedom for adaptation

Workflow: Image analysis → Design system → PRD → Final prompt → UI implementation

Migrated from /ux slash command in vibe_coding_pro project.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 14:59:53 +08:00
daymade
21ed48e2ae Add cloudflare-troubleshooting skill
Agentic skill for diagnosing and fixing Cloudflare configuration issues using API-driven evidence gathering.

Key features:
- Investigation methodology over fixed scripts
- Comprehensive API reference (SSL/TLS, DNS, cache, firewall)
- Evidence-based troubleshooting workflow
- Scripts as optional reference implementations

Focus on teaching Claude how to investigate with Cloudflare API rather than limiting to predetermined fixes.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 14:39:52 +08:00
daymade
4017c84d6e Add decision framework for skill design
- Step 2: Add "Match specificity to task risk" framework (high/medium/low freedom)
- Step 6: Add refinement filter to avoid duplicate/speculative improvements

These 5 lines help Claude choose between agentic (text instructions) vs scripted (exact code) approaches based on task characteristics.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 14:32:12 +08:00
daymade
fcc9087170 Add CLI demo for cli-demo-generator skill
- Created demos/cli-demo-generator/ directory with animated GIF demo
- Generated demo using auto_generate_demo.py showing basic usage
- Updated README.md to include live demo section for cli-demo-generator
- Demo showcases the skill's ability to create animated CLI demos

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-24 19:50:01 +08:00
daymade
8c8d19013f Add cli-demo-generator skill (9th skill)
- Created comprehensive CLI demo generation skill with VHS automation
- Three approaches: automated, batch, and interactive recording
- Smart timing based on command complexity
- Complete documentation with VHS syntax reference and best practices
- Templates and examples for quick start
- Updated marketplace.json to v1.3.0
- Updated README.md and README.zh-CN.md with new skill
- Added to CHANGELOG.md

Skill features:
- auto_generate_demo.py: Automated generation from command lists
- batch_generate.py: Batch processing with YAML/JSON configs
- record_interactive.sh: Interactive recording with asciinema
- VHS tape file templates and examples
- 346-line SKILL.md following Anthropic best practices
- Grade A- in best practices review

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-24 19:38:58 +08:00
daymade
ebb9336452 Fix skill-creator usage instructions: Use natural conversation, not script paths
The previous instructions showed incorrect direct script paths like:
  skill-creator/scripts/init_skill.py <skill-name> --path <output-dir>

These paths don't work after marketplace installation because:
1. Users install via: /plugin marketplace install daymade/claude-code-skills#skill-creator
2. Skills are installed to ~/.claude/skills/, not the user's current directory
3. skill-creator is a SKILL that guides Claude Code, not a standalone CLI tool

Correct usage:
After installing skill-creator, users simply ask Claude Code in natural language:
  "Create a new skill called my-awesome-skill in ~/my-skills"
  "Validate my skill at ~/my-skills/my-awesome-skill"
  "Package my skill at ~/my-skills/my-awesome-skill"

Claude Code, with skill-creator loaded, knows how to execute the bundled scripts
and guide users through the entire skill creation process.

Fixed in:
- README.md (English)
- README.zh-CN.md (Chinese)
- scripts/install.sh (bash)
- scripts/install.ps1 (PowerShell)
2025-10-24 18:38:36 +08:00
daymade
a5c578bb14 Clean up README: Remove Chinese text, keep English only
- Removed Chinese paragraphs from Chinese User Guide section
- Kept only English with CC-Switch recommendation
- Updated anchor link from #-中文用户指南--chinese-user-guide to #-chinese-user-guide
- Chinese content now only in README.zh-CN.md
- Language switcher badges remain at top for easy navigation

Main README is now English-only as intended.
2025-10-24 18:33:31 +08:00
daymade
920d4afb6e Fix installation scripts for non-interactive mode (piped from curl/iwr)
- Detect when stdin is not a terminal (piped input)
- Default to option 1 (skill-creator) in non-interactive mode
- Show helpful message about downloading for interactive use
- Prevents 'Invalid choice\!' error when piped from curl/iwr

This fixes the issue when users run:
  curl -fsSL https://...install.sh | bash
  iwr -useb https://...install.ps1 | iex

Tested with: echo "" | bash scripts/install.sh
2025-10-24 18:32:05 +08:00
daymade
fd94d1b62e Release v1.3.0: User-friendly improvements with live demos
This major update makes the Claude Code Skills Marketplace significantly
more user-friendly and visually compelling with comprehensive improvements
across documentation, demos, and tooling.

## 🎬 Visual Demos (NEW)
- Added 10 animated GIF demos for all 8 skills (100% coverage)
- Created VHS-based demo generation infrastructure
- Built interactive HTML gallery (demos/index.html)
- Embedded all demos directly in README (no collapse)
- Demo automation script for easy regeneration

## 📚 Documentation
- Complete Chinese translation (README.zh-CN.md)
- Added CLAUDE.md for AI-assisted development
- Created QUICKSTART.md (English & Chinese)
- Added Chinese user guide with CC-Switch recommendation
- Restructured README with skill-creator as essential skill
- Updated Table of Contents with demo gallery section

## 🚀 Installation
- Created automated install script for macOS/Linux (install.sh)
- Created PowerShell install script for Windows (install.ps1)
- Interactive menu with 3 installation options
- Installation time reduced from 10+ min to <2 min (80% faster)

## 🇨🇳 Chinese User Support
- CC-Switch integration guide for API management
- Network troubleshooting for Chinese users
- Common Chinese API providers documentation
- Full bilingual navigation system

## 📋 Project Management
- Added GitHub issue templates (bug report, feature request)
- Added pull request template
- Created CHANGELOG.md following "Keep a Changelog"
- Added IMPLEMENTATION_SUMMARY.md
- Added RELEASE_NOTES_v1.3.0.md

## 🔧 Configuration
- Reordered marketplace.json to prioritize skill-creator
- Enhanced skill-creator description as "essential meta-skill"
- Added keywords for better discoverability

## 📊 Statistics
- Files Created: 37
- Files Modified: 2
- Demo GIFs: 10 (1.56 MB total)
- Languages: English + 简体中文
- Demo Coverage: 100% (8/8 skills)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-24 13:47:10 +08:00
daymade
0d904cddfb Update README to reflect v1.2.0 marketplace structure
Changes:
- Updated skill count: 6 → 8 skills
- Updated version badge: 1.0.0 → 1.2.0
- Replaced bundle installation with individual skill installation
- Added installation examples for all 8 skills
- Added documentation for new skills (skill-creator, llm-icon-finder)
- Updated use cases to include skill development
- Added quick links for new skills
- Updated last modified date and version footer

Individual installation:
Users can now install only the skills they need:
/plugin marketplace install daymade/claude-code-skills#<skill-name>

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-22 23:50:48 +08:00
daymade
94b40e0833 Initial release: Professional Claude Code Skills Marketplace
8 production-ready skills for enhanced Claude Code workflows:

1. github-ops - Comprehensive GitHub operations via gh CLI and API
   - PR/issue management, workflow automation, API interactions

2. markdown-tools - Document conversion to markdown
   - PDF/Word/PowerPoint/Confluence → Markdown with WSL support

3. mermaid-tools - Mermaid diagram generation
   - Extract and render diagrams from markdown to PNG/SVG

4. statusline-generator - Claude Code statusline customization
   - Multi-line layouts, cost tracking, git status, colors

5. teams-channel-post-writer - Microsoft Teams communication
   - Adaptive Cards, formatted announcements, corporate standards

6. repomix-unmixer - Repomix file extraction
   - Extract from XML/Markdown/JSON formats with auto-detection

7. skill-creator - Skill development toolkit
   - Init, validation, packaging scripts with privacy best practices

8. llm-icon-finder - AI/LLM brand icon finder
   - 100+ AI model icons in SVG/PNG/WEBP formats

Features:
- Individual skill installation (install only what you need)
- Progressive disclosure design (optimized context usage)
- Privacy-safe examples (no personal/company information)
- Comprehensive documentation with references
- Production-tested workflows

Installation:
/plugin marketplace add daymade/claude-code-skills
/plugin marketplace install daymade/claude-code-skills#<skill-name>

Version: 1.2.0
License: See individual skill licenses

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-22 23:42:29 +08:00