> ## Documentation Index
> Fetch the complete documentation index at: https://docs.salesgraph.com/llms.txt
> Use this file to discover all available pages before exploring further.

# help

> List the available Salesgraph commands and how to use them.

Returns a markdown catalog of the available Salesgraph commands, including each command's id,
execution type, arguments, and what integrations it requires or is enhanced by. Useful for an
agent to discover what it can do at runtime.

This tool takes **no arguments**.

**Type:** synchronous · **Returns:** markdown command catalog

## Example call

```json theme={null}
{
  "name": "help",
  "arguments": {}
}
```

## Returns

```markdown theme={null}
# Salesgraph machine commands

## Public research brief
- id: `research`
- execution: sync
- arguments: `topic`
- requires: none
- enhanced by: none

Research a topic from public sources and return a cited markdown brief.

## Competitor map
- id: `competitors`
- execution: sync
- arguments: `company`
...
```

<Tip>
  `help` reflects the live command catalog, so it stays accurate as commands change. Agents can
  call it to self-describe capabilities before choosing a tool.
</Tip>
