# SlashCommand

> **Class** in `deepagents_cli`

📖 [View in docs](https://reference.langchain.com/python/deepagents-cli/command_registry/SlashCommand)

A single slash-command definition.

## Signature

```python
SlashCommand(
    self,
    *,
    name: str,
    description: str,
    bypass_tier: BypassTier,
    hidden_keywords: str = '',
    aliases: tuple[str, ...] = (),
)
```

## Constructors

```python
__init__(
    self,
    *,
    name: str,
    description: str,
    bypass_tier: BypassTier,
    hidden_keywords: str = '',
    aliases: tuple[str, ...] = (),
) -> None
```

| Name | Type |
|------|------|
| `name` | `str` |
| `description` | `str` |
| `bypass_tier` | `BypassTier` |
| `hidden_keywords` | `str` |
| `aliases` | `tuple[str, ...]` |


## Properties

- `name`
- `description`
- `bypass_tier`
- `hidden_keywords`
- `aliases`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/b710a69b12e49479045eaa54dfb709326473500b/libs/cli/deepagents_cli/command_registry.py#L37)