Quick Start
Get IST running in under 5 minutes.
Prerequisites
- Node.js 18 or higher
- npm
- Git
- Claude Code or Cursor
Step 1: Install IST
npx @anthropic-ist/setup install
This single command:
- Installs the GitLab package manager
- Configures your GitLab token (you'll be prompted)
- Installs all IST CLI tools
- Installs MWD and TDA profiles
Step 2: Verify Installation
npx @anthropic-ist/setup check
You should see all components marked as "installed".
Step 3: Start Your First Session
Option A: Simple MWD Session
# Navigate to your project
cd my-project
# Start a session with MWD methodology
ilogsession start my-session -p mwd
Option B: Manager/Worker Pattern
# Start a manager session
ilogsession start project-mgr -p tda-manager -d /path/to/project
# In another terminal, start a worker
ilogsession start worker1 -p tda-worker -d /path/to/project
What's Next?
- Learn about MWD Methodology
- Understand the TDA Pattern
- Explore the CLI tools
Troubleshooting
If something goes wrong:
# Diagnose issues
npx @anthropic-ist/setup doctor
# Auto-fix common problems
npx @anthropic-ist/setup doctor --fix