Authoring Kit

Use the templates in document-templates/ when creating new pages.

Use the templates in document-templates/ when creating new pages.

TemplateUse for
concept.mdExplaining an idea before a task.
how-to.mdHelping users complete one task.
tutorial.mdGuiding a first-time end-to-end path.
reference.mdListing commands, settings, APIs, or fields.
troubleshooting.mdExplaining symptoms, causes, and fixes.
release-notes.mdRecording product changes.

When you add a page:

  1. Put it in the right section folder.
  2. Add it to the section meta.json.
  3. Add a link from a related page if the reader will need it.
  4. Run the quality checks.
  5. Check Visual style before adding images or theme notes.

Fumadocs examples

Use a callout for important setup details:

<Callout type="warn">
Do not commit real secrets. Use placeholders in examples.
</Callout>

Use tabs when the same task has more than one path:

<Tabs items={["Terminal", "Command Centre"]}>
<Tab>
Run `agentic team whoami`.
</Tab>

<Tab>
Open Team OS and check the signed-in user.
</Tab>
</Tabs>

Use a collapsible block for optional detail:

<details>
<summary>Why this matters</summary>

The server is the source of truth for identity and permissions.

</details>

Use titled code blocks for commands:

```powershell
pwsh ./scripts/check-docs.ps1
```

Use images with alt text:

![Command Centre Team OS login](/assets/team-os-login.png)

Use tables for permissions and settings:

| Role | Can manage clients | Can grant skills |
| --- | --- | --- |
| Owner | Yes | Yes |
| Member | No | No |

On this page