***

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

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

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

Add a POM section with bullet points to the context prompt. Cannot be used
together with `setPrompt()`.

## **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**

[`Context`][ref-context] -- Self for method chaining.

## **Example**

```typescript {5-9}
import { ContextBuilder } from '@signalwire/sdk';

const builder = new ContextBuilder();
const ctx = builder.addContext('default');
ctx.addBullets('Rules', [
  'Never share account numbers with the caller',
  'Always confirm changes before applying',
  'Escalate fraud concerns immediately',
]);
ctx.addStep('greet').setText('Greet the caller and ask how you can help.');
```