Agent skill
yalc-orientation
First-touch onboarding for someone who just opened the YALC repo.
Filed under Onboarding, retention and expansion.
From Othmane-Khadri/YALC-the-GTM-operating-system · 61 skills · 290 · pushed 2026-08-20
What it does when it runs
First-touch onboarding for someone who just opened the YALC repo. Triggers when the user pastes the repo URL `https://github.com/Othmane-Khadri/YALC-the-GTM-operating-system` (with or without trailing slash, with or without `.git`), or says any of: 'what is yalc', 'what is this', \"let's start\", \"let's go\", 'i just cloned this', 'how do i use this', 'got the repo', 'where do i begin', \"i'm new to yalc\". Introduces YALC, checks prerequisites, asks the user what they want to do, and routes to the right capability. Hands off to /setup if the environment isn't initialized.
Read from the skill and the 0 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.
- Keys and connectors you must supply
- None found.
- Hosts it reaches
- nodejs.org
- Tool permissions it declares
- No
allowed-toolsin the frontmatter. It only issues instructions, so there is nothing to bound. - Actions present in the files
- None. Instructions only.
Install it
View source on GitHub ↗git clone --depth 1 --filter=blob:none --sparse https://github.com/Othmane-Khadri/YALC-the-GTM-operating-system.git /tmp/YALC-the-GTM-operating-system git -C /tmp/YALC-the-GTM-operating-system sparse-checkout set ".claude/skills/yalc-orientation" mkdir -p ~/.claude/skills/yalc-orientation cp -R "/tmp/YALC-the-GTM-operating-system/.claude/skills/yalc-orientation/." ~/.claude/skills/yalc-orientation/
Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗
The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.
The skill
Source on GitHub ↗Reproduced in full from Othmane-Khadri/YALC-the-GTM-operating-system/blob/5686d1f2f526346133f78eef3349fc5a655757b4/.claude/skills/yalc-orientation/SKILL.md, which is licensed MIT (repository). 566 words, 5 headings.
YALC Orientation
A new user just opened this repo. Walk them through a 4-step orientation so they know what YALC is, that their environment is ready, and which capability fits their first job.
Do NOT duplicate setup logic. If the user needs to install or configure, hand off to the existing /setup skill at .claude/skills/setup/SKILL.md.
Step 1 — Overview
Read CLAUDE.md at the repo root and surface the "What YALC is" section to the user. Quote or paraphrase it — that file is the single source of truth, DO NOT duplicate the text into this skill body. Keep the intro to 3–5 sentences. End with one sentence framing the architecture split: "Read context from your knowledge base, execute from this repo."
Step 2 — Prerequisite check
Run these checks silently and report only what's missing. If everything passes, say "environment looks good" and continue.
- Node ≥ 20 (
node --version). ~/.gtm-os/exists (test -d ~/.gtm-os).~/.gtm-os/.envis non-empty (test -s ~/.gtm-os/.env).yalc-gtmis resolvable on PATH (which yalc-gtm).
For each failure, surface the specific fix from CLAUDE.md "Common stuck states":
yalc-gtmnot on PATH →npm i -g yalc-gtm-os(orpnpm link --globalfrom the repo root if hacking on YALC itself).~/.gtm-os/missing or.envempty → runyalc-gtm startto scaffold; the CLI writes the template and opens it for editing.- Localhost won't open → confirm
yalc-gtm startexited cleanly, copy the URL from the terminal banner, check port 3847 isn't taken (lsof -i :3847). - Node < 20 → upgrade via nodejs.org.
If ~/.gtm-os/ is not initialized, route to /setup immediately regardless of what the user says next. The /setup skill owns install + scaffold + key entry + capture + preview + commit + doctor + framework recommendation. Don't reimplement any of it here.
Step 3 — Intent question
Once prerequisites pass, ask the user this exact question with 4 multi-choice options:
What would you like to do first?
(a) Qualify leads — score a CSV/JSON list against your ICP using the 7-gate pipeline. (b) Launch a LinkedIn campaign — multi-step outreach with A/B variants. (c) Scrape a LinkedIn post for engagers — pull likers/commenters into a lead list. (d) Show me everything / I'm exploring — guided tour of every command.
Wait for the answer. Don't assume.
Step 4 — Route
Based on the user's choice, route to the matching CLI command. Use the invocation pattern:
cd ~/Desktop/gtm-os && set -a && source .env.local && set +a && npx tsx src/cli/index.ts <command>
| Choice | Route to |
|---|---|
| (a) Qualify leads | `leads:import --source <csv |
| (b) Launch a LinkedIn campaign | campaign:create --title <t> --hypothesis <h>. Ask for title and hypothesis. |
| (c) Scrape a LinkedIn post | leads:scrape-post --url <linkedin-url>. Ask for the post URL. |
| (d) Show me everything | Run yalc-gtm --help, then offer a guided tour of the major command families (leads:*, campaign:*, email:*, orchestrate). |
Hard guard: if at any point during routing you discover ~/.gtm-os/ is not initialized (e.g., a command errors with a missing-config message), stop the routed flow and hand off to /setup first. Resume the original intent after setup completes.
Need help setting it up?
This page tells you what yalc-orientation does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.
Book a call →The directory stays free. There is nothing gated behind this.