LeadGrowGTM

Claude Code Course — Development skill for Claude Code

Development community

Companion repo for Claude Code for GTM Operators.

How to install Claude Code Course

This entry records only its repository, not the path inside it, so there is no exact command to give. Open LeadGrowGTM/claude-code-course and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Claude Code Course does

Companion repo for Claude Code for GTM Operators. Starter templates, example skills, and a curated index of tools for building GTM systems from one terminal.

Alternatives in Development

  • Claude How To — by luongnv89 — Example-driven guide to mastering Claude Code through progressive tutorials with copy-paste tem 8.5k ★
  • Gtm Motions — Identify best GTM motions across 7 types including PLG and ABM 7.8k ★
  • Arscontexta — Claude Code plugin that generates individualized knowledge systems from conversation 2.8k ★

README

Claude Code for GTM Operators

The companion repo for [the course](https://claude-code-course-kappa.vercel.app). Everything you need to go from zero to a full GTM operation running from one terminal.

Quick Start

  1. Download Cursor (VS Code with AI built in)
  2. Open the integrated terminal (Ctrl + `` on Windows / Cmd + `` on Mac)
  3. Install Claude Code:
# Windows (PowerShell)
irm https://claude.ai/install.ps1 | iex

# macOS / Linux
curl -fsSL https://claude.ai/install.sh | bash

# Also available via npm, Homebrew, or WinGet
npm i -g @anthropic-ai/claude-code
  1. Run claude and follow the auth flow
  2. Create a .env file in your workspace root with your API keys:
# Core (you'll need these for most examples)
OPENAI_API_KEY=sk-...
SERPER_API_KEY=...

# Web scraping (for pipelines that fetch pages)
SPIDER_API_KEY=spider_...

# Database (for pipelines that store results)
SUPABASE_PROJECT_URL=https://xxxxxxxxxxxx.supabase.co
SUPABASE_SERVICE_ROLE_KEY=eyJ...

# Scheduled tasks (for cloud-deployed pipelines)
TRIGGER_SECRET_KEY=tr_secret_...

# Add more as you need them -- each example lists its required keys

**Important:** Add `.env` to your `.gitignore` so you never commit secrets. The starter `.gitignore` already includes it.

  1. Clone this repo and copy starter/ into your workspace
  2. Start building

What's In This Repo

`/starter` — Your Starting Point

Copy these into your workspace root. Pre-configured CLAUDE.md, rules, settings, folder structure, and company doc templates.

starter/
  CLAUDE.md              <- workspace identity + behavioral rules
  .claude/
    settings.json        <- permissions allowlist
    rules/
      archive-safety.md  <- never delete, always archive
      ask-vs-act.md      <- when to ask vs just do
      file-conventions.md<- where files go
  company/
    ICP.md               <- ideal customer profile template
    voice-guide.md       <- brand voice definition
  ca