Back to the catalog

milvus-meme-sticker

zc277584121/marketing-skills · skills.sh

Open source Repository Open in the app JSON README (API)

About

Skill publicada por zc277584121/marketing-skills no skills.sh. Instale com: npx skills add zc277584121/marketing-skills@milvus-meme-sticker

Details

Kind
Agent skills
Topic
Databases
Publisher
zc277584121
Origin
skillssh
Category
ferramentas
Forks
1
Open pull requests
1
Last push
2026-08-28T08:42:29Z
Repository state
ativo
Language
Python
Added
2026-08-30 15:22:21
Updated
2026-09-08 15:04:42
Origin id
zc277584121/marketing-skills/milvus-meme-sticker

README

# marketing-skills

A collection of reusable skills for Claude Code, Codex CLI, and other coding agents — browser automation, content workflows, and more.

## Available Skills

### Browser Automation

| Skill | Description |
|-------|-------------|
| [`chrome-automation`](./skills/chrome-automation/) | Automate Chrome browser tasks using the [agent-browser](https://github.com/vercel-labs/agent-browser) CLI. Navigate pages, fill forms, take screenshots, extract data, and replay Chrome DevTools Recorder exports. |
| [`browser-screenshot`](./skills/browser-screenshot/) | Take focused, region-specific screenshots from web pages using a dedicated headed Chrome profile with persistent login state, then crop to the target region. |

### Video Processing

| Skill | Description |
|-------|-------------|
| [`raw-video-processing`](./skills/raw-video-processing/) | Post-process raw screen recordings by removing silent segments and applying speed adjustments. |
| [`video-to-gif`](./skills/video-to-gif/) | Convert a video to multiple GIF variants with different quality/size tradeoffs for visual comparison. |

### Image Processing

| Skill | Description |
|-------|-------------|
| [`screenshot-compression`](./skills/screenshot-compression/) | Compress PNG/JPEG screenshots in place using pngquant and jpegoptim, keeping original format for maximum compatibility. |
| [`mermaid-to-image`](./skills/mermaid-to-image/) | Convert Mermaid code blocks in Markdown files to PNG images using the mermaid.ink API. |
| [`mermaid-to-gif`](./skills/mermaid-to-gif/) | Convert Mermaid diagrams to animated GIFs with customizable animation styles (progressive reveal, highlight walk, pulse flow). |
| [`image-generation`](./skills/image-generation/) | Generate illustration images for articles and documentation with a Codex-first workflow, OpenAI API fallback, and Gemini fallback. |
| [`milvus-meme-sticker`](./skills/milvus-meme-sticker/) | Create tiny no-text Milvus-style sticker memes for technical articles and community posts. |

### Analytics

| Skill | Description |
|-------|-------------|
| [`github-traffic`](./skills/github-traffic/) | Fetch, store, and visualize GitHub repository traffic data (views, clones, referrers, stars) with trend charts. Requires repo push access. |

### Content Creation

| Skill | Description |
|-------|-------------|
| [`jupyter-notebook-writing`](./skills/jupyter-notebook-writing/) | Write Milvus application-level Jupyter notebook examples using a Markdown-first workflow with jupyter-switch. |
| [`remove-ai-style`](./skills/remove-ai-style/) | Aggressively remove AI-writing patterns with a deterministic bilingual Markdown analyzer, hard zero-tolerance checks for exclamation marks, dashes, and formulaic binary contrasts, full-article semantic review of empty emphasis and reader-mind-reading, and before/after rescanning. |
| [`content-rewrite`](./skills/content-rewrite/) | Adapt content for different platforms (LinkedIn, X, Reddit, English blog, WeChat) with platform-specific tone, format, and length. |

### Publishing

| Skill | Description |
|-------|-------------|
| [`md-to-feishu`](./skills/md-to-feishu/) | Convert local Markdown files to Feishu (Lark) documents with automatic image uploading. Uses the feishu-docx CLI via `uvx`. |

## Quick Start

Install all skills globally to **all supported coding agents** with one command:

```bash
npx skills add zc277584121/marketing-skills --all -g
```

Update to the latest version:

```bash
npx skills update
```

## Installation

Install using [npx skills](https://skills.sh):

### Install to all agents at once

```bash
# Global — available in all projects, all agents
npx skills add zc277584121/marketing-skills --all -g

# Project-level — current project only, all agents
npx skills add zc277584121/marketing-skills --all
```

### Install to a specific agent

```bash
npx skills add zc277584121/marketing-skills -a claude-code -g
npx skills add zc277584121/marketing-skills -a codex -g
npx skills add zc277584121/marketing-skills -a cursor -g
```

Other supported agents: `windsurf`, `github-copilot`, `cline`, `roo`, `gemini-cli`, `goose`, `kilo`, `augment`, `opencode`, and [40+ more](https://skills.sh).

> **Project vs Global**: Without `-g`, skills are installed into the current project directory for the selected agent. With `-g`, they go to that agent's global skills directory and are available across all projects.

## Updating

```bash
# Check for updates
npx skills check

# Update all globally installed skills to latest
npx skills update
```

To update project-level installs, re-run the `npx skills add` command.

More