> ## Documentation Index
> Fetch the complete documentation index at: https://docs.asteragents.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Collapsible Log Blocks

> Paste transcripts, incidents, or tickets into chat without clutter – they auto-collapse!

## Overview

Long transcripts can drown the conversation window. You can now paste them inside **collapsible log blocks** so they stay neatly folded until someone clicks to expand them.

<Note>
  Works anywhere you type a message in chat.
</Note>

## Syntax

````
```<tag>:<Title>
<your multiline body>
```
````

<Steps>
  <Step title="Tag" icon="tag">
    Any single-word slug (letters, numbers, `-` or `_`) that describes the content. Common examples: `meeting`, `incident`, `ticket`.
  </Step>

  <Step title="Title" icon="heading">
    The one-line summary shown in the header. Titles support any characters except a line-break.
  </Step>

  <Step title="Body" icon="align-left">
    Everything up to the closing three back-ticks.
  </Step>
</Steps>

The entire block renders as a single header showing the title and number of lines; click it to reveal the body.

## Example

Paste this whole snippet in chat to see the feature in action:

````markdown theme={null}
```meeting:Q3 Planning Call
09:00 Alice: Morning everyone!
09:02 Bob: Agenda review…
09:05 Carol: Any blockers?
```

Some normal chat text between blocks…

```incident:Production Outage 2025-07-01
12:02 PagerDuty: Incident #452 triggered
12:05 SRE: Investigating database latency
12:15 DBA: Rolled back migration
12:25 PagerDuty: Incident resolved
```

```ticket:JIRA-1234
User can’t upload files larger than 5 MB
```
````

## Styling

Each block’s left border colour changes with the tag:

<CardGroup cols={2}>
  <Card title="meeting" icon="users">
    Green border.
  </Card>

  <Card title="incident" icon="triangle-exclamation">
    Red border.
  </Card>

  <Card title="ticket" icon="ticket">
    Yellow border.
  </Card>

  <Card title="others" icon="circle">
    Default style.
  </Card>
</CardGroup>

Feel free to invent new tags – they’ll fall back to the default style automatically.

## Tips

* Mix regular Markdown before, between, or after blocks.
* You can nest multiple blocks in a single message.
* Titles support any characters except a line-break.
