# Send zenn to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zenn",
    "name": "zenn",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tachi-koma-x/zenn",
    "canonicalUrl": "https://clawhub.ai/tachi-koma-x/zenn",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/zenn",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zenn",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/zenn"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/zenn",
    "downloadUrl": "https://openagent3.xyz/downloads/zenn",
    "agentUrl": "https://openagent3.xyz/skills/zenn/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zenn/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zenn/agent.md"
  }
}
```
## Documentation

### 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

### 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.

### 1) Draft in a feature branch

Create or edit articles/<slug>.md (keep published: false)
Add images (if any) under images/<slug>/...
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

Merge the draft PR (still published: false)
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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tachi-koma-x
- Version: 0.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/zenn)
- [Send to Agent page](https://openagent3.xyz/skills/zenn/agent)
- [JSON manifest](https://openagent3.xyz/skills/zenn/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/zenn/agent.md)
- [Download page](https://openagent3.xyz/downloads/zenn)