with one click
new-blog
Scaffold a new blog post for the kuberise.io website
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Scaffold a new blog post for the kuberise.io website
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Guide through creating a new kuberise.io release with release notes, changelog, version badge, GitHub release, and LinkedIn post
Walk through adding a new external Helm component to the kuberise platform
Scaffold a new local Helm chart and register it in the app-of-apps
Check for newer versions of external Helm charts referenced in the platform
Test kr CLI changes on a local k3d cluster
Create a changelog entry for the kuberise.io website from RELEASE_NOTES.md
| name | new-blog |
| description | Scaffold a new blog post for the kuberise.io website |
Create a new blog post in the website repo.
Ask the user for:
Check existing blog posts in ../https.kuberise.io/content/3.blog/ to find the next sequential number.
Create ../https.kuberise.io/content/3.blog/{N}.{slug}.md where {slug} is a kebab-case version of the title.
Use this frontmatter template:
---
title: "{Title}"
description: "{Description}"
image:
src: /img/blogs/{slug}.jpg
authors:
- name: {Author Name}
to: https://linkedin.com/in/{linkedin-handle}
avatar:
src: https://avatars.githubusercontent.com/u/{github-id}?v=4
date: {YYYY-MM-DD}
badge:
label: {Badge}
---
All frontmatter fields are required by the content schema (posts collection in content.config.ts):
title (string, required)description (string, required)image.src (string, required)authors (array with name, to, avatar.src - all required)date (date, required)badge.label (string, required)Add a basic structure:
## Introduction
{Brief intro paragraph}
## {Main sections}
{Content}
## Conclusion
{Wrap-up}
The user needs to add a blog image at ../https.kuberise.io/public/img/blogs/{slug}.jpg. Alternatively, they can use an Unsplash URL directly in the frontmatter.