{"slug": "new-tag-bloggify", "title": "new tag: bloggify", "summary": "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.", "body_md": "♠ [Previously](https://perrotta.dev/2026/06/bloggify/).\n\n**Problem statement**: some readers may not want AI-assisted posts in their feed\nreader, even with my edits. I support making it easier for people to opt out\nfrom such posts. They should be able to filter them out without unsubscribing\nfrom the whole blog.\n\nEvery post the [ /bloggify](https://github.com/thiagowfx/skills/blob/master/plugins/thiagowfx/skills/bloggify/SKILL.md)\nskill drafts already carries a footer disclosing it. What was missing was a\nmachine-readable signal, not just a line at the bottom a feed reader can’t act\non. So I grepped for the marker and tagged every post that has it:\n\n```\n% grep -rl \"Drafted with \\[\\`/bloggify\\`\\]\" content/posts/ | wc -l\n27\n% git show 79018e8cf1 -- content/posts/2026-06-09-bloggify.md\ndiff --git content/posts/2026-06-09-bloggify.md content/posts/2026-06-09-bloggify.md\nindex b0a5a8ee86..9d15d656fd 100644\n--- content/posts/2026-06-09-bloggify.md\n+++ content/posts/2026-06-09-bloggify.md\n@@ -3,6 +3,7 @@ title: \"bloggify\"\n date: 2026-06-09T16:50:11+02:00\n tags:\n   - ai\n+  - bloggify\n   - claude\n   - dev\n   - meta\n```\n\nEvery post’s `tags:`\n\nlist ends up in the RSS `<item>`\n\nas a `<category>`\n\nelement, one per tag (see `layouts/_default/rss.xml`\n\n). So `bloggify`\n\nis now a\nregular, filterable category in the feed, same as any other tag.\n\nFor those of you who use [Miniflux](https://miniflux.app/), filtering it out is the same trick from\n[blocking an entry matching a URL](https://perrotta.dev/2026/02/miniflux-block-entry-matching-url/) and the [global\nblocklist](https://perrotta.dev/2024/12/miniflux-global-blocklist/), except on the\n`EntryTag`\n\nfield instead of `EntryURL`\n\nor `EntryTitle`\n\n:\n\n```\nEntryTag=(?i)^bloggify$\n```\n\nAdded as a global block rule in miniflux, and every future `/bloggify`\n\n-drafted\npost never reaches the inbox. `/tags/bloggify/`\n\non the blog itself works too,\nfor anyone who’d rather subscribe to the opposite: only the AI-assisted posts.\n\n🤖 *Drafted with *\n\n`/bloggify`\n\n.— § —\n\nReply via [email](mailto:serendipity@perrotta.dev?subject=Reply to: new tag: bloggify)", "url": "https://wpnews.pro/news/new-tag-bloggify", "canonical_source": "https://perrotta.dev/2026/08/new-tag-bloggify/", "published_at": "2026-08-16 11:50:00+00:00", "updated_at": "2026-08-16 12:12:15.871262+00:00", "lang": "en", "topics": ["ai-tools", "ai-products"], "entities": ["Bloggify", "Thiago Perrotta", "Miniflux", "RSS"], "alternates": {"html": "https://wpnews.pro/news/new-tag-bloggify", "markdown": "https://wpnews.pro/news/new-tag-bloggify.md", "text": "https://wpnews.pro/news/new-tag-bloggify.txt", "jsonld": "https://wpnews.pro/news/new-tag-bloggify.jsonld"}}