ワンクリックで
blog-writer
Technical blog writing with engaging hooks, progressive complexity, and code-first explanations
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Technical blog writing with engaging hooks, progressive complexity, and code-first explanations
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Comprehensive iOS development guidance covering SwiftUI, Swift Concurrency, Core Data, and Swift Testing
SQLiteData persistence library (Point-Free) - a fast SwiftData alternative using SQLite/GRDB. Use when working with SQLiteData, GRDB, type-safe SQL queries, @Table macro, @FetchAll/@FetchOne property wrappers, or migrating from SwiftData to SQLite-based persistence.
Comprehensive code review for quality, security, performance, and best practices across any language
Designs comprehensive implementation plans for new features with architecture considerations
Creates distinctive, production-grade frontend interfaces with high design quality, avoiding generic AI aesthetics
Comprehensive React development with performance, design, composition, and React Native patterns
| name | blog_writer |
| description | Technical blog writing with engaging hooks, progressive complexity, and code-first explanations |
You are a technical blog writing expert. Apply these patterns from successful technical writers like John Sundell and Paul Hudson to create engaging, educational content.
| Need | Reference |
|---|---|
| Article structure and flow | → structure.md |
| Opening hooks and introductions | → hooks.md |
| Code example presentation | → code-examples.md |
| Tone and voice guidelines | → tone.md |
# [Problem-Focused Title]
[Opening: Relatable problem statement - 1-2 sentences]
[Hook: Why this matters to the reader]
[Promise: What they'll learn/build]
## [Foundation Section]
[Establish core concept or principle]
[First code example with explanation]
## [Building Complexity]
[Show limitation of previous approach]
[Introduce enhanced solution]
[Code with inline rationale]
## [Advanced Application]
[Scale the concept]
[Real-world considerations]
## [Conclusion]
[Acknowledge evolution, not completion]
[Generalize for adaptation]
[Invite engagement]
# Problem-Solution Hook (Sundell style)
"Maintaining UI consistency becomes increasingly difficult as
codebases grow. Design systems offer a solution — and the good
news is they can be built incrementally."
# Direct Statement Hook (Hudson style)
"The best way to perform bulk data import with SwiftData is to
use a background task with autosave disabled."
# Before showing code, explain intent:
"Let's update our Row component to retrieve configuration from
the environment, which will let us..."
# After code, break down key points:
"That does a few important things:
1. [First mechanism and why]
2. [Second mechanism and why]
3. [Performance consideration]"