# SkillInvocationEnvelope

> **Class** in `deepagents_code`

📖 [View in docs](https://reference.langchain.com/python/deepagents-code/skills/invocation/SkillInvocationEnvelope)

Structured prompt and checkpoint metadata for a skill invocation.

## Signature

```python
SkillInvocationEnvelope(
    self,
    prompt: str,
    message_kwargs: dict[str, Any],
    skill_name: str,
)
```

## Constructors

```python
__init__(
    self,
    prompt: str,
    message_kwargs: dict[str, Any],
    skill_name: str,
) -> None
```

| Name | Type |
|------|------|
| `prompt` | `str` |
| `message_kwargs` | `dict[str, Any]` |
| `skill_name` | `str` |


## Properties

- `prompt`
- `message_kwargs`
- `skill_name`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/3812967c84d90619848f3185f22470204fc88bd8/libs/code/deepagents_code/skills/invocation.py#L24)