cd /news/ai-tools/new-tag-bloggify · home topics ai-tools article
[ARTICLE · art-98711] src=perrotta.dev ↗ pub= topic=ai-tools verified=true sentiment=· neutral

new tag: bloggify

Bloggify, an AI-assisted blogging skill, now tags every post it drafts with a 'bloggify' category in the RSS feed, enabling readers to filter out AI-assisted posts without unsubscribing. The change, made by developer Thiago Perrotta, adds the tag to 27 existing posts and allows Miniflux users to block them via an EntryTag rule.

read1 min views1 publishedAug 16, 2026

Previously.

Problem statement: some readers may not want AI-assisted posts in their feed reader, even with my edits. I support making it easier for people to opt out from such posts. They should be able to filter them out without unsubscribing from the whole blog.

Every post the /bloggify skill drafts already carries a footer disclosing it. What was missing was a machine-readable signal, not just a line at the bottom a feed reader can’t act on. So I grepped for the marker and tagged every post that has it:

% grep -rl "Drafted with \[\`/bloggify\`\]" content/posts/ | wc -l
27
% git show 79018e8cf1 -- content/posts/2026-06-09-bloggify.md
diff --git content/posts/2026-06-09-bloggify.md content/posts/2026-06-09-bloggify.md
index b0a5a8ee86..9d15d656fd 100644
--- content/posts/2026-06-09-bloggify.md
+++ content/posts/2026-06-09-bloggify.md
@@ -3,6 +3,7 @@ title: "bloggify"
 date: 2026-06-09T16:50:11+02:00
 tags:
   - ai
+  - bloggify
   - claude
   - dev
   - meta

Every post’s tags:

list ends up in the RSS <item>

as a <category>

element, one per tag (see layouts/_default/rss.xml

). So bloggify

is now a regular, filterable category in the feed, same as any other tag.

For those of you who use Miniflux, filtering it out is the same trick from blocking an entry matching a URL and the global blocklist, except on the EntryTag

field instead of EntryURL

or EntryTitle

:

EntryTag=(?i)^bloggify$

Added as a global block rule in miniflux, and every future /bloggify

-drafted post never reaches the inbox. /tags/bloggify/

on the blog itself works too, for anyone who’d rather subscribe to the opposite: only the AI-assisted posts.

🤖 *Drafted with *

/bloggify

.— § —

Reply via [email](mailto:serendipity@perrotta.dev?subject=Reply to: new tag: bloggify)

── more in #ai-tools 4 stories · sorted by recency
── more on @bloggify 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/new-tag-bloggify] indexed:0 read:1min 2026-08-16 ·