Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
freestylefly avatar

Wechat Article Extractor

  • 1 installs
  • 6 repo stars
  • Updated February 19, 2026
  • freestylefly/third-image-skill

This is a copy of wechat-article-extractor by freestylefly - installs and ranking accrue to the original listing.

Helps with ai & agent building tasks.

About

wechat-article-extractor is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • wechat-article-extractor
  • AI & Agent Building
  • AI-coding skill

Wechat Article Extractor by the numbers

  • 1 all-time installs (skills.sh)
  • Data as of Jul 24, 2026 (Skillselion catalog sync)
npx skills add https://github.com/freestylefly/third-image-skill --skill wechat-article-extractor

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars6
Last updatedFebruary 19, 2026
Repositoryfreestylefly/third-image-skill

What it does

Helps with ai & agent building tasks.

Files

canghe-image-gen/SKILL.mdMarkdownGitHub ↗

Canghe Image Generation

Generate images using the Canghe AI API with gemini-3-pro-image-preview model.

⚠️ 需要 API Key

>

使用本 skill 前,请先访问 https://api.canghe.ai/ 注册并获取 API Key。
获取后通过环境变量 CANGHE_API_KEY--api-key 参数传入。

API Information

  • Endpoint: https://api.canghe.ai/v1/chat/completions
  • Model: gemini-3-pro-image-preview
  • Method: POST

Request Format

{
  "model": "gemini-3-pro-image-preview",
  "messages": [
    {
      "role": "user",
      "content": [
        {
          "type": "text",
          "text": "Image generation prompt"
        },
        {
          "type": "image_url",
          "image_url": {
            "url": "reference image URL (optional)"
          }
        }
      ]
    }
  ],
  "max_tokens": 4096
}

Usage

Text-to-Image

Generate image from text prompt only:

python3 scripts/generate_image.py "A beautiful sunset over mountains"

Image-to-Image (with reference)

Generate image using a reference image:

python3 scripts/generate_image.py "Transform this into oil painting style" --reference /path/to/image.jpg

Or with URL:

python3 scripts/generate_image.py "Add cyberpunk elements" --reference-url "https://example.com/image.jpg"

Programmatic Usage

from scripts.generate_image import generate_image

# Text-to-image
result = generate_image("A cute cat wearing a hat")
print(result["image_url"])

# With reference image
result = generate_image("Make this watercolor style", reference_image_path="/path/to/image.jpg")
print(result["image_url"])

Authentication

获取 API Key: 访问 https://api.canghe.ai/ 注册账号并获取 API Key。

设置 API Key 的方式:

export CANGHE_API_KEY="your-api-key-here"

Or pass it as a command-line argument:

python3 scripts/generate_image.py "prompt" --api-key "your-api-key"

Output

The API returns an image URL that can be downloaded or displayed. The script will: 1. Save the generated image to the specified output path 2. Print the image URL 3. Return metadata about the generation

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.