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

# Bootstrap with Claude Code

> Use the snowglobe-skills plugin for Claude Code to set up a Snowglobe agent without writing the wrapper by hand.

The [`snowglobe-skills`](https://github.com/guardrails-ai/snowglobe-skills) plugin for [Claude Code](https://docs.claude.com/claude-code) bundles four skills that automate Snowglobe wiring. Skills auto-trigger by intent — ask Claude in plain English and the right one activates.

## Install

In Claude Code:

```bash theme={null}
/plugin marketplace add guardrails-ai/snowglobe-skills
/plugin install snowglobe-skills@snowglobe-skills
```

## Use

Ask Claude what you want:

| Say…                                           | Skill that fires              | What you get                                                                                                                                  |
| ---------------------------------------------- | ----------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
| *"Set up snowglobe for this project."*         | `bootstrap-snowglobe-agent`   | Full onboarding: install, auth, register the agent, draft a description, scaffold the wrapper by importing your tool implementations, verify. |
| *"Write a chatbot description for snowglobe."* | `snowglobe-agent-description` | A 2–6 sentence description ready to paste in the dashboard.                                                                                   |
| *"Validate my snowglobe agent."*               | `validate-snowglobe-agent`    | Schema/spec checks against `snowglobe_agent.py`, report of issues.                                                                            |
| *"Fix the errors in my snowglobe agent."*      | `analyze-fix-snowglobe-agent` | Validation + auto-repair in place.                                                                                                            |

After bootstrap, open the deep link Claude gives you to launch a simulation, then run `snowglobe connect --simulation-id <simulation-id>` in a separate terminal to process it. (As of client `1.0.0`, `connect` replaces the previous `start` command and `--simulation-id` is required.)

<Warning>Always review code Claude generates before relying on it. Skills do their best to import your existing implementations and stay out of your way, but you're responsible for what ships.</Warning>

## Related

* [Connect your chatbot](/snowglobe/docs/guide/connect-your-chatbot) — manual flow
* [Tools tutorial](/snowglobe/docs/tools/tutorial) — the canonical tool-wiring example
* [Write a chatbot description](/snowglobe/docs/guide/write-chatbot-description) — the guidance the description skill follows
