From sales
Use when the user asks to 'draft proposal', 'create proposal for [Client]', 'generate SOW'. Reads call summary and deal files BEFORE writing — a proposal built without the client's own words is a template, not a proposal.
npx claudepluginhub jamon8888/cc-suite --plugin SalesThis skill uses the workspace's default tool permissions.
```python
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
base = SOLO_ROOT if solo_installed else SALES_ROOT
call_summary = read(f"data/1-Projets/prospects/{client_slug}/call-summary.md")
deal_file = read(f"data/1-Projets/active-deals/{client_slug}.md")
research = read(f"data/3-Ressources/{client_slug}.md")
profile = read("data/2-Domaines/sales-profile.json")
voice_dna = read(f"{base}/data/2-Domaines/voice-dna.json")
Report before writing:
Proposal context — [Client]
Call summary: [FOUND dated X — extracting their language now] / [NOT FOUND — brief will be generic]
Deal file: [FOUND — [N] interactions] / [NOT FOUND]
Research: [FOUND] / [NOT FOUND]
Extract from call summary — show these before writing the proposal:
"Using these client quotes to anchor the proposal:
- '[Verbatim pain phrase from call notes]'
- '[Their stated outcome in their words]'"
If no call summary: "No discovery notes found for [Client]. The proposal will be generic without them. Proceed or run call prep first?"
| Trigger | Format |
|---|---|
| Defined project, fixed deliverables | SOW |
| Pitching new business | Sales Proposal (3-tier) |
| Ongoing / recurring engagement | Retainer Proposal |
| "pitch" or "vision" | Sales Proposal |
1. The Challenge — open with their words, not yours
Do: "As you described: '[verbatim quote from call summary]'" Don't: "Your organization faces challenges with [generic category]"
2. Our Approach — map to their specific situation (not a generic service description)
3. Scope of Work — explicit deliverables list
4. Exclusions ← mandatory section, never skip
The following are explicitly out of scope:
- [Item 1]
- [Item 2]
Any request outside this scope requires a Change Request and will be quoted separately.
5. Timeline — phased with milestones and dates
6. Investment — 3-tier pricing (Basic/Recommended/Premium)
7. Terms — pull from references/legal-snippets.md:
8. Next Steps — single CTA (sign / schedule kickoff / confirm by date)
Before saving, scan for and remove:
Replace with specifics: client's industry, their stated metrics, their own language from call notes.
WRITE f"data/1-Projets/prospects/{client_slug}/proposal-{date}.md"
UPDATE deal file: Stage → Proposal, Next Action → "Follow up in 5 days"
Confirm: "Proposal saved. Client card updated — stage set to Proposal."
/sales:create proposal