# Cx Agent Tool Usage

> How to use tools in CX Agent prompts.

- Skill: `izzyfresh/cx-agent-tool-usage` (Agent Skill)
- Install (CLI): `npx skillmds@latest add izzyfresh/cx-agent-tool-usage`
- Raw SKILL.md: https://api.skillmd.com/api/skills/izzyfresh/cx-agent-tool-usage/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: IzzyFresh (https://skillmd.com/u/izzyfresh)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/izzyfresh/cx-agent-tool-usage

---


# CX Agent Tool Usage

When creating prompts for CX agents (or sub-agents) that need to use tools, use the following syntax to reference the tool:

`{@TOOL: name_of_tool}`

### Example

```text
<step name="Perform Action">
    <trigger>User request</trigger>
    <action>
        1. Call the tool {@TOOL: my_tool}.
        2. Use the result to respond to the user.
    </action>
</step>
```

