一键导入
new-blog
Scaffold a new blog post for the kuberise.io website
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scaffold a new blog post for the kuberise.io website
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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
基于 SOC 职业分类
| 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.