Sales guide
Recursively Self-Improving Module — persistent memory + structured improvement loop for Claude Code
npx -y skills add the-hugin/RSIm --skill sales-guideAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
5.3 KB, as published. Nobody here has run it
Skill: Sales Guide
Purpose: Onboarding and creation of product / portfolio guides from documents (docx, PDF, website). Fixed question checklist at start, vendor/product card template, final output as HTML/PDF. When: User wants to create a Sales Guide, Product Guide, Partner Catalog, or similar structured document from source materials. Output: Structured HTML/PDF guide with vendor/product cards, branded design, and contact information.
PROCESS
Step 1 — Onboarding: question checklist
Ask all questions below in one message before starting work. Don't skip — they determine the entire document design.
Прежде чем начать, уточню несколько вещей:
1. АУДИТОРИЯ
Кто читатель? (ИТ-директор / менеджер по закупкам / технический специалист / продавец)
Знакомы ли они с темой?
2. ГЛУБИНА
Что важно для аудитории? (отметь нужное)
[ ] Боли и проблемы, которые решает продукт
[ ] Профиль ЛПР (кто принимает решение о покупке)
[ ] Регуляторика и compliance
[ ] Технические характеристики
[ ] Конкурентное сравнение
3. SCOPE ВЕНДОРОВ / ПРОДУКТОВ
Какие вендоры/продукты включить?
Есть ли источники: docx, PDF, URL сайта?
Нужно ли дополнить из открытых источников?
4. БРЕНДИНГ
Есть ли фирменные цвета (hex), логотип, шрифты?
Если нет — использовать нейтральный корпоративный стиль?
5. ФОРМАТ ВЫВОДА
[ ] HTML (для просмотра в браузере)
[ ] PDF через Ctrl+P / @media print
[ ] Оба варианта
Ориентация: A4 вертикально / горизонтально?
6. КОНТАКТЫ
Чьи контакты поставить в конце / на карточках?
Wait for answers. Don't guess.
Step 2 — Collect materials
Based on Step 1 answers:
- Documents → read provided files (docx/PDF)
- Websites → if URLs provided or need to supplement — use
web-scraper - Branding → if PDF with logo — use
extract-brand-palette
Build vendor/product list with fields:
- Name, category, key capabilities
- Pain points solved (if requested)
- Decision-maker profile (if requested)
- Certifications/compliance (if requested)
Step 3 — Document structure
Propose structure before generating:
Предлагаемая структура гайда:
1. Обложка (название, компания, дата)
2. Введение (1 абзац — для кого и о чём)
3. Карточки вендоров/продуктов (N штук)
4. Сводная таблица сравнения (опционально)
5. Контакты
Подтвердить или изменить?
Wait for confirmation.
Step 4 — Generate HTML
Vendor card template:
<div class="vendor-card">
<div class="vendor-header">
<div class="vendor-logo">[LOGO or abbreviation]</div>
<div class="vendor-meta">
<h2 class="vendor-name">[Name]</h2>
<span class="vendor-category">[Category]</span>
</div>
</div>
<div class="vendor-body">
<div class="vendor-description">[Brief description — 2-3 sentences]</div>
<div class="pain-list">
<h3>Решаемые задачи</h3>
<ul>
<li>[pain 1]</li>
<li>[pain 2]</li>
<li>[pain 3]</li>
</ul>
</div>
<div class="vendor-table">
<table>
<tr><td>Ключевые продукты</td><td>[list]</td></tr>
<tr><td>Целевой заказчик</td><td>[decision-maker profile]</td></tr>
<tr><td>Сертификаты</td><td>[ФСТЭК / ФСБ / ISO etc.]</td></tr>
<tr><td>Сайт</td><td><a href="[url]">[domain]</a></td></tr>
</table>
</div>
</div>
</div>
CSS variables (branding):
:root {
--brand-primary: [hex from Step 1 or #1c254f];
--brand-secondary: [hex or #38bdf8];
--bg: #f8f9fb;
--surface: #ffffff;
--text: #1a202c;
--muted: #64748b;
--r: 8px;
}
@media print — always include:
@media print {
.vendor-card { page-break-inside: avoid; }
body { background: white; }
a { color: inherit; text-decoration: none; }
}
Step 5 — Final check
Before delivery:
- All vendors from scope included
- Contacts on last page
- @media print works (cards don't break across pages)
- Branding matches specified
- Vendor website links are clickable
RULES
- Don't start generating until checklist answers received
- If source is website only (no docx/PDF), scrape via
web-scraperfirst - If brand colors not provided — use neutral corporate blue (#1c254f)
- Vendor data only from provided sources or public websites; don't invent product capabilities
Gives 0 of the 12 instructions most sales crm skills give
Counted across 361 of the 361 authors here whose files we hold, read 2026-08-06
- Read product marketing context before writing if it existsin 22 of 361, across 14 files
- keep the ask low-frictionin 16 of 361, across 7 files
- Call RUBE_SEARCH_TOOLS firstin 15 of 361, across 5 files
- personalize every outbound messagein 13 of 361, across 4 files
- confirm connection status is activein 13 of 361, across 4 files
- Keep forwardable blurbs under 100 wordsin 13 of 361, across 4 files
- State if personalization context is missingin 13 of 361, across 4 files
- Cut any sentence that does not drive a replyin 13 of 361, across 4 files
- Use proof instead of adjectivesin 12 of 361, across 3 files
- Use a single, low-friction call to actionin 12 of 361, across 4 files
- Calibrate tone to the specific audiencein 12 of 361, across 3 files
- Make each follow-up email add new valuein 12 of 361, across 6 files
Said here and by no other author read
- ask all onboarding questions in one message
- read provided documents for source material
- scrape websites if provided as sources
- extract brand palette from provided files
- propose the document structure before generating
- wait for structure confirmation before generating
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once.