Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计提醒

zennzenn 命令行

Agent Skill

zenn 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,344

周安装

468

GitHub Stars

公开资料未说明

下载量

3,707
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install zenn

简介

通过在 GitHub 连接的存储库中管理 Markdown(推送/PR -> 合并)并使用 Zenn CLI 预览来发布 Zenn 文章。

SKILL.md

name
zenn_github
description
Publish Zenn articles by managing Markdown in a GitHub-connected repository (push/PR -> merge) and previewing with Zenn CLI.

Zenn: GitHub Push/PR Publishing

Overview

Zenn publishes by syncing a GitHub repository. Articles/books are Markdown files placed in specific directories, and Zenn CLI helps you preview and scaffold content locally.

This skill defines an operational workflow that is both fast and safe:

  • Draft in PRs (published: false)
  • Review with local preview (zenn preview)
  • Publish by flipping published: true once the PR is ready

Inputs to collect

  • Repo path (local clone) and GitHub remote
  • Publishing branch (the branch connected to Zenn)
  • Article metadata: title, emoji, type (tech or idea), topics, published
  • Slug / filename for the Markdown file (kebab-case recommended)
  • Assets (images) location strategy (recommended: images/<slug>/...)

File placement rules (Zenn)

  • Articles must be placed under articles/ as individual .md files.
  • (Optional) Books are placed under books/.

Recommended repo layout:

.
├─ articles/
│  └─ 20260216-openclaw-to-zenn.md
├─ books/                # optional
└─ images/               # optional, recommended
   └─ openclaw-to-zenn/
      ├─ cover.png
      └─ diagram.png

Zenn CLI usage (local)

Install / init (one-time per repo)

If Zenn CLI is not set up yet in the repo:

npm init --yes
npm install zenn-cli
npx zenn init

Preview locally

npx zenn preview

Create new content

npx zenn new:article
npx zenn new:book

List existing content

npx zenn list:articles
npx zenn list:books

Article template (copy/paste)

Create articles/<slug>.md:

---
title: "記事タイトル"
emoji: "🧩"
type: "tech" # tech or idea
topics: ["ruby", "rails", "ai"]
published: false
---

## TL;DR
- ...
- ...
- ...

## 背景
...

## 実装 / 検証
...

## 学び
...

## 参考
- ...

Notes:

  • Title is in front matter, so body headings should generally start at ##.
  • Keep topics to a small, consistent set for series-building.

Standard workflow (recommended)

1) Draft in a feature branch

  1. Create or edit articles/<slug>.md (keep published: false)
  2. Add images (if any) under images/<slug>/...
  3. Preview locally:
   npx zenn preview

2) Open a PR

git checkout -b article/<slug>
git add articles/<slug>.md images/<slug>/
git commit -m "Add draft: <title>"
git push -u origin article/<slug>

Open a PR into the Zenn publishing branch.

3) Publish safely

Option A (safest): publish in a second tiny PR/commit

  1. Merge the draft PR (still published: false)
  2. Flip to published: true and merge a small PR

Option B (fast): publish in the same PR

  • Keep published: false during writing/review
  • Flip to true right before merging

Quality gate checklist (minimum)

Before setting published: true, verify:

  • No confidential info (customer names, internal URLs, unreleased metrics)
  • Code blocks are runnable or clearly labeled as pseudo-code
  • Images render and paths are correct
  • Links are correct
  • Spelling / headings / formatting are acceptable

Troubleshooting

  • Preview differs from Zenn web or CLI shows update notice:
  npm install zenn-cli@latest
  • Images not showing:

- Ensure they are committed and pushed - Ensure references look like /images/<slug>/... (not ./images/...)

  • Article not appearing:

- File is under articles/ - published: true - The branch synced to Zenn is the one being updated

When does this not work?

  • Skipping PR review (direct publish) increases risk of accidental leaks.
  • Relying on UI/browser automation instead of GitHub sync is brittle to UI changes.
  • Mixing multiple articles in one file or placing files outside articles/ will not publish as expected.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.57%
按下载量换算3,617

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills