Token导航 LogoToken导航TokenDH.com
开发权限需确认clawhub未标认证来源可访问clear审计提醒

blog-polish-en-astro-cn博客波兰 en astro cn

Agent Skill

blog-polish-en-astro-cn 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,822

周安装

120

GitHub Stars

公开资料未说明

下载量

989
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install blog-polish-en-astro-cn

简介

博客波兰 en astro cn 将技术草稿译为英文和简体中文,输出千字左右的结构化 Markdown 文章。

  • 适合需要双语技术文档产出的场景,保留术语准确性和代码完整性。
  • 核心能力包括语言转换、章节划分、技术校验,支持多节内容均衡分布。
  • 使用时需确认原文档编码、目标字数及术语表,避免机器翻译失真。
  • 建议人工校对关键段落,确保专业表达无误。

SKILL.md

name
blog-polish-en-astro-cn
description
Polish and translate a technical blog draft into a 1000–1200 word, 4-5 section Markdown article in English and Simplified Chinese (zh-CN), preserving technical terms and code blocks. Then convert the English edition into Astro markdown compatible
author
Jeff Yang
version
1.0.12
tags
[openclaw, clawhub, blog, polish, translate, linux, markdown]
metadata
openclaw
requires
["jq"]
platforms
["linux", "darwin"]
entrypoint
skill
inputSchema
type
object
properties
draftPath
type
string
description
Path to the draft markdown file.
default
~/.openclaw/workspace/contentDraft/latestDraft.md
outputDir
type
string
description
Directory where polished file is saved.
default
~/.openclaw/workspace/contentPolished/
required
["draftPath", "outputDir"]
outputSchema
type
object
properties
outputPath
type
string
description
Path to the final polished markdown file.
required
["outputPath"]
workflow
description
Set defaults and create timestamp
run
|
description
Check if draftPath exists
run
|
description
Create Astro-compatible slug from filename or title
run
|
description
Define output filename variable
run
|
inputs
["draftPath"]
outputs
["draftText"]
description
LLM: Polish grammar in English → Save to ${outputDir}/${ts}-${slug}_eng.md
inputs
["draftText", "ts", "outputDir"]
outputs
["outputPath"]
llm
true # or specific model
set_output
engOutputPath
post
|
description
LLM: Polish grammar in Simplified Chinese > Translate in Simplified → Save to ${outputDir}/${ts}-${slug}_chn.md
inputs
["outputPath", "ts", "outputDir"]
outputs
["outputPath"]
llm
true # or specific model
set_output
chnOutputPath
post
|
description
Inject standard Astro YAML header into polished file
run
|

title: "${title:-Generated by OpenClaw}" date: $(date -Iseconds) tags: ${tagsYAML} image: ./hero.png


$(cat "$polishedFile") EOF

mkdir -p "${outputDir}/${ts}-${slug}/images/" save_state outputPath "$outputFile"

- name: finalize description: Emit polished path only run: |

outputPath=$(load_state outputPath)

jq -n --arg outputPath "$outputPath" '{ outputPath: $outputPath }'

engOutputPath=$(load_state engOutputPath) chnOutputPath=$(load_state chnOutputPath) outputPath=$(load_state outputPath) jq -n \ --arg engOutputPath "$engOutputPath" \ --arg chnOutputPath "$chnOutputPath" \ --arg astroPath "$outputPath" \ '{ engOutputPath: $engOutputPath, chnOutputPath: $chnOutputPath, astroPath: $astroPath }'


Blog Polish (en-US and zh-CN)

This skill polishes a technical blog draft and translates it to English and then Simplified Chinese while preserving technical accuracy.

When to Use

Use when the user asks to polish/translate a technical blog draft to zh-CN without images. Triggers: "polish my draft", "translate blog to Chinese", "enhance latestDraft.md".

Defaults

  • draftPath: ~/.openclaw/workspace/contentDraft/latestDraft.md
  • outputDir: ~/.openclaw/workspace/contentPolished/
  • Output filename: ${ts}-polished.md or ${ts}-${subject}.md

Workflow Summary

Draft → Check → Polish (EN) → Translate (ZH) → Convert EN to Astro format → Emit path JSON.

  1. Resolve paths + create timestamp (date +"%y%m%d%H%M")
  2. Read draft from draftPath
  3. Polish English: Fix grammar/spelling, improve clarity, structure into 4-5 sections, target 1000-1200 words
  4. Translate to zh-CN: Preserve code blocks, inline code, technical terms (openclaw, skill, cli)
  5. Save polished markdown to ${outputDir}/${ts}-polished.md
  6. Return: { outputPath: "/full/path/to/file.md" }

Output

Example

Input: ~/.openclaw/workspace/contentDraft/latestDraft.md { "outputPath": "~/.openclaw/workspace/contentPolished/2603142134-openclaw-skills.md" }

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.14%
按下载量换算842

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills