Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/blog/authors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ export const authors: Author[] = [
{
id: "sebastianmaniak",
name: "Sebastian Maniak",
title: "Field CTO",
photo: "/images/authors/sebastianmaniak.jpg",
bio: "Sebastian Maniak is a Field CTO at Solo.io, helping organizations adopt cloud-native technologies and AI-powered infrastructure.",
title: "Technical Product Marketing Manager",
photo: "/images/authors/sebastianmaniak.png",
bio: "Sebastian Maniak is a Technical Product Marketing Manager at Solo.io, focused on AI and helping organizations adopt AI-powered infrastructure.",
},
{
id: "michaellevan",
Expand Down
2 changes: 2 additions & 0 deletions src/blogContent/human-in-the-loop-kagent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export const metadata = {
authorIds: ["sebastianmaniak"],
};

# How to build Kubernetes-native AI agents that pause and ask for approval before taking destructive actions, using kagent's human-in-the-loop capabilities.
Copy link

Copilot AI Mar 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new H1 duplicates the metadata.description and doesn’t match metadata.title, which is inconsistent with the other blog MDX posts where the H1 mirrors metadata.title. This will make the on-page heading differ from the post title shown in listings/SEO metadata. Consider changing the H1 to the metadata.title value and keeping this longer sentence only in metadata.description (and without a trailing period, to match other H1s).

Copilot uses AI. Check for mistakes.

AI agents are getting good — really good — at taking autonomous action. They can inspect your Kubernetes cluster, diagnose problems, create resources, and even clean up after themselves. But here's the uncomfortable question most teams are quietly asking:

*"Do I actually want an AI agent deleting things in my production cluster without asking me first?"*
Expand Down