Token导航 LogoToken导航TokenDH.com
图像处理执行命令clawhub未标认证来源可访问clear审计提醒

log-polish-enus-imageslog Polish enus 图片

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

2,940

周安装

125

GitHub Stars

公开资料未说明

下载量

1,030
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:log-polish-enus-images(log Polish enus 图片)
来源仓库:https://github.com/j3ffyang/log-polish-enus-images
安装命令:
openclaw skills install log-polish-enus-images
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install log-polish-enus-images

简介

将技术博客草稿打磨为英文长文并生成配套英雄图像与章节配图。

  • 适合图像处理与视觉素材生成,保持技术术语与代码完整性。
  • 可用于内容创作、技术传播或多媒体文章生产。
  • 涉及人物或品牌图像时应核对授权与真实性。
  • log-polish-enus-images 属于图像处理类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
blog-polish-eng-images
description
Polish a technical blog draft into an 1000–1200 word, 4-5 section en-US article, preserve technical terms/code, and generate consistent hero + per-section image prompts when the user asks to polish and translate a blog with images.
author
Jeff Yang
version
1.0.0
tags
[openclaw, clawhub, blog, polish, translate, markdown, images, prompts]
triggers
["polish blog", "technical blog images", "blog draft images"]
metadata
openclaw
requires
[]
platforms
["linux", "darwin"]
env
[]
inputSchema
type
object
properties
draftPath
type
string
description
Path to the draft markdown. Defaults to ~/.openclaw/workspace/contentDraft/latestDraft.md
outputDir
type
string
description
Directory to save outputs. Defaults to ~/.openclaw/workspace/contentPolished/
subject
type
string
description
Short subject slug used in output filename (e.g. openclaw-skills). If omitted, infer from the draft title.
style
type
string
description
Visual style phrase reused for ALL images (e.g. "clean flat vector illustration, minimal isometric").
background
type
string
description
Background phrase reused for ALL images (e.g. "white background with subtle grid").
aspectRatioHero
type
string
description
Aspect ratio for hero image (e.g. "16:9 horizontal").
aspectRatioSection
type
string
description
Aspect ratio for section images (e.g. "4:3").
required
[]
outputSchema
type
object
properties
polishedPath
type
string
description
Path to the final polished markdown file.
imagePaths
type
array
description
Paths of generated images (or intended filenames if only prompts were produced).
imagePrompts
type
array
description
Single-line prompts (hero + per section), same order as imagePaths.
workflow
description
Resolve defaults and create timestamp
run
|
description
Read the draft content
run
|
description
Extract title, count words, identify section candidates
run
|
description
Generate polished content following Steps 2-5
run
|
description
Create hero + N prompts matching actual section headings
run
|
description
Emit final structured output for OpenClaw collector
run
|

Blog Polish (en-US) + Image Pack

This skill takes a technical blog draft and turns it into a publish-ready package:

  • Polish: spelling/grammar fixes + clarity improvements
  • Structure: reorganize into 3–4 sections total (not more)
  • Length: final content 1000–1200 words
  • Images: generate a hero prompt + one prompt per section, all in the same style/tone
  • Save: write everything to ~/.openclaw/workspace/contentPolished/ using yymmddhhmm-* naming

When to Use This Skill

When the user asks to polish a technical blog, and create images, you MUST use this skill and follow the workflow below step by step.

Use this when:

  • You already have a draft at ~/.openclaw/workspace/contentDraft/latestDraft.md
  • You want a polished en-US version without losing technical accuracy
  • You want consistent illustrations for the article

Defaults

If not provided via input:

  • draftPath: ~/.openclaw/workspace/contentDraft/latestDraft.md
  • outputDir: ~/.openclaw/workspace/contentPolished/
  • style: clean flat vector illustration, minimal isometric, software-engineering diagram vibe
  • background: white background with subtle grid
  • aspectRatioHero: 16:9 horizontal
  • aspectRatioSection: 16:9 horizontal

Workflow Step-by-Step

Step 0 — Resolve Paths and Timestamp

  1. Resolve defaults:

- draftPath = input.draftPath || "~/.openclaw/workspace/contentDraft/latestDraft.md" - outputDir = input.outputDir || "~/.openclaw/workspace/contentPolished/"

  1. Create a timestamp prefix ts in yymmddhhmm format (Linux/macOS):
date +"%y%m%d%H%M"
  1. Ensure output dir exists (shell is fine):
mkdir -p "~/.openclaw/workspace/contentPolished/"

Step 1 — Read Draft Exactly

Read the draft content in full before editing anything:

read_file --path {{draftPath}}

Step 2 — Extract Title, Topic, and Section Candidates

  1. Identify:

- Draft title (first # heading; otherwise infer a short title) - Main topic and intended audience

  1. Plan a 3–4 section outline (including intro/conclusion counts as sections if they have headings):

- Prefer: short intro, 2–3 core sections, short wrap-up - If the draft is long, merge similar paragraphs - If the draft is messy, reorder paragraphs for a cleaner flow

Step 3 — Polish English (Meaning First)

Before translating, make sure the English content makes sense:

  • Fix misspellings, grammar, punctuation
  • Paraphrase confusing sentences
  • Add missing connective tissue *only* where the meaning is unclear
  • Do not reduce content (no big deletions)

Step 4 — Enforce Length (1000–1200 Words) Without Cutting Meaning

Target final length 1000–1200 words (counting English words approximately by rough equivalence).

To fit without “reducing content”:

  • Tighten redundancy (same idea repeated)
  • Use shorter sentences
  • Prefer combining adjacent sentences that restate the same point

Step 5 — Add Citations If You Introduce Outside Facts

If you add any information that is not clearly present in the draft:

  • Add a short citation marker in text like: [^1]
  • Add a footnotes section at the end:
## References
[^1]: Source title — URL

Step 6 — Generate Image Prompts (Hero + Per Section)

Create one single-line prompt for:

  • Hero image (for the whole post)
  • Each section (exactly one per section heading)

Use this strict ordering and keep the same style/tone across all prompts:

[Section role] of [topic]: [subject] doing [action], in [style], [angle/composition], [lighting/color], [level of detail], [background], [aspect ratio]

Constraints:

  • No text in the image (prefer icons/arrows)
  • Keep a consistent palette (neutral + one accent color)
  • Keep prompts to a single line each

Step 7 — Save Outputs

  1. Decide subject:

- subject = input.subject || slugify(title) (lowercase, hyphens)

  1. Write the polished markdown:

- {{outputDir}}/{{ts}}-{{subject}}.md

  1. Determine image filenames:

- Hero: {{ts}}-main.png - Per section: {{ts}}-section1.png, {{ts}}-section2.png, ...

  1. Save:

- Write the polished .md file via write_file - For images: - If you have an image-generation tool available in your OpenClaw setup, generate and save the actual PNG/JPGs - Otherwise: still create an image-prompts block inside the markdown and return the intended filenames (so you can generate them later)

Output Format (What You Return)

Return:

  • polishedPath
  • imagePaths (actual or intended)
  • imagePrompts (single-line prompts in the same order)

Also print a short summary:

## Summary
- Sections: N
- Length: ~X words
- Images: 1 hero + N section prompts

Example Invocation

User says:

  • “Polish my latest draftand make images.”

You do:

  • Read from ~/.openclaw/workspace/contentDraft/latestDraft.md
  • Produce ~/.openclaw/workspace/contentPolished/2603121010-openclaw-skills.md
  • Produce 2603121010-main.png + 2603121010-section1.png ...

Dependencies

None (pure Markdown in/out). Uses the same file read/write capability as your other skills.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.22%
按下载量换算888

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install log-polish-enus-images 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills