From sales
Use when the user asks for 'morning briefing', 'daily brief', 'what's on my plate today', 'wrap up my day'. Reads pipeline and deal files automatically — a briefing generated without data is a to-do list template, not intelligence.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sales:daily-briefingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```python
base = SOLO_ROOT if solo_installed else SALES_ROOT
# Core pipeline data
deals = glob("data/1-Projets/active-deals/*.md")
pipeline = read(f"{base}/data/1-Projets/pipeline.md") # if Solo installed
signals = read("data/1-Projets/signals/today-signals.md") # from signal-trapper-agent
prep_files = glob("data/1-Projets/active-deals/*-prep-*.md") # from call-prep
profile = read("data/2-Domaines/sales-profile.json")
Opening 3-number snapshot (always):
📊 [Date] — Sales Pulse
Active deals: [N] worth €[weighted pipeline]
Outstanding: €[X] in open proposals
Overdue follow-ups: [N] (last touch >7 days)
From deal files, surface:
If data/1-Projets/signals/today-signals.md exists (written overnight by signal-trapper-agent):
🔔 Overnight Signals
[Company A]: [signal type] — [play recommendation]
[Company B]: [signal type] — [outreach draft ready]
If no signals file: "(No overnight signals — run signal-trapper-agent to monitor accounts)"
If calendar connected: auto-pull.
If not: check data/1-Projets/active-deals/ for any prep files dated today.
For each meeting found, link to the call-prep brief:
"2pm — TechStart discovery (prep brief ready: data/1-Projets/active-deals/techstart-prep-[today].md)"
Rank by: revenue impact × urgency × relationship risk
Today's Top 3:
1. [Action] → [Deal / €value] → [Why today, not tomorrow]
2. [Action] → [Deal / relationship stake] → [Deadline or signal]
3. [Action] → [Pipeline health / strategic] → [Context]
Trigger: "wrap up my day" / "end of day" / "eod brief"
📋 Day Wrap — [Date]
Completed:
[Actions taken — from today's priority list]
Open items (carry to tomorrow):
[Anything not done, re-prioritized]
Tomorrow's top 3:
[Derived from pipeline state + any new signals]
| Mode | Trigger | Length |
|---|---|---|
| Full briefing | default | 3-section output |
| Quick brief | "quick brief" / "tldr" | 3 bullets only |
| EOD | "wrap up" / "end of day" | Day summary + tomorrow |
/sales:pipeline brief, morning cadencenpx claudepluginhub jamon8888/cc-suite --plugin SalesGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.