Built a MAGI-powered internal knowledge base for our team #6
Replies: 4 comments
-
|
This is great. How did you handle the conversion of existing runbooks to |
Beta Was this translation helpful? Give feedback.
-
|
Mix of both. For web-based docs, url2mda worked well as a starting point. For internal wiki pages and Confluence docs, I wrote a quick Python script to extract content and generate the YAML front matter from existing page metadata (tags, author, last-updated, etc.). The ai-script blocks I added manually since they needed to be tailored per runbook type. But honestly, it only took a few hours for ~50 runbooks. |
Beta Was this translation helpful? Give feedback.
-
|
This is a solid use case. The Would you be open to sharing a sanitized example of your runbook template? |
Beta Was this translation helpful? Give feedback.
-
|
Sure! Here's the skeleton we use: ---
doc-id: "runbook-<service-name>"
title: "<Service> - <Scenario>"
tags: ["runbook", "<service>", "<severity>"]
purpose: "runbook"
audience: "ops-team"
updated-date: "2026-03-15T10:00:00Z"
entities: ["<service>", "<dependencies>"]
---Then standard markdown for steps, with an ai-script block at the end for summary generation. Works well with any RAG setup. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Just wanted to share a quick project. I set up an internal knowledge base using MAGI for our ops team's runbooks and incident documentation.
Setup:
.mdaformattags,audience: "ops-team", andpurpose: "runbook"Results:
The
purposeandaudiencefields in the front matter turned out to be surprisingly useful for filtering results by team role.Beta Was this translation helpful? Give feedback.
All reactions