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

# Bedrock AgentCore CLI

> Command-line interface for AWS Bedrock AgentCore tools

```mermaid theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
graph LR
    U[Input] --> A[Agent]
    A --> O[Output]

    classDef agent fill:#8B0000,color:#fff
    classDef tool fill:#189AB4,color:#fff

    class A agent
    class U,O tool
```

# Bedrock AgentCore CLI

Use AWS Bedrock AgentCore tools from the command line.

## Commands

### Code Interpreter

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# Execute Python code
praisonai-ts tools run bedrock-code-interpreter \
  --code "print(sum(range(1, 11)))"

# With file
praisonai-ts tools run bedrock-code-interpreter \
  --file script.py
```

### Browser Navigate

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai-ts tools run bedrock-browser-navigate \
  --url "https://example.com"
```

### Browser Click

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai-ts tools run bedrock-browser-click \
  --selector "#submit-button"
```

### Browser Fill

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai-ts tools run bedrock-browser-fill \
  --selector "#email" \
  --value "user@example.com"
```

## Options

| Option       | Type   | Description            |
| ------------ | ------ | ---------------------- |
| `--code`     | string | Python code to execute |
| `--file`     | string | Path to Python file    |
| `--url`      | string | URL to navigate to     |
| `--selector` | string | CSS selector           |
| `--value`    | string | Value to fill          |
| `--timeout`  | number | Timeout in ms          |

## Environment Variables

| Variable                | Required | Description    |
| ----------------------- | -------- | -------------- |
| `AWS_ACCESS_KEY_ID`     | Yes      | AWS access key |
| `AWS_SECRET_ACCESS_KEY` | Yes      | AWS secret key |
| `AWS_REGION`            | Yes      | AWS region     |

## Related

<CardGroup cols={2}>
  <Card title="Bedrock AgentCore" icon="book" href="/docs/js/tools/bedrock-agentcore">
    Code documentation
  </Card>
</CardGroup>
