Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Blog Pipeline

ASecurity

Scan ~/Documents/personal-wiki (Logseq pages and journals) for blog post candidates, manage a content pipeline backlog, and move ideas through stages from candidate to published post on the personal-website Hugo blog.

8 stars
0 votes
0 copies
0 views
Added 9/20/2026
developmentgo

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add tstapler/dotfiles --skill blog-pipeline --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Blog Pipeline?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Blog Pipeline
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/tstapler-blog-pipeline/badge)](https://www.skillsdirectory.com/skills/tstapler-blog-pipeline)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: blog-pipeline
description: Scan ~/Documents/personal-wiki (Logseq pages and journals) for blog post candidates, manage a content pipeline backlog, and move ideas through stages from candidate to published post on the personal-website Hugo blog.
---

# Blog Pipeline

Scan the personal Logseq wiki for content worth turning into blog posts, track ideas through a pipeline, and coordinate with the personal-website Hugo blog.

---

## When to Use

- User asks to "find blog post ideas" or "scan the wiki for posts"
- User wants to review what's in the blog post backlog
- User wants to move a post idea forward (outline → draft → publish)
- User asks what blog posts are in progress

---

## Pipeline Stages

| Stage | Emoji | Meaning |
|---|---|---|
| Candidate | 💡 | Identified from wiki scan, not yet committed |
| Outlined | 📋 | Has a plan.md in project_plans/blog-pipeline/<slug>/ |
| Drafting | ✍️ | Draft exists in personal-website content/blog/ (draft=true) |
| Review | 👀 | Draft complete, needs polish/proofread |
| Published | ✅ | Live on site (draft=false, pushed to master) |

---

## Tracking Location

All pipeline state lives in the **personal-website repo**:

```
/home/tstapler/Programming/personal-website/project_plans/blog-pipeline/
├── candidates.md          ← master backlog (all stages)
└── <post-slug>/
    ├── plan.md            ← created when post moves to Outlined
    └── validation.md      ← optional: outline review notes
```

Always read `candidates.md` first before any pipeline operation.

---

## Workflow: Scan Wiki for Candidates

Run when the user asks to find new blog post ideas.

### Step 1 — Scan for candidates

Search these locations in `~/Documents/personal-wiki/logseq/`:

**Pages** (`pages/*.md`): Look for files with:
- Multiple headers (structured content, not a stub)
- A complete arc: problem or context → analysis or exploration → insight or resolution
- Personal experience or opinion, not just link dumps
- Minimum ~300 words of original prose
- Technical depth relevant to: homelab, software development, AI tools, networking, infrastructure, personal productivity

**Journals** (`journals/*.md`): Look for entries with:
- A narrative that resolves (not just daily notes)
- A lesson learned or something that surprised the user
- Content that would read as a story, not a log

### Step 2 — Score each candidate

For each candidate, quickly assess:

```
TITLE: <page title or journal entry subject>
SOURCE: pages/<filename>.md OR journals/<date>.md
HOOK: one sentence — what's the interesting angle?
EFFORT: Low / Medium / High (how much writing work to turn this into a post?)
OVERLAP: Does a similar post already exist in content/blog/?
```

Disqualify if:
- It's a stub (< 200 words, no structure)
- It's a meeting/Slack export with no synthesis
- The personal-website blog already has a similar post

### Step 3 — Append to candidates.md

For each qualified candidate not already in the backlog, append an entry:

```markdown
## <Post Title>

**Stage**: 💡 Candidate
**Source**: ~/Documents/personal-wiki/logseq/pages/<filename>.md
**Hook**: <one sentence pitch>
**Effort**: Low / Medium / High
**Added**: YYYY-MM-DD
```

Report a summary to the user: N new candidates found, M already existed.

---

## Workflow: Advance a Post

When the user picks a post to work on:

### 💡 → 📋 Outlined

1. Run `/plan:mdd-start` with the post idea to generate `requirements.md`
2. Create `project_plans/blog-pipeline/<slug>/plan.md` with:
   - Target audience
   - Post structure (H2 sections with one-line descriptions)
   - Key points to hit
   - Tone notes (match existing blog voice: casual, first-person, story-driven)
3. Update `candidates.md` stage to `📋 Outlined`

### 📋 → ✍️ Drafting

1. Create `content/blog/<slug>/index.md` with Hugo frontmatter (`draft = true`)
2. Write post following the plan
3. Update `candidates.md` stage to `✍️ Drafting`

### ✍️ → 👀 Review

1. Check post against blog style (see Writing Standards below)
2. Verify all links resolve (`{{< ref >}}` targets exist)
3. Update `candidates.md` stage to `👀 Review`

### 👀 → ✅ Published

1. Set `draft = false` in frontmatter
2. Commit and push to master
3. Update `candidates.md` stage to `✅ Published` with publish date

---

## Workflow: Review Backlog

When the user asks "what's in the pipeline":

1. Read `candidates.md`
2. Group by stage and report a table
3. Flag any post that's been in the same stage for > 30 days (calculate from Added date)

---

## Writing Standards (Personal Blog Voice)

Match the tone of existing posts in `content/blog/`:

- **First person**, casual register — "I found", "I noticed", not passive voice
- **Start with a concrete problem** — not definitions, not background
- **Tell what happened** — narrative over exposition
- **Short sections** — H2s every 200-300 words
- **Show the thing** — tables, command output, screenshots referenced where useful
- **Honest about tradeoffs** — don't oversell the solution
- **End with a takeaway** — one or two sentences, not a bulleted summary

---

## Hugo Frontmatter Template

```toml
+++
title = ""
description = ""  # under 160 chars, SEO-focused
summary = ""      # 2-3 sentence teaser for post listings
categories = [""]
tags = [""]
date = "YYYY-MM-DD"
draft = true
+++
```

---

## Files to Check

| Purpose | Path |
|---|---|
| Pipeline backlog | `/home/tstapler/Programming/personal-website/project_plans/blog-pipeline/candidates.md` |
| Wiki pages | `~/Documents/personal-wiki/logseq/pages/` |
| Wiki journals | `~/Documents/personal-wiki/logseq/journals/` |
| Published posts | `/home/tstapler/Programming/personal-website/content/blog/` |

Attribution

tstaplertstapler
View sourceMore from tstapler →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →