Skills14.5k stars1.7k forks● TypeScriptUpdated today
ClaudeWave Trust Score
70/100
Passed
- ✓Actively maintained (<30d)
- ✓Healthy fork ratio
- ✓Topics declared
- ✓Documented (README)
Flags
- !No license declared
- !No description
Last scanned: 4/14/2026
Install in Claude Desktop
Method detected: NPX · bun
{
"mcpServers": {
"baoyu-skills": {
"command": "npx",
"args": ["-y", "bun"]
}
}
}1. Copy the snippet above.
2. Paste into
~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows).3. Replace any
<placeholder> values with your API keys or paths.4. Restart Claude Desktop. The MCP server appears automatically.
Use cases
🎨 Creative🛠️ Dev Tools📝 Content
About
Skills overview
# baoyu-skills English | [中文](./README.zh.md) Skills shared by Baoyu for improving daily work efficiency with Claude Code. ## Prerequisites - Node.js environment installed - Ability to run `npx bun` commands ## Installation ### Quick Install (Recommended) ```bash npx skills add jimliu/baoyu-skills ``` ### Publish to ClawHub / OpenClaw This repository now supports publishing each `skills/baoyu-*` directory as an individual ClawHub skill. ```bash # Preview what would be published ./scripts/sync-clawhub.sh --dry-run # Publish all changed skills from ./skills ./scripts/sync-clawhub.sh --all ``` ClawHub installs skills individually, not as one marketplace bundle. After publishing, users can install specific skills such as: ```bash clawhub install baoyu-imagine clawhub install baoyu-markdown-to-html ``` Publishing to ClawHub releases the published skill under `MIT-0`, per ClawHub's registry rules. ### Register as Plugin Marketplace Run the following command in Claude Code: ```bash /plugin marketplace add JimLiu/baoyu-skills ``` ### Install Skills **Option 1: Via Browse UI** 1. Select **Browse and install plugins** 2. Select **baoyu-skills** 3. Select the **baoyu-skills** plugin 4. Select **Install now** **Option 2: Direct Install** ```bash # Install the marketplace's single plugin /plugin install baoyu-skills@baoyu-skills ``` **Option 3: Ask the Agent** Simply tell Claude Code: > Please install Skills from github.com/JimLiu/baoyu-skills ### Available Plugin The marketplace now exposes a single plugin so each skill is registered exactly once. | Plugin | Description | Includes | |--------|-------------|----------| | **baoyu-skills** | Content generation, AI backends, and utility tools for daily work efficiency | All skills in this repository, organized below as Content Skills, AI Generation Skills, and Utility Skills | ## Update Skills To update skills to the latest version: 1. Run `/plugin` in Claude Code 2. Switch to **Marketplaces** tab (use arrow keys or Tab) 3. Select **baoyu-skills** 4. Choose **Update marketplace** You can also **Enable auto-update** to get the latest versions automatically.  ## Available Skills Skills are organized into three categories: ### Content Skills Content generation and publishing skills. #### baoyu-xhs-images Xiaohongshu image card series generator. Breaks down content into 1-10 cartoon-style image cards with **Style × Layout** system and optional palette override. ```bash # Auto-select style and layout /baoyu-xhs-images posts/ai-future/article.md # Specify style /baoyu-xhs-images posts/ai-future/article.md --style notion # Specify layout /baoyu-xhs-images posts/ai-future/article.md --layout dense # Combine style and layout /baoyu-xhs-images posts/ai-future/article.md --style notion --layout list # Override palette /baoyu-xhs-images posts/ai-future/article.md --style notion --palette macaron # Direct content input /baoyu-xhs-images 今日星座运势 # Non-interactive (skip all confirmations, for scheduled tasks) /baoyu-xhs-images posts/ai-future/article.md --yes /baoyu-xhs-images posts/ai-future/article.md --yes --preset knowledge-card ``` **Styles** (visual aesthetics): `cute` (default), `fresh`, `warm`, `bold`, `minimal`, `retro`, `pop`, `notion`, `chalkboard`, `study-notes`, `screen-print`, `sketch-notes` **Palettes** (optional color override): `macaron`, `warm`, `neon` **Style Previews**: | | | | |:---:|:---:|:---:| |  |  |  | | cute | fresh | warm | |  |  |  | | bold | minimal | retro | |  |  |  | | pop | notion | chalkboard | **Layouts** (information density): | Layout | Density | Best for | |--------|---------|----------| | `sparse` | 1-2 pts | Covers, quotes | | `balanced` | 3-4 pts | Regular content | | `dense` | 5-8 pts | Knowledge cards, cheat sheets | | `list` | 4-7 items | Checklists, rankings | | `comparison` | 2 sides | Before/after, pros/cons | | `flow` | 3-6 steps | Processes, timelines | **Layout Previews**: | | | | |:---:|:---:|:---:| |  |  |  | | sparse | balanced | dense | |  |  |  | | list | comparison | flow | #### baoyu-infographic Generate professional infographics with 21 layout types and 21 visual styles. Analyzes content, recommends layout×style combinations, and generates publication-ready infographics. ```bash # Auto-recommend combinations based on content /baoyu-infographic path/to/content.md # Specify layout /baoyu-infographic path/to/content.md --layout pyramid # Specify style (default: craft-handmade) /baoyu-infographic path/to/content.md --style technical-schematic # Specify both /baoyu-infographic path/to/content.md --layout funnel --style corporate-memphis # With aspect ratio (named preset or custom W:H) /baoyu-infographic path/to/content.md --aspect portrait /baoyu-infographic path/to/content.md --aspect 3:4 ``` **Options**: | Option | Description | |--------|-------------| | `--layout <name>` | Information layout (20 options) | | `--style <name>` | Visual style (17 options, default: craft-handmade) | | `--aspect <ratio>` | Named: landscape (16:9), portrait (9:16), square (1:1). Custom: any W:H ratio (e.g., 3:4, 4:3, 2.35:1) | | `--lang <code>` | Output language (en, zh, ja, etc.) | **Layouts** (information structure): | Layout | Best For | |--------|----------| | `bridge` | Problem-solution, gap-crossing | | `circular-flow` | Cycles, recurring processes | | `comparison-table` | Multi-factor comparisons | | `do-dont` | Correct vs incorrect practices | | `equation` | Formula breakdown, input-output | | `feature-list` | Product features, bullet points | | `fishbone` | Root cause analysis | | `funnel` | Conversion processes, filtering | | `grid-cards` | Multiple topics, overview | | `iceberg` | Surface vs hidden aspects | | `journey-path` | Customer journey, milestones | | `layers-stack` | Technology stack, layers | | `mind-map` | Brainstorming, idea mapping | | `nested-circles` | Levels of influence, scope | | `priority-quadrants` | Eisenhower matrix, 2x2 | | `pyramid` | Hierarchy, Maslow's needs | | `scale-balance` | Pros vs cons, weighing | | `timeline-horizontal` | History, chronological events | | `tree-hierarchy` | Org charts, taxonomy | | `venn` | Overlapping concepts | **Layout Previews**: | | | | |:---:|:---:|:---:| |  |  |  | | bridge | circular-flow | comparison-table | |  |  |  | | do-dont | equation | feature-list | |  |  |  | | fishbone | funnel | grid-cards | |  |  |  | | iceberg | journey-path | layers-stack | |  |  |  | | mind-map | nested-circles | priority-quadrants | |  |  |  | | pyramid | scale-balance | timeline-horizontal | |  |  | | | tree-hierarchy | venn | | **Styles** (visual aesthetics): | Style | Description | |-------|-------------| | `craft-handmade` (Default) | Hand-drawn illustration, paper craft aesthetic | | `claymation` | 3D clay figures, playful stop-motion | | `kawaii` | Japanese cute, big eyes, pastel colors | | `storybook-watercolor` | Soft painted illustrations, whimsical | | `chalkboard` | Colorful chalk on black board | | `cyberpunk-neon` | Neon glow on dark, futuristic | | `bold-graphic` | Comic style, halftone dots, high contrast | | `aged-academia` | Vintage science, sepia sketches | | `corporate-memphis` | Flat vector people, vibrant fills | | `technical-schematic` | Blueprint, isometric 3D, engineering | | `origami` | Folded paper forms, geometric | | `pixel-art` | Retro 8-bit, nostalgic gaming | | `ui-wireframe` | Grayscale boxes, interface mockup | | `subway-map` | Transit diagram, colored lines | | `ikea-manual` | Minimal line art, assembly style | | `knolling` | Organized flat-lay, top-down | | `lego-brick` | Toy brick construction, playful | **Style Previews**: | | | | |:---:|:---:|:---:| |  | ![claymation](./screenshots/infographic-styles/claymati
Topics
agent-skillsclaude-skillscodex-skillsopenclaw-skills
Related
More Skills
ComposioHQ
awesome-claude-skills
·74
A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows
53.8k5.8kPython· 1mo ago
Skillsagent-skillsai-agents
code-yeongyu
oh-my-openagent
·68
omo; the best agent harness - previously oh-my-opencode
51.5k4.1kTypeScript· today
Skillsaiai-agents
farion1231
cc-switch
✓87
A cross-platform desktop All-in-One assistant tool for Claude Code, Codex, OpenCode, openclaw & Gemini CLI.
44.7k2.8kRust· today
Skillsai-toolsclaude-code
sickn33
antigravity-awesome-skills
✓79
Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
33k5.5kPython· today
Skillsagent-skillsagentic-skills
OthmanAdi
planning-with-files
✓100
Claude Code skill implementing Manus-style persistent markdown planning — the workflow pattern behind the $2B acquisition.
18.7k1.7kPython· 5d ago
Skillsadalagent
K-Dense-AI
scientific-agent-skills
✓97
A set of ready to use Agent Skills for research, science, engineering, analysis, finance and writing.
18.4k2.1kPython· today
Skillsagent-skillsai-scientist