Skip to content

Getting Started

Welcome to the VisiTrans Claude Toolkit. This section covers everything you need to go from zero to a fully working setup.

Quick Start

1. Install Claude Code

npm install -g @anthropic-ai/claude-code
claude login

Follow the browser prompt to sign in with your Anthropic account.

2. Clone and Set Up the Toolkit

git clone https://github.com/Visitrans/V025-claude-toolkit.git
cd V025-claude-toolkit
scripts/setup.sh --full

3. Start a New Claude Code Session

If Claude Code was already running, exit and restart it — skills are loaded at session start.

claude

4. Verify It Works

Inside Claude Code, type:

/vt-c-0-start

If the skill runs, you're ready to go.

That's it for macOS and Linux. For Windows, see the Installation guide.

What Gets Installed

The setup manager deploys the following into ~/.claude/:

Component Location Method
Skills ~/.claude/skills/ Symlinks to plugin directories
Agents ~/.claude/agents/ Copied from golden copies
Commands ~/.claude/commands/ Symlinks to plugin directories
Hooks ~/.claude/hooks/ Symlinks to plugin scripts
CLAUDE.md ~/.claude/CLAUDE.md Copied from golden copy
Settings ~/.claude/settings.json Copied from golden copy

Next Steps