***

title: addSystemBullets
slug: /reference/typescript/agents/context-builder/context/add-system-bullets
description: Add a POM section with bullets to the system 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 bullets to the system prompt. Cannot be combined with
`setSystemPrompt()`.

## **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 {7-10}
import { ContextBuilder } from '@signalwire/sdk';

const builder = new ContextBuilder();
builder.addContext('default').addStep('menu').setText('Ask what the caller needs.');

const support = builder.addContext('support');
support.addSystemBullets('Guidelines', [
  'Verify identity before making changes',
  'Offer to escalate if issue is unresolved after 5 minutes',
]);
support.addStep('diagnose').setText('Understand the customer\'s issue.');
```