Agent Plugins Marketplace
All plugins

blog-writing

v0.4.0

sui-blog の記事を書くためのスキル集。ネタの判定、一次情報の調査と検証を含む初稿の執筆、構成と日本語の推敲、技術的な確認、一文の語順と読点の点検をカバー

CodexClaude Code5 Skills

By Suntory-N-Water0 GitHub starsUpdated 2 days ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
5 skill or MCP entries
Source updated
Sep 22, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install blog-writing for Codex and Claude Code

Installs for the current user
codex plugin marketplace add Suntory-N-Water/suntory-n-water-marketplace
codex plugin marketplace upgrade suntory-n-water-marketplace
codex plugin add blog-writing@suntory-n-water-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the suntory-n-water-marketplace catalog, then install this plugin.

Compatibility: the page URL and API slug “blog-writing” remain stable.

  • Codex: blog-writing@agent-plugin-marketplaceblog-writing@suntory-n-water-marketplace

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/Suntory-N-Water/suntory-n-water-marketplace

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/blog-writing/.

Plugin files

plugins/blog-writing/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/article-review/SKILL.md
├── skills/japanese-sentence-order/SKILL.md
├── skills/pick-blog-topic/SKILL.md
├── skills/tech-review/SKILL.md
└── skills/write-blog-article/SKILL.md

Included Skills5

article-reviewskills/article-review/SKILL.md

日本語の記事を、構成、説明の順序、日本語の正しさ、表記の統一、まとめと本文の一致の観点から読み、重大度つきの指摘を返す。sui-blog の下書きの推敲、公開前の確認、「記事を確認して」「読みにくいところを直したい」「レビューして」と言われたときに使う。書き終えた記事を渡されたら、依頼の言葉に「推敲」が無くてもこのスキルで確認する。技術的な正しさと一次情報の裏取りは tech-review、一文の中の語順と読点だけの確認は japanese-sentence-order が担う。原稿の書き換えは、依頼された場合だけ行う。

japanese-sentence-orderskills/japanese-sentence-order/SKILL.md

日本語の一文の中の語順、読点の位置、入れ子構造を確かめ、読みにくい文を書き換え案つきで指摘する。ブログ記事、設計書、Issue のコメント、README、コミットメッセージなど、日本語の文章全般に使う。「この文が読みにくい」「修飾語の順番を確認して」「読点の位置を直したい」「一文が長くて分かりにくい」と言われたとき、および係り受けが曖昧な文を見つけたときに使う。文体、構成、使わない言い回しの確認は article-review が担う。

pick-blog-topicskills/pick-blog-topic/SKILL.md

素材、作業記録、過去の会話からブログの題材と根拠を判定する。ネタの登録依頼では材料不足の題材を GitHub Issue に記録し、既存のネタから書く候補を選ぶ依頼にも対応する。

tech-reviewskills/tech-review/SKILL.md

記事の技術的な正しさ、一次情報の裏取り、コードが動くか、読者が再現できるか、安全性と互換性を確かめて、重大度つきの指摘を返す。sui-blog の記事の公開前に「技術的に正しいか確認して」「コードが動くか確認して」「ファクトチェックして」と言われたとき、およびバージョンや仕様の断定、実行結果、手順を含む記事を渡されたときに使う。日本語と構成の推敲は article-review が担う。原稿の書き換えは、依頼された場合だけ行う。

write-blog-articleskills/write-blog-article/SKILL.md

一次情報を調べ、動かして確かめ、sui-blog の記事の初稿を日本語で書く。「記事を書きたい」「下書きを作って」「これをブログにしたい」と言われたとき、および題材が 4 つの型(変更への追随、手を動かす解説、調査と比較、意見と経験)のどれかに当てはまるときに使う。ツールの仕様変更を追った記録、作ったものの紹介、実測した比較、旅行や健康データの振り返りは、ブログと明言されていなくてもこのスキルで記事にする。書く前の「ネタになるか」の判定は pick-blog-topic、すでにある記事の推敲は article-review、技術的な確認は tech-review が担う。

Plugin manifests2

plugins/blog-writing/.codex-plugin/plugin.json
{
  "name": "blog-writing",
  "version": "0.4.0",
  "description": "sui-blog の記事を書くためのスキル集。ネタの判定、一次情報の調査と検証を含む初稿の執筆、構成と日本語の推敲、技術的な確認、一文の語順と読点の点検をカバー",
  "author": {
    "name": "Suntory-N-Water"
  },
  "skills": [
    "./skills/article-review",
    "./skills/japanese-sentence-order",
    "./skills/pick-blog-topic",
    "./skills/tech-review",
    "./skills/write-blog-article"
  ],
  "interface": {
    "displayName": "Blog Writing Skills",
    "shortDescription": "sui-blog の記事を書くためのスキル集",
    "longDescription": "ネタの判定、一次情報の調査と検証を含む初稿の執筆、構成と日本語の推敲、技術的な確認、一文の語順と読点の点検を 5 つのスキルで支援します。",
    "developerName": "Suntory-N-Water",
    "category": "Writing",
    "capabilities": [
      "Read",
      "Write"
    ],
    "defaultPrompt": [
      "この題材で sui-blog の記事の初稿を書いて"
    ]
  }
}
plugins/blog-writing/.claude-plugin/plugin.json
{
  "name": "blog-writing",
  "description": "sui-blog の記事を書くためのスキル集。ネタの判定、一次情報の調査と検証を含む初稿の執筆、構成と日本語の推敲、技術的な確認、一文の語順と読点の点検をカバー",
  "version": "0.4.0",
  "author": {
    "name": "Suntory-N-Water"
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[blog-writing on Agent Plugins Marketplace](https://pluginsmp.com/plugins/blog-writing)