Claude Code Course — Development skill for Claude Code
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
- Download Cursor (VS Code with AI built in)
- Open the integrated terminal (
Ctrl + ``on Windows /Cmd + ``on Mac) - 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
- Run
claudeand follow the auth flow - Create a
.envfile 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.
- Clone this repo and copy
starter/into your workspace - 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
Related Skills
Hwmap
Show HW/example coverage of course sections from course-index/coverage.md. HW density = exam probability; surf
Langchain Multi Agent Example
Comprehensive tutorial and code examples for building multi-agent systems with LangChain
Clanker Code
The Claude Code starter kit. One command installs curated skills, agents, MCPs, hooks, and safety rails.
Claude Code Kickstart
New Opinionated starter kit — one command to install curated MCP servers, hooks, agents, and profiles. Include
Marp Slides
MARP presentation skill for Claude Code — 22 curated example decks, SVG charts, dark/light themes, dashboard c
ClaudeStrike
ClaudeStrike brings Claude to the Kali command line. Built for operators, it writes commands, runs tools, and
Related Agents
Template Contract Reviewer
Use after any change under aai_cli/init/templates/ (the assembly init starter apps) to verify the scaffold sti
Fk Librarian
Finds the right API pattern or prior evidence - Triton/TileLang/CuTe/CUDA docs, the starter templates in fastk
Doey Scaffy Template Creator
Authors new .scaffy templates from inferred patterns or example files, using scaffy new --from-files and the 2