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

# addSystemBullets

> Add a POM section with bullets to the system prompt.

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

**`title`** `string` — required

Section heading.

---

**`bullets`** `string[]` — required

List of bullet point strings.

---

## **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.');
```