***

title: addBullets
slug: /reference/typescript/agents/context-builder/step/add-bullets
description: Add a POM section with bullet points to the step.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

[ref-step]: /docs/server-sdks/reference/typescript/agents/context-builder/step

Add a POM section with bullet points to the step. Cannot be used with `setText()`.

## **Parameters**

<ParamField path="title" type="string" required={true} toc={true}>
  Section heading.
</ParamField>

<ParamField path="bullets" type="string[]" required={true} toc={true}>
  List of bullet point strings.
</ParamField>

## **Returns**

[`Step`][ref-step] -- Self for method chaining.

## **Example**

```typescript {7-11}
import { ContextBuilder } from '@signalwire/sdk';

const builder = new ContextBuilder();
const ctx = builder.addContext('default');
const step = ctx.addStep('collect_info');
step.addSection('Task', 'Collect the caller\'s account information.');
step.addBullets('Required Information', [
  'Full legal name',
  'Account number (10 digits)',
  'Reason for calling',
]);
```