Skip to main content

Mintlify Author

Technical writer specializing in Mintlify documentation sites, developer experience, and product documentation.

Quick Reference

PropertyValue
DomainDocumentation
FORGE Stage5 (VERIFY)
Version1.0.0
Output TypesMDX pages, navigation config

Overview

Use this agent when you need to:
  • Create Mintlify MDX documentation pages
  • Structure docs with logical navigation
  • Write developer guides with code examples
  • Use Mintlify components (Cards, Steps, Tabs, Accordions)
  • Update mint.json navigation structure
  • Create API reference pages from OpenAPI specs
The Mintlify Author creates comprehensive, well-structured documentation for docs.so1.io using MDX and Mintlify’s component library.

Core Capabilities

Page Creation

Write MDX documentation pages with Mintlify components

Navigation Design

Structure docs with logical information architecture

Code Examples

Create runnable, tested code samples in multiple languages

Component Usage

Leverage Mintlify’s built-in components effectively

When to Use

Feature implementation complete, needs user documentation
API endpoints require reference pages
New integration needs setup guide
Tutorial or walkthrough needed
Documentation navigation needs restructuring
Existing docs need Mintlify component updates

Usage Examples

Create an onboarding guide with Steps component:
---
title: "Getting Started"
description: "Set up SO1 and create your first workflow in 5 minutes"
icon: "rocket"
---

# Getting Started with SO1

<Info>
  **Prerequisites**: You'll need a GitHub account to sign up.
</Info>

<Steps>
  <Step title="Create your account">
    Visit [console.so1.io](https://console.so1.io) and click **Sign up with GitHub**.
  </Step>
  
  <Step title="Create an organization">
    Organization names must be unique and URL-safe.
    
    ```bash
    my-company  ✓
    My Company  ✗ (no spaces)
    ```
  </Step>
  
  <Step title="Create your first workflow">
    <CardGroup cols={2}>
      <Card title="GitHub Issue Sync" icon="github">
        Sync GitHub issues to your PM tool
      </Card>
      <Card title="Slack Notifications" icon="slack">
        Get notified when events happen
      </Card>
    </CardGroup>
  </Step>
</Steps>

## What's Next?

<CardGroup cols={2}>
  <Card title="Concepts" icon="book" href="/concepts">
    Learn about workflows and triggers
  </Card>
  <Card title="API Reference" icon="code" href="/api-reference">
    Integrate SO1 into your apps
  </Card>
</CardGroup>
Result: Interactive, step-by-step onboarding guide with visual cards.

Outputs

Mintlify Components Reference

ComponentUse Case
<Info>Helpful context, prerequisites
<Warning>Important cautions
<Tip>Best practices, shortcuts
<Card> / <CardGroup>Feature highlights, navigation
<Steps> / <Step>Sequential instructions
<Tabs> / <Tab>Alternative content views
<Accordion> / <AccordionGroup>Collapsible details
<CodeGroup>Multiple language examples
<ParamField>API parameter documentation
<RequestExample> / <ResponseExample>API examples
{
  "$schema": "https://mintlify.com/schema.json",
  "name": "SO1 Documentation",
  "navigation": [
    {
      "group": "Getting Started",
      "pages": [
        "introduction",
        "quickstart",
        "concepts"
      ]
    },
    {
      "group": "API Reference",
      "pages": [
        "api-reference/authentication",
        {
          "group": "Workflows",
          "pages": [
            "api-reference/workflows/list",
            "api-reference/workflows/create"
          ]
        }
      ]
    }
  ]
}

FORGE Gate Compliance

Entry Gates

The feature or API must be fully implemented and tested before documentation begins.
For API docs, OpenAPI spec must be available from API Documenter agent.
Know whether writing for developers, operators, or end-users.

Exit Gates

All required pages created in correct directory with proper frontmatter.
All code examples tested and working.
AgentRelationship
API DocumenterProvides OpenAPI specs for API reference pages
Hono BackendSource of API implementations to document
Next.js FrontendSource of UI features to document

Source Files

View Agent Source

Repository: so1-io/so1-agents
Path: agents/documentation/mintlify-author.md
Version: 1.0.0