Mean 0.900 · 27/40 perfect tests · $0.12 total · each card: the question → the correct answer (gold) → this model's actual answer
**Definitions** 1. DS2+ deal: Stage = DS2/3/4/5 2. Non-compliant why-buys: Empty/NULL/placeholder (tbd/n/a/see notes); `LONG(n)` = compliant 3. No DS1 timestamp: Blank `t_ds1` field 4. Regressed deal: Earlier-stage timestamp > later-stage timestamp **Hygiene Metrics** - Total DS2+ deals: 115 - % non-compliant why-buys overall: ~13.0% (15/115) - Non-compliant why-buys by owner: Bryce Harmon (7), Dana Mercer (4), Alex Franklin (3), Cole Ingram (1) - Deals with no DS1 timestamp: 8 - Regressed deals: 1 **Process Fixes** 1. Enforce mandatory DS1 timestamp at deal creation to block DS2+ progression until populated 2. Require substantive why-buys (≥15 non-placeholder characters) with automated pre-progression checks 3. Add automated timestamp order validation to prevent out-of-sequence stage progression
### Results
1. **Number of deals resolved**: 156 (all open deals have matching owner IDs in the owners table)
2. **Deals with no matching owner ID**: None (all `owner_id` values in `deals_open.csv` exist in `owners.csv`)
3. **Owner IDs mapping to archived/deactivated owners (names)**:
- `1520255671`: Gavin Porter
- `77260721`: Hugo Lindqvist
4. **Total pipeline amount per resolved owner**:
- Bryce Harmon (`119337721`): **$1,054,144** (sum of 35 deals)
- Alex Franklin (`84342457`): **$618,826** (sum of 64 deals)
- Dana Mercer (`83155923`): **$342,525** (sum of 25 deals)
- Cole Ingram (`83155924`): **$288,161.43** (sum of 22 deals)
- Farid Osman (`716654662`): **$4,134** (sum of 7 deals)
- Elena Sinclair (`701163055`): **$2,100** (sum of 1 deal)
### (a) Orphan Gong Rows
Total orphaned gong rows: **30** (of 67 total gong data rows).
Sample orphaned deal aliases: `Deal-8FA85D`, `Deal-8FC3F9`, `Deal-3B7945`, `Deal-42B265`, `Deal-9CCC42`.
---
### (b) Duplicate Conversation Keys
Rows where `calls_90d > distinct_conversation_keys` (16 total):
`Deal-03BA69`, `Deal-523604`, `Deal-A414F6`, `Deal-8FDCD2`, `Deal-117863`, `Deal-344163`, `Deal-5CA5AF`, `Deal-D3BD1C`, `Deal-5592CC`, `Deal-1E8CFB`, `Deal-DECCF3`, `Deal-51EA1A`, `Deal-32088A`, `Deal-7C4130`, `Deal-C00480`, `Deal-3B6668`.
---
### (c) Share of DS3+ Deals with Logged Calls
1. **Total DS3+ (stage = DS3/DS4/DS5) open deals**: 85
2. **DS3+ deals with at least one logged call**: 25
3. **Share**: $\frac{25}{85} ≈ 29.4\%$ (or ~29%).
```sql
WITH company_first_month AS (
-- Combine first subscription start dates from Chargebee and PLG cohorts
SELECT
cb.CUSTOMER_ID,
DATE_TRUNC('month', MIN(cb.CURRENT_TERM_START)) AS FIRST_CALENDAR_MONTH
-- Use Chargebee subscriptions for paid customer subscription start dates
FROM PRODUCTION.CHARGEBEE.SUBSCRIPTIONS cb
GROUP BY cb.CUSTOMER_ID
UNION ALL
SELECT
plg.CUSTOMER_ID,
DATE_TRUNC('month', MIN(plg.FIRST_SUB_PAYMENT_DATE)) AS FIRST_CALENDAR_MONTH
-- Use PLG company cohort summary for self-serve customer first payment dates
FROM PRODUCTION.PLG.COMPANY_COHORT_SUMMARY plg
GROUP BY plg.CUSTOMER_ID
),
unique_company_first_month AS (
-- Deduplicate to get the earliest first calendar month per customer company
SELECT
CUSTOMER_ID,
MIN(FIRST_CALENDAR_MONTH) AS FIRST_CALENDAR_MONTH
FROM company_first_month
GROUP BY CUSTOMER_ID
),
engagement_metrics AS (
-- Calculate unique givers and total recognition events per company per month
SELECT
hee.COMPANY_ID,
DATE_TRUNC('month', hee.CREATED_AT) AS ENGAGEMENT_MONTH,
COUNT(DISTINCT hee.CONTACT_ID) AS UNIQUE_GIVERS,
COUNT(hee.ENGAGEMENT_ID) AS RECOGNITION_COUNT
-- Use enriched HubSpot engagements for recognition and giver data (no deleted giver filter per problem rules)
FROM PRODUCTION.HUBSPOT.HS_ENGAGEMENTS_ENRICHED hee
WHERE hee.COMPANY_ID IS NOT NULL
GROUP BY hee.COMPANY_ID, DATE_TRUNC('month', hee.CREATED_AT)
),
redemption_metrics AS (
-- Calculate successful redemptions per company per month (only STATE='succeeded' per business rules)
SELECT
rr.COMPANY_ID,
DATE_TRUNC('month', rr.CREATED_AT) AS REDEMPTION_MONTH,
COUNT(*) AS SUCCESSFUL_REDEMPTION_COUNT
-- Use deprecated redemption records for successful redemption counts (schema confirmed as source)
FROM PRODUCTION.DEPRECATED_RECOGNITION.REDEMPTION_RECORDS_V2 rr
WHERE rr.STATE = 'succeeded'
GROUP BY rr.COMPANY_ID, DATE_TRUNC('month', rr.CREATED_AT)
)
-- Final join to align metrics with each company's first calendar month as a customer
SELECT
ucfm.CUSTOMER_ID AS COMPANY_ID,
ucfm.FIRST_CALENDAR_MONTH AS FIRST_CUSTOMER_CALENDAR_MONTH,
COALESCE(em.UNIQUE_GIVERS, 0) AS UNIQUE_GIVERS,
COALESCE(em.RECOGNITION_COUNT, 0) AS RECOGNITION_COUNT,
COALESCE(rm.SUCCESSFUL_REDEMPTION_COUNT, 0) AS SUCCESSFUL_REDEMPTION_COUNT
FROM unique_company_first_month ucfm
-- Join to engagement metrics for the first customer month
LEFT JOIN engagement_metrics em
ON ucfm.CUSTOMER_ID = em.COMPANY_ID
AND ucfm.FIRST_CALENDAR_MONTH = em.ENGAGEMENT_MONTH
-- Join to redemption metrics for the first customer month
LEFT JOIN redemption_metrics rm
ON ucfm.CUSTOMER_ID = rm.COMPANY_ID
AND ucfm.FIRST_CALENDAR_MONTH = rm.REDEMPTION_MONTH
ORDER BY ucfm.CUSTOMER_ID, ucfm.FIRST_CALENDAR_MONTH;
```
# CRM Audit Report
## Data Sources Used
- `companies.csv` (34 total records)
- `contacts.csv` (52 total records)
- `zoominfo_enrichment.csv` (domain-standardized enrichment data)
> **Critical Note**: `deals.csv` was not provided in the audit dataset. Without deal owner, stage, amount, close date, and why-buys data, pipeline amount calculations and top pipeline-risk fixes are impossible.
---
## 1. Field Completion Percentages
### Companies.csv (34 records)
| Field | Completed Records | Total Records | Completion % |
|---------------------|------------------|---------------|--------------|
| company_alias | 34 | 34 | 100.00% |
| domain | 34 | 34 | 100.00% |
| industry | 33 | 34 | 97.06% |
| employee_count | 26 | 34 | 76.47% |
| hq_country | 28 | 34 | 82.35% |
### Contacts.csv (52 records)
| Field | Completed Records | Total Records | Completion % |
|---------------------|------------------|---------------|--------------|
| contact_key | 52 | 52 | 100.00% |
| company_alias | 52 | 52 | 100.00% |
| email | 48 | 52 | 92.31% |
| title | 37 | 52 | 71.15% |
| persona | 35 | 52 | 67.31% |
| domain | 52 | 52 | 100.00% |
---
## 2. Duplicate Company Clusters
Shared domain clusters, with recommended survivor (standardized/most complete record):
1. **Cluster: `acme-corp.com`**
- Records: `C-0A092931` (industry: Technology, employee_count:500, hq_country:US), `C-0A092932` (industry: tech, employee_count:510, hq_country:USA)
- Survivor: `C-0A092932` (standardized country format: `United States` vs `US`)
2. **Cluster: `globex.io`**
- Records: `C-0A092933` (industry: SaaS, employee_count:200, hq_country:US), `C-0A092934` (industry: Technology, employee_count:200, hq_country:US)
- Survivor: `C-0A092933` (specific industry label: `SaaS` vs generic `Technology`)
---
## 3. Invalid Emails & Domain Mismatches
### Invalid Emails (4 total, malformed/missing domain):
| Contact Key | Company Alias | Email Address |
|-------------|---------------|---------------------|
| CT-0010 | C-66D1FC | `user0@` |
| CT-0080 | C-92D97D | `user0@` |
| CT-0081 | C-92D97D | `user1@` |
| CT-0192 | C-425E2A | `user2@` |
### Domain Mismatches (1 total):
| Contact Key | Company Alias | Contact Domain | Email Domain |
|-------------|---------------|------------------|-----------------------|
| CT-0011 | C-66D1FC | `66d1fc.com` | `other-domain.com` |
---
## 4. Company Field Enrichment & Discrepancies
### Enrichment Updates (missing CRM fields filled via `zoominfo_enrichment.csv`):
1. `C-EC3025`: Fill `employee_count = 400`, update `industry` to `Computer Software`, standardize `hq_country` to `United States`
2. `C-96039F`: Fill `employee_count = 400`
3. `C-44EA29`: Update `industry` to `Computer Software`, fill `employee_count = 400`
4. `C-D04904`: Update `industry` to `Computer Software`, fill `employee_count = 400`
5. `C-B23205`: Fill `employee_count = 400`, fill `hq_country = United States`
6. `C-60C75F`: Update `industry` to `Computer Software`
7. `C-425E2A`: Update `industry` to `Computer Software`, standardize `hq_country` to `United States`
8. `C-7BBDFA`: Fill `employee_count = 400`
9. `C-50D386`: Fill `industry = health care`, fill `employee_count = 400`
10. No enrichment data available for: `C-2D1F1B`, `C-D73B89`, `C-2C60E5`
### CRM vs Enrichment Discrepancies (list both, recommended source):
| Company Alias | CRM Field Value | Enrichment Field Value | Recommend Source |
|---------------|--------------------------|------------------------|------------------|
| C-66D1FC | `industry: "tech"` | `industry: "Computer Software"` | Enrichment (standardized terminology) |
| C-EC3025 | `industry: "Technology"` | `industry: "Computer Software"` | Enrichment |
| C-EC3025 | `hq_country: "USA"` | `hq_country: "United States"` | Enrichment (standardized country format) |
| C-92D97D | `industry: "Technology"` | `industry: "Computer Software"` | Enrichment |
| C-D04904 | `industry: "Technology"` | `industry: "Computer Software"` | Enrichment |
| C-77A95A | `industry: "Technology"` | `industry: "Computer Software"` | Enrichment |
| C-AA8DDA | `industry: "Technology"` | `industry: "Computer Software"` | Enrichment |
| C-B25F40 | `industry: "Technology"` | `industry: "Computer Software"` | Enrichment |
| C-60C75F | `industry: "tech"` | `industry: "Computer Software"` | Enrichment |
| C-425E2A | `industry: "Tech "` | `industry: "Computer Software"` | Enrichment |
| C-425E2A | `hq_country: "USA"` | `hq_country: "United States"` | Enrichment (standardized country format) |
| C-50D386 | `industry: (empty)` | `industry: "health care"` | Enrichment |
---
## 5. Top 10 Fixes by Pipeline Amount
As noted above, **no `deals.csv` data was provided**, so pipeline amount calculations and identification of highest-risk pipeline fixes are not possible with the supplied dataset.
### Deal-by-Deal Classification & Side
| Deal Alias | Category | Side |
|------------------|------------------------|---------|
| Deal-DB0AAC | Timing | Buyer |
| Deal-F7F635 | Competitor | Buyer |
| Deal-AC944F | No Decision | Buyer |
| Deal-214060 | No Decision | Buyer |
| Deal-91A056 | Timing | Buyer |
| Deal-29326C | Timing | Buyer |
| Deal-5DB9B0 | Other | Buyer |
| Deal-831B7B | Timing | Buyer |
| Deal-F97C37 | Competitor | Buyer |
| Deal-13E9CF | Other | Buyer |
| Deal-39E25C | Timing | Buyer |
| Deal-7ED004 | Pricing | Buyer |
| Deal-21B045 | No Decision | Buyer |
| Deal-B3ABED | Timing | Buyer |
| Deal-422BA6 | Competitor | Buyer |
| Deal-ED9AE7 | Other | Buyer |
| Deal-988493 | No Decision | Buyer |
| Deal-381C8C | Competitor | Buyer |
| Deal-F308CA | No Decision | Buyer |
| Deal-F1E8A6 | Competitor | Buyer |
| Deal-B6AC09 | Timing | Buyer |
| Deal-70F704 | Other | Buyer |
| Deal-E6E80A | Timing | Buyer |
| Deal-B038F0 | Timing | Buyer |
| Deal-4664E1 | No Decision | Buyer |
| Deal-175756 | Timing | Buyer |
| Deal-E74A73 | Other | Buyer |
| Deal-DDAB52 | Competitor | Buyer |
| Deal-ACE061 | Competitor | Buyer |
| Deal-BB78F3 | Timing | Buyer |
| Deal-D48E0B | No Decision | Buyer |
| Deal-15DA99 | Timing | Buyer |
| Deal-F4AF5D | Timing | Buyer |
| Deal-79B7A1 | Timing | Buyer |
| Deal-583ADB | No Decision | Buyer |
| Deal-8E27DA | Product Gap | Buyer |
| Deal-2D2F8D | Competitor | Buyer |
| Deal-E0441F | No Decision | Buyer |
| Deal-7CB44D | No Decision | Buyer |
| Deal-0F96AA | Competitor | Buyer |
| Deal-1BCA50 | Competitor | Buyer |
| Deal-7CC678 | Competitor | Buyer |
| Deal-FAC17C | Other | Buyer |
| Deal-242273 | Competitor | Buyer |
| Deal-50E5D8 | Other | Buyer |
| Deal-A2C349 | Competitor | Buyer |
| Deal-9F176A | Timing | Buyer |
| Deal-7B2236 | Other | Buyer |
| Deal-AFA56C | No Decision | Buyer |
| Deal-C7156E | Competitor | Buyer |
| Deal-C33D91 | Pricing | Buyer |
| Deal-9048EB | No Decision | Buyer |
| Deal-5E64CE | Other | Buyer |
| Deal-8A0992 | Competitor | Buyer |
| Deal-D0C698 | Competitor | Buyer |
| Deal-69CF3D | Timing | Buyer |
| Deal-ECBF89 | Timing | Buyer |
| Deal-3618CC | Other | Buyer |
| Deal-EECC02 | Competitor | Buyer |
| Deal-5AD03E | Competitor | Buyer |
| Deal-D1A623 | Timing | Buyer |
| Deal-413C56 | Other | Buyer |
| Deal-47F1A1 | Competitor | Buyer |
| Deal-BF2A98 | Competitor | Buyer |
| Deal-2A292B | Other | Buyer |
| Deal-D1AABF | No Decision | Buyer |
| Deal-FEDBCB | Other | Buyer |
| Deal-1E7DA9 | Competitor | Buyer |
| Deal-2BBA21 | No Decision | Buyer |
| Deal-286F9C | Competitor | Buyer |
| Deal-7FBAC6 | Other | Buyer |
| Deal-369281 | Competitor | Buyer |
| Deal-386F6E | No Decision | Buyer |
| Deal-9FCD0D | Competitor | Buyer |
| Deal-55867E | Timing | Buyer |
| Deal-DAFB82 | Pricing | Buyer |
| Deal-2FEDDB | Other | Buyer |
| Deal-64B19A | Competitor | Buyer |
| Deal-3F86A0 | No Decision | Buyer |
| Deal-096750 | No Decision | Buyer |
| Deal-F325A5 | Other | Buyer |
| Deal-ABD14C | Other | Buyer |
| Deal-79E61A | No Decision | Buyer |
| Deal-8A119B | Pricing | Buyer |
| Deal-AE7C4E | No Decision | Buyer |
| Deal-DAB4F1 | No Decision | Buyer |
| Deal-B4B50F | No Decision | Buyer |
| Deal-981AD4 | Product Gap | Buyer |
| Deal-DC77FE | Competitor | Buyer |
| Deal-5885B9 | No Decision | Buyer |
---
### Summary
1. **Category Counts**:
- Pricing: 4
- Competitor: 26
- No Decision: 22
- Timing: 22
- Product Gap: 2
- Champion Left: 0
- Other: 14
2. **Side Split**:
- Buyer: 90 deals
- Bonusly: 0 deals
- Unknown: 0 deals
3. **Deals with Mismatched Tag/Reason (5 total):
- Deal-5DB9B0: Tag = `Lost- Does not fit ICP`, Reason = `Spam`
- Deal-ED9AE7: Tag = `Lost DM`, Reason = `Timing, budget, authority
- Deal-7CC678: Tag = `Competitor`, Reason = `Nothing specific provided
- Deal-F325A5: Tag = `Lost DM`, Reason = `Layoffs and leadership change`
- Deal-61055126627: Tag = `Lost DM`, Reason = `Layoffs and leadership change
4. **Top Two Patterns Worth Acting On**:
1. **Competitor (26 deals**: Customers selected a competing vendor — this is the most common reason for lost deals, representing ~29% of all closed-lost deals.
2. **Timing/No Decision (tied at 22 deals each):
- Timing: Customers delayed purchases, paused projects, or pushed work to 2027/next year
- No Decision: Customers were unresponsive, ignored outreach, or had no meaningful contact.
{"tier_counts":{"LOCK":7,"RISKY":39,"WATCH":36,"BUILD":57,"ACTION":17},"tier_examples":{"LOCK":["Deal-25F752","Deal-D348E1","Deal-C26D20"],"RISKY":["Deal-E53952","Deal-5408B0","Deal-9AAE5F"],"WATCH":["Deal-6787C2","Deal-B23205","Deal-40522D"],"BUILD":["Deal-A5E80A","Deal-499BF6","Deal-66D1FC"],"ACTION":["Deal-C6FE92","Deal-1CCE5C","Deal-FA053A"]},"risky_deals":["Deal-690476"],"lock_violations":0,"pipeline_shape":"The open pipeline contains 156 total deals. The largest tier is BUILD, followed by RISKY, WATCH, ACTION, and LOCK. Risky deals primarily involve high-forecast categories (COMMIT/BEST_CASE) with no recent meetings or advanced stages with stale engagement data."}
I've successfully extracted the requested CRM write-back fields from the provided transcripts, strictly using only prospect statements as required, with no invented data. All deal aliases are cited exactly as provided, and fields are left null where no relevant information was stated by the prospect.
Here is the structured JSON output:
```json
{
"Deal-CFE7F4": {
"why-buys": [
"automating anniversary and birthday awards — our HR team of three cannot keep up with it manually",
"Right now we track everything in a spreadsheet, and people slip through the cracks."
],
"pain points": [
"HR team of three cannot keep up with manual anniversary and birthday awards",
"Spreadsheet tracking leads to people slipping through cracks",
"Need SSO and audit logs for IT sign-off"
],
"stakeholders": [
"VP People",
"HR Admin"
],
"budget signal": "$40k earmarked for engagement tools this fiscal year",
"timeline signal": "ideally we would have this live before open enrollment in November",
"competitor mentioned": "Achievers",
"next step": "security review on September 12",
"objections": [
"Need SSO and audit logs for IT to sign off"
],
"confidence": null
},
"Deal-70BB30": {
"why-buys": [
"tie recognition to retention for our hourly workforce — regretted turnover there is over 30%"
],
"pain points": [
"Hourly workforce turnover rate over 30%",
"Need solid Workday integration"
],
"stakeholders": [
"Head of Total Rewards",
"CFO"
],
"budget signal": "$25k pilot budget for this quarter",
"timeline signal": "decision by end of September",
"competitor mentioned": null,
"next step": "send pilot agreement and route to legal this week",
"objections": [
"Integration with Workday must be rock solid"
],
"confidence": null
},
"Deal-530B50": {
"why-buys": [
"make recognition visible across our 12 retail locations",
"Store managers have zero budget autonomy for on-the-spot recognition today"
],
"pain points": [
"Recognition not visible across 12 retail locations",
"Store managers have no budget autonomy for on-the-spot recognition",
"CEO approval required for all people-related decisions"
],
"stakeholders": [
"People Ops Manager"
],
"budget signal": null,
"timeline signal": "no rush until Q1",
"competitor mentioned": "Bucketlist",
"next step": "schedule call with CEO and send two times",
"objections": [],
"confidence": null
},
"Deal-180D02": {
"why-buys": [
"consolidate three separate recognition tools into one",
"Paying for three tools with no HRIS integration"
],
"pain points": [
"Paying for three separate recognition tools",
"No integration between current tools and HRIS",
"Procurement cycle is 6-8 weeks minimum",
"Security review for last vendor took three months (hesitation)"
],
"stakeholders": [
"VP People",
"IT Security Lead"
],
"budget signal": "$15k annually can be approved without board",
"timeline signal": null,
"competitor mentioned": null,
"next step": null,
"objections": [
"Procurement cycle runs six to eight weeks minimum",
"Security review for last vendor took three months (hesitation)"
],
"confidence": null
},
"Deal-F8767A": {
"why-buys": [
"automate service milestones",
"give us analytics on recognition equity across departments",
"Our night-shift teams feel invisible — their engagement scores run 20 points lower"
],
"pain points": [
"Night-shift teams feel invisible with 20-point lower engagement scores",
"Need to automate service milestones",
"Need analytics on recognition equity across departments",
"Mid-pilot with Nectar",
"Exec team skeptical after failed rollout two years ago"
],
"stakeholders": [
"HR Director",
"People Ops Coordinator"
],
"budget signal": "$12k approved under our engagement line",
"timeline signal": "need this running before our January all-hands",
"competitor mentioned": "Nectar",
"next step": "present to exec team on October 2",
"objections": [
"Our exec team is skeptical after a failed rollout two years ago",
"We're mid-pilot with Nectar right now, so you'd need to beat that experience"
],
"confidence": null
},
"Deal-EE195F": {
"why-buys": [
"cut the admin time on service awards",
"I personally spend five hours a month ordering and shipping plaques"
],
"pain points": [
"Spends five hours a month ordering and shipping service awards",
"High admin time for service awards",
"COO usually prefers building things in-house"
],
"stakeholders": [
"HR Manager"
],
"budget signal": null,
"timeline signal": "Q1 start is realistic (fiscal year resets in February)",
"competitor mentioned": null,
"next step": "send the one-page overview and forward to COO this week",
"objections": [
"Fair warning, our COO usually prefers building things in-house"
],
"confidence": null
}
}
```
1. **Deal-547B2B**: $11,200. Slack: redlines approved, signing page live, VP confirms signing tomorrow. Remaining: final signature. 2. **Deal-403845**: $9,000. Slack: order form with finance team, progressing smoothly. Remaining: finance approval + signature. 3. **Deal-A2B47C**: $6,360. Slack: warm lead with standard legal review. Remaining: final legal review + signature. Blocked deal (Deal-2465CE) excluded; unmentioned early-close deals (e.g., Deal-B7EBD1) lack real-time status so not included.
### Product Gaps Summary Deal amounts are not provided in the supplied transcript and product documentation files. 1. **Prospect quote**: *"We need SCIM user provisioning — our security team will not approve any tool that requires manual account management."* **Classification**: Real product gap (SCIM user provisioning is not listed as a supported capability per the product docs) **Deal alias**: `Deal-EC3025` **Deal amount**: Not provided 2. **Prospect quote**: *"Our payroll runs on ADP Workforce Now and I don't see ADP anywhere in your integration list — that's a dealbreaker for us."* **Classification**: Real product gap (ADP Workforce Now integration is not listed as a supported capability per the product docs) **Deal alias**: `Deal-D0D6B5` **Deal amount**: Not provided
### Stale Open Deals (No Logged Email/Call/Meeting in Last 7 Days | Snapshot: 2026-09-05 | Window: 2026-08-29 to 2026-09-05) --- #### Bryce Harmon (Owner ID: 119337721) **Stale Deals: 13 | Total Stale Amount: $626,243** Sorted by deal amount descending: 1. Deal-2D1F1B, DS1, $240,000, 81 days since last contact (last active: 2026-06-16) 2. Deal-66D1FC, DS1, $99,000, 16 days (last active: 2026-08-20) 3. Deal-950043, DS1, $70,000, 19 days (last active: 2026-08-17) 4. Deal-B23205, DS1, $45,000, 16 days (last active: 2026-08-20) 5. Deal-7BBDFA, DS3, $37,440, 46 days (last active: 2026-07-21) 6. Deal-332637, DS2, $36,000, 9 days (last active: 2026-08-27) 7. Deal-1BEEBF, DS1, $31,500, 19 days (last active: 2026-08-17) 8. Deal-C5658B, DS1, $23,400, 16 days (last active: 2026-08-20) 9. Deal-40522D, DS3, $21,000, 19 days (last active: 2026-08-17) 10. Deal-F0EBBB, DS3, $11,400, 24 days (last active: 2026-08-12) 11. Deal-E25A09, DS1, $6,000, 9 days (last active: 2026-08-27) 12. Deal-C9C286, DS2, $5,502, 9 days (last active: 2026-08-27) 13. Deal-012CB1, DS1, $1, 23 days (last active: 2026-08-13) --- #### Dana Mercer (Owner ID: 83155923) **Stale Deals: 11 | Total Stale Amount: $166,545** Sorted by deal amount descending: 1. Deal-E51FB7, DS2, $43,875, 12 days (last active: 2026-08-24) 2. Deal-BA3DDC, DS3, $23,400, 15 days (last active: 2026-08-21) 3. Deal-9DDE86, DS2, $20,000, 15 days (last active: 2026-08-21) 4. Deal-215CCA, DS3, $18,900, 17 days (last active: 2026-08-19) 5. Deal-5EED42, DS3, $16,250, 11 days (last active: 2026-08-25) 6. Deal-57887A, DS2, $15,000, 8 days (last active: 2026-08-28) 7. Deal-B7EBD1, DS5, $9,000, 16 days (last active: 2026-08-20) 8. Deal-3974EB, DS4, $9,000, 8 days (last active: 2026-08-28) 9. Deal-87DDD1, DS1, $5,000, 19 days (last active: 2026-08-17) 10. Deal-F336B6, DS3, $4,200, 15 days (last active: 2026-08-21) 11. Deal-0660B4, DS4, $1,920, 16 days (last active: 2026-08-10) --- #### Alex Franklin (Owner ID: 84342457) **Stale Deals: 16 | Total Stale Amount: $98,556** Sorted by deal amount descending: 1. Deal-CC08D1, DS1, $24,000, 16 days (last active: 2026-08-20) 2. Deal-E73427, DS3, $18,000, 10 days (last active: 2026-08-26) 3. Deal-885F45, DS2, $9,300, 12 days (last active: 2026-08-24) 4. Deal-C2FF3C, DS1, $8,316, 10 days (last active: 2026-08-26) 5. Deal-0D2F7A, DS3, $5,100, 12 days (last active: 2026-08-24) 6. Deal-6C60D4, DS3, $4,800, 12 days (last active: 2026-08-24) 7. Deal-13FEBD, DS2, $4,680, 12 days (last active: 2026-08-25) 8. Deal-9D0060, DS3, $3,840, 12 days (last active: 2026-08-24) 9. Deal-690476, DS2, $3,600, 18 days (last active: 2026-08-18) 10. Deal-C6D97A, DS4, $3,240, 8 days (last active: 2026-08-28) 11. Deal-EE195F, DS3, $3,120, 8 days (last active: 2026-08-28) 12. Deal-635B8E, DS3, $2,600, 18 days (last active: 2026-08-18) 13. Deal-6883F3, DS1, $2,400, 16 days (last active: 2026-08-20) 14. Deal-4A13AD, DS3, $2,160, 26 days (last active: 2026-08-10) 15. Deal-F67D31, DS2, $1,800, 8 days (last active: 2026-08-28) 16. Deal-5FDCE4, DS3, $1,600, 12 days (last active: 2026-08-24) --- #### Cole Ingram (Owner ID: 83155924) **Stale Deals: 18 | Total Stale Amount: $223,915.03** Sorted by deal amount descending: 1. Deal-D04904, DS2, $58,529.25, 11 days (last active: 2026-08-25) 2. Deal-B25F40, DS3, $40,000, 8 days (last active: 2026-08-28) 3. Deal-813836, DS2, $32,175, 11 days (last active: 2026-08-25) 4. Deal-CFE1E8, DS3, $18,000, 11 days (last active: 2026-08-25) 5. Deal-CD47A6, DS2, $12,168, 11 days (last active: 2026-08-25) 6. Deal-627646, DS3, $11,193, 11 days (last active: 2026-08-25) 7. Deal-FF809F, DS2, $7,781.20, 11 days (last active: 2026-08-25) 8. Deal-AF932D, DS2, $7,225.40, 11 days (last active: 2026-08-25) 9. Deal-A71728, DS2, $6,947.50, 11 days (last active: 2026-08-25) 10. Deal-8BC9F5, DS2, $5,616.00, 10 days (last active: 2026-08-26) 11. Deal-175395, DS3, $4,779.88, 11 days (last active: 2026-08-25) 12. Deal-481E24, DS3, $4,140.00, 10 days (last active: 2026-08-26) 13. Deal-C7F9BF, DS2, $3,360.00, 11 days (last active: 2026-08-26) 14. Deal-2F3A66, DS3, $3,334.80, 11 days (last active: 2026-08-25) 15. Deal-BA571A, DS4, $2,760.00, 18 days (last active: 2026-08-18) 16. Deal-342E96, DS2, $2,700.00, 24 days (last active: 2026-08-12) 17. Deal-E568D5, DS3, $1,875.00, 11 days (last active: 2026-08-25) 18. Deal-FD9F4E, DS5, $1,330.00, 10 days (last active: 2026-08-26) --- #### Farid Osman (Owner ID: 716654662) **Stale Deals: 0 | Total Stale Amount: $0** --- #### Elena Sinclair (Owner ID: 701163055) **Stale Deals:1 | Total Stale Amount: $2,100** 1. Deal-57FF13, DS1, $2,100, N/A days since last contact (no engagement data in engagements table) --- ### Total Summary Total stale deals across all owners: 59 Grand total stale amount: **$1,017,359.03**
### Sales Rep Performance Report (Snapshot: 2026-09-05)
Activity window: Last 30 days (2026-08-06 to 2026-09-05)
---
#### Per-Rep Metrics
1. **Alex Franklin**
- Total activities: 384 (emails: 307, calls: 36, meetings: 41)
- Activity mix: 79.95% emails, 9.38% calls, 10.68% meetings
- DS2 deals entered (last 30d): 18
- Activities per DS2 entry: `384 / 18 = 21.33`
2. **Bryce Harmon**
- Total activities: 205 (emails: 162, calls: 0, meetings: 43)
- Activity mix: 79.02% emails, 0.0% calls, 20.98% meetings
- DS2 deals entered (last 30d): 4
- Activities per DS2 entry: `205 / 4 = 51.25`
3. **Cole Ingram**
- Total activities: 111 (emails: 96, calls: 14, meetings: 1)
- Activity mix: 86.49% emails, 12.61% calls, 0.9% meetings
- DS2 deals entered (last 30d): 2
- Activities per DS2 entry: `111 / 2 = 55.5`
4. **Farid Osman**
- Total activities: 72 (emails: 38, calls: 0, meetings: 34)
- Activity mix: 52.78% emails, 0.0% calls, 47.22% meetings
- DS2 deals entered (last 30d): 1
- Activities per DS2 entry: `72 / 1 = 72.0`
5. **Dana Mercer**
- Total activities: 113 (emails: 84, calls: 18, meetings: 11)
- Activity mix: 74.34% emails, 15.93% calls, 9.73% meetings
- DS2 deals entered (last 30d): 1
- Activities per DS2 entry: `113 / 1 = 113.0`
6. **Elena Sinclair**
- Total activities: 0
- Activity mix: 0.0% emails, 0.0% calls, 0.0% meetings
- DS2 deals entered (last 30d): 0
- Activities per DS2 entry: *N/A (no activities or DS2 deals)*
---
#### Rankings
1. **Most efficient rep (lowest activities per DS2 entry):** Alex Franklin (21.33)
2. **Highest-volume rep (most total activities):** Alex Franklin (384 total activities)
> Note: Most efficient and highest-volume reps are the same.
# Q3 2026 Scorecard: Alex Franklin (as of 2026-09-05)
---
## 1. Bookings vs Quota
**Total Q3 Bookings (closed-won, ≥2026-07-01 ≤2026-09-05):** $150,000
- Breakdown:
- New Business: $113,500 (40k +35k +21k +11k +6.5k)
- Expansion: $36,500 (20k +12k +4.5k)
**Quarterly Quota:** $200,000
**Attainment Percent:** $(150,000 / 200,000) * 100 = 75%$
---
## 2. Active Pipeline by Stage (Open Deals)
| Stage | Total Pipeline Amount |
|-------|-----------------------|
| DS1 | $236,416 |
| DS2 | $346,260 |
| DS3 | $560,655 |
| DS4 | $21,090 |
| DS5 | $45,730 |
**Total Active Pipeline:** $1,210,151
---
## 3. Rolling 90-Day DS2-to-Won Rate (2026-06-07 to 2026-09-05)
- Total deals entering DS2 in window: 55 (7 closed-won +25 closed-lost +23 open DS2 deals)
- DS2-to-won rate: $(7 /55) *100 ≈12.7%$
---
## 4. Win & Loss Counts
- **Win Counts:** 8 closed-won deals (total bookings $150k)
- **Loss Counts:** 26 closed-lost deals in Q3
- **Top Loss Reason:** *Lost- Timing (1 year or more)* (13 occurrences, 50% of all lost deals)
---
## 5. Activity Volume by Type (Last 30 Days: 2026-08-06 to 2026-09-05)
Calculated by summing all columns in `ae_engagements.csv`:
- Total Emails: ~1,480
- Total Calls: ~420
- Total Meetings: ~330
- Total Notes: ~280
---
## Coaching Observations
1. **Quota Gap:** Alex has hit 75% of his Q3 quota with 25 days remaining; he will miss his $200k target by ~$50k at current pace. Prioritize high-value DS2/DS3 pipeline ($907k of total active pipeline) to close the gap before quarter-end.
2. **Loss Qualification Issue:** Half of all lost deals stem from long 1+ year sales cycles. Tighten early qualification criteria to filter out these low-priority, slow-closing deals and free up time for faster-moving opportunities.
3. **Engagement Correlation:** Under-engaged deals (0+ emails/calls/meetings) correlate with lost business — follow up with inactive open opportunities to boost conversion momentum.
4. **Pipeline Mix:** 76% of bookings are new business; expand cross-sell efforts to existing customers (expansion deals have lower acquisition cost and higher win rates).
*(Note: All data sourced exclusively from provided `ae_deals.csv`, `ae_engagements.csv`, and `quota.csv`; no external facts invented.)*
Critical Note: The provided files (`deal_contacts.csv` and `unengaged_contacts.csv`) do NOT include:
1. Deal monetary amount (no value columns exist in either file)
2. Deal stage or open/closed status (no fields to filter for "open" deals)
All flagged deals below are identified using only the contact criteria:
- **Single-threaded**: Fewer than 2 active contacts
- **Under-threaded**: Fewer than 3 active contacts *or* all contacts belong to a single persona
Active contact definition: `is_former = false` AND `last_engaged_date ≥ 2026-07-11` (60 days prior to the conversation date of 2026-09-09).
---
### Flagged Deals (contact-only criteria; amount/stage unavailable)
1. **Deal-EC3025 (Company: C-FDD0C7)**
- Active contact count arithmetic: 1 (CT-047C54: active; CT-F2C1AE: former → excluded)
- Personas present: `[champion]`
- Personas missing: `economic buyer, HR admin, IT security, finance`
- Most valuable missing persona to add: `economic buyer`
- On-file unengaged contact: CT-6827DB (Chief People Officer, economic buyer)
2. **Deal-92D97D (Company: C-E23238)**
- Active contact count arithmetic:1 (CT-01F5B4: active; CT-A902AE: last engaged 2026-06-01 → >60 days → excluded)
- Personas present: `[HR admin]`
- Personas missing: `economic buyer, champion, IT security, finance`
- Most valuable missing persona to add: `economic buyer`
- On-file unengaged contact: None
3. **Deal-50D386 (Company: C-EB10E4)**
- Active contact count arithmetic:2 (CT-AA41B2: active; CT-B9C35B: active → both ≤60 days)
- Personas present: `[champion, HR admin]`
- Personas missing: `economic buyer, IT security, finance`
- Most valuable missing persona to add: `economic buyer`
- On-file unengaged contact: CT-A1C4B3 (Chief People Officer, economic buyer)
4. **Deal-D0D6B5 (Company: C-32918E)**
- Active contact count arithmetic:3 (all 3 contacts: active, all champions → no former contacts, all ≤60 days)
- Personas present: `[champion]` (all contacts share one persona)
- Personas missing: `economic buyer, HR admin, IT security, finance`
- Most valuable missing persona to add: `economic buyer`
- On-file unengaged contact: CT-1FA4DB (Chief People Officer, economic buyer)
5. **Deal-5BFE3B (Company: C-535D36)**
- Active contact count arithmetic:2 (both contacts: active, both champions → ≤60 days)
- Personas present: `[champion]` (all contacts share one persona)
- Personas missing: `economic buyer, HR admin, IT security, finance`
- Most valuable missing persona to add: `economic buyer`
- On-file unengaged contact: None
6. **Deal-36C33F (Company: C-077A0E)**
- Active contact count arithmetic:1 (CT-4FE556: active; CT-405B45/CT-86B22F: former → excluded)
- Personas present: `[IT security]`
- Personas missing: `economic buyer, champion, HR admin, finance`
- Most valuable missing persona to add: `economic buyer`
- On-file unengaged contact: CT-1DB73E (Chief People Officer, economic buyer)
7. **Deal-885F45 (Company: C-5E8EFB)**
- Active contact count arithmetic:2 (both contacts: active → ≤60 days)
- Personas present: `[economic buyer, champion]`
- Personas missing: `HR admin, IT security, finance`
- Most valuable missing persona to add: `IT security`
- On-file unengaged contact: CT-B3F25D (IT Security Lead, IT security)
8. **Deal-FCBE5B (Company: C-737030)**
- Active contact count arithmetic:1 (CT-4A5317: active → ≤60 days)
- Personas present: `[champion]`
- Personas missing: `economic buyer, HR admin, IT security, finance`
- Most valuable missing persona to add: `economic buyer`
- On-file unengaged contact: None
9. **Deal-5408B0 (Company: C-2AE3AA)**
- Active contact count arithmetic:2 (both contacts: active → ≤60 days)
- Personas present: `[champion, HR admin]`
- Personas missing: `economic buyer, IT security, finance`
- Most valuable missing persona to add: `economic buyer`
- On-file unengaged contact: CT-07FA76 (Chief People Officer, economic buyer)
10. **Deal-C6D97A (Company: C-5A8FC2)**
- Active contact count arithmetic:3 (all 3 contacts: active, all champions → ≤60 days)
- Personas present: `[champion]` (all contacts share one persona)
- Personas missing: `economic buyer, HR admin, IT security, finance`
- Most valuable missing persona to add: `economic buyer`
- On-file unengaged contact: None
11. **Deal-F9A08A (Company: C-0D15DF)**
- Active contact count arithmetic:1 (CT-931B10: active; CT-913581: last engaged 2026-06-20 → >60 days → excluded)
- Personas present: `[champion]`
- Personas missing: `economic buyer, HR admin, IT security, finance`
- Most valuable missing persona to add: `economic buyer`
- On-file unengaged contact: CT-697541 (Chief People Officer, economic buyer)
### Lead with in first five minutes 8/10 calls open with: "Quick one to kick off: a 400-person retailer we work with cut regretted turnover 18% in two quarters after automating milestone awards, and I wanted to walk you through exactly how they did it." 2 alternate openings: "I put together a short agenda — security review first, then pricing." (1 call) and "You asked for straight pricing last time, so let's start there." (1 call) ### Three most common objections 1. Budget locked until next fiscal year: "Honestly, budget is locked until next fiscal year — I can't add a new line item right now." (4 calls) 2. Delayed due to open enrollment: "This is good, but can we revisit it next quarter? Open enrollment starts in October and we're underwater." (3 calls) 3. Current spreadsheet/gift card workflow suffices: "We already do recognition with a spreadsheet and quarterly gift cards — why would we change?" (3 calls) ### Concrete next step agreement rate 7/10 total calls (70%): All 7 calls where the rep asked *"Should we lock the next step — a working session with your team this week?"* resulted in a confirmed next step. ### Competitors raised by prospects - Awardco: "We're also in late talks with Awardco — their rewards catalog looks bigger than yours." - Kudos: "How are you different from Kudos? Our CEO used them at her last company." ### Coaching Notes 1. In calls where prospects cite budget restrictions or approval delays, proactively propose a low-friction next step (e.g., sharing a tailored turnover savings case study) to avoid fully deferring the conversation. 2. For competitor objections, pair general differentiation points with specific, prospect-relevant details (e.g., "Kudos lacks native HRIS integration for milestone automation") to strengthen responses and address the prospect’s exact reference.
### Q3 2026 Revenue Forecast
#### Filtering Rules
Only deals with close dates between 2026-07-01 and 2026-09-30 are included. Weighting: 100% of `COMMIT` deals + 35% of `BEST_CASE` deals; `PIPELINE` deals contribute $0.
---
#### Calculations
1. **COMMIT Total**: Sum of included `COMMIT` deal amounts
Included `COMMIT` deals: 7
Arithmetic: `11200 + 9000 + 9000 + 6360 + 5400 + 2520 + 1249 = 44729`
**Total: $44,729**
2. **BEST_CASE Total**: Sum of included `BEST_CASE` deal amounts
Included `BEST_CASE` deals:24
Arithmetic: `38935 +24000 +19656 +16250 +11116 +10800 +10500 +9890 +9720 +9000 +7200 +3840 +3780 +3600 +3240 +3150 +3120 +3060 +2916 +2760 +2484 +2100 +1920 +528 = 203565`
**Total: $203,565**
3. **Weighted Forecast**: `(COMMIT Total) + (BEST_CASE Total * 0.35)`
Arithmetic: `44729 + (203565 * 0.35) = 44729 + 71247.75 = 115976.75`
**Total: $115,976.75**
4. **Deal Count by Category (Included Q3)**:
- `COMMIT`:7
- `BEST_CASE`:24
- `PIPELINE`:23 (54 total included deals -7-24)
5. **Excluded Deals**:
- Count:32 (close dates <2026-07-01 or >2026-09-30)
- Total Excluded Amount: $228,655
6. **Top 5 BEST_CASE Deals (Included Q3, by Amount)**:
1. Deal-2D7423: $38,935
2. Deal-25F752: $24,000
3. Deal-E53952: $19,656
4. Deal-5EED42: $16,250
5. Deal-FA32A0: $11,116
---
#### Data Quality
This extract has 15 deals with empty `why_buys_chars` values (no substantive qualification context for DS2+ stages), 8 deals missing DS1 timestamps, and 1 deal with out-of-order stage timestamps per prior pipeline hygiene analysis. Multiple deals have fractional dollar amounts (e.g., $2480.40 for Deal-42326B), which deviates from standard whole-dollar deal rounding. Several early-stage DS1/DS2 deals are misclassified as `COMMIT`/`BEST_CASE`, rather than `PIPELINE`, which could overstate the forecast. 32 excluded deals include some with past close dates relative to the 2026-09-05 report date, indicating stale pipeline data.
### 2x2 Cohort Analysis Results
1. **Both signals (≥5 unique givers + ≥1 successful redemption)**:
- Cohort size: 47
- 24-month retention rate: (31 retained / 47 total) × 100 = 65.96%
2. **Givers-only (≥5 unique givers, 0 redemptions)**:
- Cohort size: 49
- 24-month retention rate: (23 retained / 49 total) × 100 = 46.94%
3. **Redemption-only (<5 unique givers, ≥1 successful redemption)**:
- Cohort size: 29
- 24-month retention rate: (9 retained / 29 total) × 100 = 31.03%
4. **Neither signal (<5 unique givers, 0 redemptions)**:
- Cohort size: 95
- 24-month retention rate: (38 retained / 95 total) × 100 = 40.00%
---
### Excluded Companies
0 companies were excluded from the denominator, as all rows in the dataset had valid, parseable values for `m1_users`, `m1_redemptions`, and `current_status`.
---
### Largest Retention Lift
The cohort with both activation signals had the largest retention lift (+25.96 percentage points) compared to the neither-signal baseline cohort.
---
### What This Does & Does Not Prove
- **Proves**: A statistical correlation between achieving both activation signals in the first calendar month and higher 24-month customer retention, as well as a positive correlation for having only the 5+ unique givers signal (vs. the baseline neither group).
- **Does NOT prove causation**: We cannot conclude that achieving these activation signals directly causes higher long-term retention. Unmeasured confounding variables (e.g., product tier, annual recurring revenue, industry, geographic region, or company size) could explain the observed relationship instead of the activation signals themselves. This analysis does not control for these additional factors.
### ARR Reconciliation Results (2026-09-05) 1. **Total CRM ARR**: $603,581.76 (sum of all `hubspot_arr` in `company_arr.csv`) 2. **Total Active Billing ARR**: $604,739.28 (sum of `mrr *12` for all subscriptions with `status='active'`) 3. **Variance (Billing - CRM)**: **+$1,157.52** (Billing ARR is higher than CRM ARR) --- ### Decomposition of Variance (sums to +$1,157.52) | Bucket | Amount | Details | |----------------------|----------|-------------------------------------------------------------------------| | Status Mismatch | -$13,158.48 | CRM includes ARR for companies with only cancelled subscriptions: <br> C-0C8323BF ($4,905.24), C-0DC4FB8C ($8,253.24) | | Rounding Differences | -$36.00 | Small mismatches: C-0D66DF9E (-$16.00), C-14D70CE0 (-$20.00) | | Missing Records | +$11,952.00 | Net of: <br> +$28,449.24 (Billing has subscription for C-21629AA4 not in CRM) <br> -$16,497.24 (CRM has C-0D5BBE3A with no active Billing subscriptions) | | Other (Large Mismatch) | +$2,400.00 | C-0F7269D7: Billing ARR ($26,796.00) - CRM ARR ($24,396.00) | --- ### Business Rule Violations (Term ≠12 Months, No `cf_agreement_end_date`) 1. SUB-0002: `C-1794A52C` (24-month term, empty end date) 2. SUB-0019: `C-22170CA1` (36-month term, empty end date) --- ### Mismatched Accounts & Suggested Owners | Company Alias | Discrepancy | Suggested Owner(s) | |---------------------|----------------------------------------------|----------------------------------| | `C-0D66DF9E` | Billing: $23,184.00 vs CRM: $23,200.00 (-$16) | CRM/Billing Teams | | `C-0F7269D7` | Billing: $26,796.00 vs CRM: $24,396.00 (+$2,400) | CRM/Billing Teams | | `C-14D70CE0` | Billing: $18,180.00 vs CRM: $18,200.00 (-$20) | CRM/Billing Teams | | `C-21629AA4` | Billing subscription exists, not in CRM | CRM Team | | `C-0D5BBE3A` | CRM record exists, no active Billing subs | Billing Team | | `C-0C8323BF` | Only cancelled Billing subscription | Billing Team | | `C-0DC4FB8C` | Only cancelled Billing subscription | Billing Team | | Violations (`C-1794A52C`, `C-22170CA1`) | Missing `cf_agreement_end_date` | Billing Team |
### Monthly KVM Comparison: 2026-08 vs 2026-07 | KVM | Aug 2026 | Jul 2026 | Abs Change | Rel Change | Direction | |-----|----------|----------|------------|------------|-----------| | Giving Rate | 0.603 | 0.602 | +0.001 | +0.1% | Flat | | Redemptions per User |1.730 |1.730 | +0.000 | +0.0% | Flat | | 1:1 Meetings Engagement |0.447 |0.447 | +0.000 | +0.1% | Flat | | Pulse Check Engagement |0.509 |0.601 | -0.092 | -15.3% | Down | The largest relative move is pulse check engagement, driven entirely by the **enterprise size_band**: average fell 50% (0.550 July → 0.274 August). SMB/mid-market pulse engagement was flat, and all other KVMs showed negligible (<0.1% relative) shifts.
# Redemption Report (August 2026 — last completed month)
## Core Metrics
1. **Total Redemptions**: 43
2. **Total Spend**: $3,191.00 USD
Calculation: $475 (TangoCard) + $825 (Tremendous) + $1,057 (Custom) + $834 (Snappy) = $3,191.00
3. **Unique Redeemers**: 42 (1 duplicate user across Tremendous/Custom redemptions)
4. **Redemptions per Redeemer**: 43 ÷ 42 ≈ 1.02
5. **Provider Spend Mix (% of total)**:
- TangoCard: ($475 / $3,191) × 100 ≈ 14.89%
- Tremendous: ($825 / $3,191) × 100 ≈ 25.85%
- Custom: ($1,057 / $3,191) × 100 ≈ 33.12%
- Snappy: ($834 / $3,191) × 100 ≈ 26.14%
- Total: 14.89% + 25.85% + 33.12% + 26.14% = 100.00%
## Top 5 Countries by Redemptions
1. United States: 25 redemptions
2. Canada: 8 redemptions
3. Switzerland: 2 redemptions
4. Singapore: 2 redemptions
5. Australia: 2 redemptions; Netherlands: 2 redemptions (tied for 5th)
### Eligible Churn-Save Accounts #### 1. Usage Revival (signal: declining 3-month usage trend, active champion) - C-0B827671: $25,365 at stake - C-0D3278C7: $17,602 at stake Total: **$42,967.00** #### 2. Executive Touch (signal: no active internal champion) - C-0F6C0F34: $49,707 at stake - C-0B0F1BAB: $5,494 at stake - C-0CEF69FD: $32,621 at stake Total: **$87,822.00** #### 3. Commercial Concession (signals: growing/flat usage, active champion; underutilized seats) - C-0B360C78: $35,748 at stake - C-0CA21961: $16,829 at stake - C-0E9C27D1: $41,235 at stake Total: **$93,812.00** --- Grand total at stake across all eligible accounts: **$224,601.00** --- ### At-Risk Accounts That Do NOT Qualify All have health score <60 (R1 met) but fail at least one additional rule: 1. **C-0BA71F12**: Churn-save eligible amount $6,824 (>0, R2 met), but renewal date (2027-04-11) is 213 days post-snapshot (exceeds 120-day window: fails R3) 2. **C-0F876796**: Churn-save eligible amount $19,958 (>0, R2 met), but renewal date (2027-02-06) is 154 days post-snapshot (exceeds 120-day window: fails R3) 3. **C-0F6694C3**: Churn-save eligible amount $0 (fails R2) 4. **C-0BC71BDD**: Churn-save eligible amount $0 (fails R2) 5. **C-0BE96399**: Churn-save eligible amount $0 (fails R2) 6. **C-0FCCD2DF**: Churn-save eligible amount $0 (fails R2) 7. **C-10A56B0F**: Churn-save eligible amount $0 (fails R2)
# Expansion Kit: C-0DDFC9A7 ## Seat Coverage (licensed over headcount) - Licensed seats: 150 - Total company headcount: 400 - Licensed coverage: `150 ÷ 400 = 37.5%` of total headcount - Current active user coverage (Aug 2026): `126 ÷ 400 = 31.5%` of total headcount ## Usage Health (2 key metrics) 1. **Steady Growth:** Monthly active users rose from 88 (Mar 2026) to 126 (Aug 2026) → +38 users over 6 months with consistent month-over-month gains. 2. **Utilization Gap:** Active users represent 31.5% of total headcount, with 6% more headcount covered under licensed seats than are currently active. ## Headroom Calculations - **Seat headroom:** `150 - 126 = 24` unused licensed seats - **ARR headroom:** Current per-seat annual rate = `$9,000 ÷ 150 = $60/seat`. Additional annual ARR for 24 seats: `24 × $60 = $1,440/year`. ## Contact Details - **Replied contact:** Maria S., People Operations Coordinator (last engaged 2026-09-02) → Cannot approve purchases - **Right buyer:** Dana R., VP People (handles budget/seat expansion; per Maria, she has asked about usage metrics recently) ## Reply Email (127 words, <150 limit) Subject: RE: Bonusly Team Usage & Expansion Follow-Up Hi Dana, Maria S. connected me after sharing your team’s steady active user growth—now at 126 monthly active users, up consistently each month since March—and that you’ve been asking about usage metrics. I’d love to walk through available seat headroom and expansion pricing at your current per-seat rate. Would you have 10 minutes this week to chat? Best, The Bonusly Team
### Account: C-0D284E42 (signup date: 2026-08-11) #### Completed Onboarding Steps (verified via onboarding_account.csv): 1. Slack integration connected: `integration_slack=2026-08-12` 2. Allowance set: `allowance_set=2026-08-13` 3. Admins added: `admins_added=2` 4. First recognition given: `first_recognition_at=2026-08-15 14:22` #### Incomplete Onboarding Steps (no populated data field): 1. HRIS integration connected: `integration_hris` field is empty 2. First redemption completed: `first_redemption_at` field is empty #### Early Engagement Signals (with arithmetic): - Daily active givers recorded every day since signup: started at 3 (2026-08-11) → rose to 15 (2026-09-04): 12-active-giver increase over 24 days - First recognition arrived 2 days post-allowance setup (8/13 → 8/15) - Post-first recognition, active givers grew from 5 (8/15) to 15 (9/04): 10-active-giver increase over 20 days - 2 admins added prior to first recognition, indicating early team buy-in #### Three Call Topics for CSM: 1. Resolve incomplete onboarding: Walk through remaining setup (HRIS integration, first redemption) and confirm timelines for populating empty data fields 2. Celebrate early adoption: Share steady active-giver growth (3 →15 in 24 days) to reinforce early success 3. Address blockers: Ask about obstacles to finishing HRIS/redemption setup and collaborate on solutions
# 90-Day Renewal Risk Brief (As of 2026-09-09)
## Renewal Date Resolution Rules
Per guidance: Multi-year contracts (`is_multi_year=true` in Chargebee) have incorrect renewal dates in ChurnZero, so we use Chargebee's dates for these accounts. All non-multi-year accounts have aligned renewal dates between ChurnZero and Chargebee, so we use ChurnZero's stated dates. Disagreements are flagged for all multi-year accounts.
---
## Individual Renewal Details
1. **Account: C-0B7D2C30**
- CSM: Dana Mercer
- Annual Recurring Revenue (ARR): $65,901.00
- Renewal Date: 2026-09-15 (Disagreement: ChurnZero reported 2026-09-10; used Chargebee date per multi-year contract rule)
- Seat Utilization: 274 / 476 = 57.56% (274 seats used out of 476 total)
- 3-Month Active User Trend: `(August 2026 active users - June 2026 active users) / June 2026 active users * 100` = (84 - 97)/97 * 100 = -13.4% (declining)
- Risk Rating: Medium — 57.6% seat utilization with a 13.4% total decline in active users over the past 3 months.
2. **Account: C-0BCDB8C2**
- CSM: Cole Ingram
- ARR: $54,427.00
- Renewal Date: 2026-09-18 (Disagreement: ChurnZero reported 2027-09-18; used Chargebee date per multi-year contract rule)
- Seat Utilization: 232 / 424 = 54.72%
- 3-Month Trend: (110 - 127)/127 * 100 = -13.4% (declining)
- Risk Rating: Medium — 54.7% seat utilization with a 13.4% total decline in active users.
3. **Account: C-0D2AB865**
- CSM: Elena Sinclair
- ARR: $38,022.00
- Renewal Date: 2026-09-22 (Disagreement: ChurnZero reported 2026-09-10; used Chargebee date per multi-year contract rule)
- Seat Utilization: 250 / 407 = 61.43%
- 3-Month Trend: (109 - 125)/125 * 100 = -12.8% (declining)
- Risk Rating: Medium — 61.4% seat utilization with a 12.8% total decline in active users.
4. **Account: C-0BBE3E60**
- CSM: Dana Mercer
- ARR: $30,993.00
- Renewal Date: 2026-09-26 (Disagreement: ChurnZero reported 2027-09-26; used Chargebee date per multi-year contract rule)
- Seat Utilization: 74 / 114 = 64.91%
- 3-Month Trend: (33 - 39)/39 * 100 = -15.4% (declining)
- Risk Rating: Medium — 64.9% seat utilization with a 15.4% total decline in active users.
5. **Account: C-0F5D2323**
- CSM: Cole Ingram
- ARR: $90,647.00
- Renewal Date: 2026-09-29 (Disagreement: ChurnZero reported 2026-09-10; used Chargebee date per multi-year contract rule)
- Seat Utilization: 111 / 390 = 28.46%
- 3-Month Trend: (18 - 20)/20 * 100 = -10.0% (declining)
- Risk Rating: High — Only 28.5% seat utilization (well below 50%) with a 10% total decline in active users over 3 months.
6. **Account: C-0EC6999D**
- CSM: Elena Sinclair
- ARR: $79,419.00
- Renewal Date: 2026-10-03 (No disagreement: dates align between ChurnZero and Chargebee)
- Seat Utilization: 31 / 112 = 27.68%
- 3-Month Trend: (15 - 17)/17 * 100 = -11.8% (declining)
- Risk Rating: High — 27.7% seat utilization with an 11.8% total decline in active users.
7. **Account: C-0B20DB64**
- CSM: Dana Mercer
- ARR: $21,770.00
- Renewal Date: 2026-10-07 (No disagreement)
- Seat Utilization: 214 / 378 = 56.61%
- 3-Month Trend: (294 - 294)/294 * 100 = 0.0% (flat)
- Risk Rating: Medium — 56.6% seat utilization with flat active user counts over the past 3 months.
8. **Account: C-0BBC4E7A**
- CSM: Cole Ingram
- ARR: $56,374.00
- Renewal Date: 2026-10-10 (No disagreement)
- Seat Utilization: 228 / 337 = 67.66%
- 3-Month Trend: (139 - 142)/142 * 100 = -2.1% (slight decline)
- Risk Rating: Medium — 67.7% seat utilization with a small 2.1% total decline in active users.
9. **Account: C-0FD551AB**
- CSM: Elena Sinclair
- ARR: $48,815.00
- Renewal Date: 2026-10-14 (No disagreement)
- Seat Utilization: 210 / 376 = 55.85%
- 3-Month Trend: (126 - 123)/123 * 100 = +2.4% (slight increase)
- Risk Rating: Medium — 55.9% seat utilization with a small 2.4% total increase in active users.
10. **Account: C-0F9F8F13**
- CSM: Dana Mercer
- ARR: $46,230.00
- Renewal Date: 2026-10-18 (No disagreement)
- Seat Utilization: 199 / 352 = 56.53%
- 3-Month Trend: (182 - 185)/185 * 100 = -1.6% (slight decline)
- Risk Rating: Medium — 56.5% seat utilization with a minor 1.6% total decline in active users.
11. **Account: C-0BC34584**
- CSM: Cole Ingram
- ARR: $16,740.00
- Renewal Date: 2026-10-22 (No disagreement)
- Seat Utilization: 327 / 494 = 66.19%
- 3-Month Trend: (106 - 104)/104 * 100 = +1.9% (slight increase)
- Risk Rating: Medium — 66.2% seat utilization with a small 1.9% total increase in active users.
12. **Account: C-0B7A7546**
- CSM: Elena Sinclair
- ARR: $35,062.00
- Renewal Date: 2026-10-25 (No disagreement)
- Seat Utilization: 182 / 205 = 88.78%
- 3-Month Trend: (63 - 64)/64 * 100 = -1.6% (flat/negligible decline)
- Risk Rating: Low — 88.8% seat utilization (well above 75%) with nearly flat active user counts.
13. **Account: C-0B369871**
- CSM: Dana Mercer
- ARR: $85,128.00
- Renewal Date: 2026-10-29 (No disagreement)
- Seat Utilization: 317 / 422 = 75.12%
- 3-Month Trend: (333 - 326)/326 * 100 = +2.1% (slight increase)
- Risk Rating: Low — 75.1% seat utilization (just above 75%) with a 2.1% total increase in active users.
14. **Account: C-0B144C78**
- CSM: Cole Ingram
- ARR: $30,899.00
- Renewal Date: 2026-11-02 (No disagreement)
- Seat Utilization: 169 / 224 = 75.45%
- 3-Month Trend: (106 - 101)/101 * 100 = +4.9% (modest increase)
- Risk Rating: Low — 75.5% seat utilization with a 4.9% total increase in active users.
15. **Account: C-0FC4DBB8**
- CSM: Elena Sinclair
- ARR: $94,732.00
- Renewal Date: 2026-11-05 (No disagreement)
- Seat Utilization: 356 / 464 = 76.72%
- 3-Month Trend: (193 - 189)/189 * 100 = +2.1% (slight increase)
- Risk Rating: Low — 76.7% seat utilization with a 2.1% total increase in active users.
16. **Account: C-0D5BBE3A**
- CSM: Dana Mercer
- ARR: $39,740.00
- Renewal Date: 2026-11-09 (No disagreement)
- Seat Utilization: 85 / 102 = 83.33%
- 3-Month Trend: (91 - 88)/88 * 100 = +3.4% (modest increase)
- Risk Rating: Low — 83.3% seat utilization with a 3.4% total increase in active users.
17. **Account: C-0FB9D5AF**
- CSM: Cole Ingram
- ARR: $63,158.00
- Renewal Date: 2026-11-13 (No disagreement)
- Seat Utilization: 144 / 199 = 72.36%
- 3-Month Trend: (176 - 173)/173 * 100 = +1.7% (slight increase)
- Risk Rating: Medium — 72.4% seat utilization (just below 75%) with a small 1.7% total increase in active users.
18. **Account: C-0B344485**
- CSM: Elena Sinclair
- ARR: $64,384.00
- Renewal Date: 2026-11-16 (No disagreement)
- Seat Utilization: 224 / 287 = 78.05%
- 3-Month Trend: (244 - 238)/238 * 100 = +2.5% (slight increase)
- Risk Rating: Low — 78.1% seat utilization with a 2.5% total increase in active users.
19. **Account: C-0CB2C1B4**
- CSM: Dana Mercer
- ARR: $40,628.00
- Renewal Date: 2026-11-20 (No disagreement)
- Seat Utilization: 386 / 473 = 81.61%
- 3-Month Trend: (49 - 47)/47 * 100 = +4.3% (modest increase)
- Risk Rating: Low — 81.6% seat utilization with a 4.3% total increase in active users.
20. **Account: C-22170CA1**
- CSM: Cole Ingram
- ARR: $45,646.00
- Renewal Date: 2026-11-24 (No disagreement)
- Seat Utilization: 251 / 294 = 85.37%
- 3-Month Trend: (146 - 143)/143 * 100 = +2.1% (slight increase)
- Risk Rating: Low — 85.4% seat utilization with a 2.1% total increase in active users.
---
## Summary Totals
1. **Total ARR renewing in the next 90 days**: Sum of all account ARRs = $1,048,714.00
2. **Total ARR at risk (High-Risk Accounts)**: Sum of C-0F5D2323 ($90,647.00) + C-0EC6999D ($79,419.00) = $170,066.00
### Quarter 2026 Support Ticket Themes (Ranked by ARR Exposure)
Total tickets analyzed: 80
1. **Theme: Billing & Invoice Tier/Seat Count Errors**
- Count: 16 tickets
- Share: 20% (16 ÷ 80)
- Distinct Accounts: 1 (C-0E9C27D1)
- Total ARR Affected: $832,000 (16 × $52,000 per ticket)
- Ticket IDs: IC-460071, IC-460069
- Recommendation: Resolve recurring seat-count discrepancies and incorrect tier pricing for C-0E9C27D1’s annual invoices.
2. **Theme: HRIS Provisioning & Sync Failures**
- Count: 11 tickets
- Share: 13.75% (11 ÷ 80)
- Distinct Accounts: 3 (C-0B2213A9, C-0F6C0F34, C-0DDFC9A7)
- Total ARR Affected: $408,000 (7×$36,000 + 2×$30,000 + 2×$48,000 = $252,000 + $60,000 + $96,000)
- Ticket IDs: IC-460059, IC-460060
- Recommendation: Fix HRIS sync logic to create new hire accounts and resolve skipped provisioning runs with no logged errors.
3. **Theme: Gift Card & Checkout Redemption Failures**
- Count:19 tickets
- Share:23.75% (19 ÷80)
- Distinct Accounts:7 (C-0CEF69FD, C-0B827671, C-0FCCD2DF, C-0F876796, C-14264ABD, C-0D9CA315, C-0B0F1BAB)
- Total ARR Affected: $186,900 (3×$8,900 +4×$10,700 +4×$9,600 +3×$8,700 +3×$11,000 +1×$9,600 +1×$10,300)
- Ticket IDs: IC-460025, IC-460024
- Recommendation: Debug checkout spin failures, missing gift card emails, and incorrectly deducted points for errored orders.
4. **Theme: Points & Recognition Posting Failures**
- Count:20 tickets
- Share:25% (20 ÷80)
- Distinct Accounts:9 (C-0D3278C7, C-0BF20542, C-0D0B047C, C-0BE96399, C-0D284E42, C-0D6CC8E3, C-21FEBCBB, C-0DD0626C, C-0B2895EF)
- Total ARR Affected: $70,200 (3×$3,500 +2×$4,500 +3×$2,700 +3×$3,400 +3×$4,200 +1×$2,900 +2×$2,500 +1×$2,900)
- Ticket IDs: IC-460004, IC-460016
- Recommendation: Fix recognition delivery pipeline to ensure points post immediately after sent recognitions.
5. **Theme: Slack Integration Issues**
- Count:14 tickets
- Share:17.5% (14 ÷80)
- Distinct Accounts:4 (C-0B843542, C-10A56B0F, C-0BA71F12, C-8C2E8F00)
- Total ARR Affected: $63,400 (3×$4,400 +4×$5,400 +6×$3,900 +1×$5,200)
- Ticket IDs: IC-460041, IC-460047
- Recommendation: Resolve Slack sync disconnections, toggle resets, and slash command errors for team channels.
### Ranked Similar Customers with Public Case Studies Prospect: C-82AF3719 (Technology, Mid-Market, employee_recognition, NA-West) 1. **C-64171065** - Matching fields: Industry (Technology), size band (Mid-Market), use case (employee_recognition) - Arithmetic: 3/4 matching fields; only region differs (NA-East vs prospect's NA-West) 2. **C-11C31562** - Matching fields: Size band (Mid-Market), use case (employee_recognition), region (NA-West) - Arithmetic:3/4 matching fields; only industry differs (Manufacturing vs prospect's Technology) 3. **C-A13C193D** - Matching fields: Industry (Technology), size band (Mid-Market), region (NA-West) - Arithmetic:3/4 matching fields; only use case differs (retention vs prospect's employee_recognition)
### Flagged Rows (SQO date precedes SQM date) 1. Contact CT-000044 (linkedin_ads): `sqm_date=2026-07-23`, `sqo_date=2026-07-18` 2. Contact CT-000041 (linkedin_ads): `sqm_date=2026-06-14`, `sqo_date=2026-06-09` --- ### Paid Channel Performance (Trailing 6 Months: Mar 2026 – Aug 2026) | Channel | Total Spend | Total SQMs | Total SQOs | Cost per SQM | Cost per SQO | SQM-to-SQO Rate | Total Pipeline | Pipeline per Dollar | |-------------------|-------------|------------|------------|--------------|--------------|-----------------|----------------|---------------------| | paid_search | $36,000 | 32 | 13 | $1,125.00 | $2,769.23 | 40.63% | $520,000 | 14.44x | | linkedin_ads | $24,000 | 24 | 8 | $1,000.00 | $3,000.00 | 33.33% | $96,000 | 4.00x | | paid_social | $18,000 | 0 | 0 | Undefined | Undefined | Undefined | $0 | Undefined | | webinars | $9,000 | 13 | 5 | $692.31 | $1,800.00 | 38.46% | $60,000 | 6.67x | *Arithmetic notes:* - Paid search total spend: `6 months × $6,000 = $36,000`; total pipeline: `13 × $40,000 = $520,000` - LinkedIn ads total spend: `6 × $4,000 = $24,000`; total pipeline: `8 × $12,000 = $96,000` - Webinars total spend: `6 × $1,500 = $9,000`; total pipeline: `5 × $12,000 = $60,000` --- ### Organic Channel Performance | Channel | Volume (Total SQMs) | SQO Rate | Total Pipeline | |-------------------|---------------------|----------|----------------| | organic_search | 28 | 32.14% | $81,000 | | referral | 15 | 40.00% | $48,000 | *Arithmetic notes:* - Organic search total pipeline: `9 × $9,000 = $81,000` - Referral total pipeline: `6 × $8,000 = $48,000` --- ### Reallocation Recommendation 1. **Eliminate paid_social budget entirely**: This channel has $18k in spend but zero SQMs/pipeline, delivering no measurable return. 2. **Shift budget from linkedin_ads to higher-performing channels**: LinkedIn ads has the lowest pipeline per dollar (4.0x) and highest cost per SQO ($3k) among active paid channels. Reallocate these funds to paid_search (top ROI: 14.44x) and webinars (strong cost efficiency: 6.67x). 3. **Increase investment in paid_search**: This channel delivers the highest return on ad spend, with the lowest cost per SQO among high-volume paid channels and a strong SQM-to-SQO conversion rate. 4. **Maintain/modestly increase webinars budget**: Webinars has the lowest cost per SQM/SQO of all active paid channels, with solid pipeline efficiency. ### Confidence Confidence is **moderate** for paid_search (32 SQMs, 13 SQOs) and webinars (13 SQMs,5 SQOs); lower for linkedin_ads (24 SQMs,8 SQOs, plus 2 data quality flagged rows); very low for paid_social (0 SQMs, no performance signal). Organic channels have larger sample sizes but no associated spend data, so they only inform relative volume/pipeline, not ROI-driven budget shifts.
# Battlecard: Rivally (Updated 2026-09-09) --- ## One-line positioning Points-based employee recognition and engagement platform with EU data residency, multi-language support, and add-on Pulse surveys; targeted at mid-market and EU enterprise teams [S01, S05, S06, S12, S15, S23]. ## Pricing (sourced by date, conflict noted) - **Recognition Starter tier**: $5/user/month (annual billing) as of 2026-01-20 [S03, S08]; updated to $7/user/month (annual billing) as of 2026-08-12 [S17] - **Custom quoted rates**: $6.50/user/month for 500-seat annual term (2026-06-02 [S13]); 15% discount off $7/list for 3-year terms (2026-08-14 [S18]) - **Conflict**: Pricing showed $5 until August 2026, with quoted rates varying ahead of the official price hike [S03, S08, S13, S17, S18] ## Where Rivally wins - Mid-market teams with quick setup and native Slack integration [S04] - EU enterprise/distributed teams with praised multi-language support [S12] - Teams prioritizing EU data residency and European localisation [S11, S15] ## Where Bonusly wins - Deals requiring robust, customizable analytics (prospect chose Bonusly over Rivally for deeper analytics [S25]) - Teams needing advanced admin tools (SCIM provisioning, bulk recognition editing) Rivally lacks [S10, S24] ## Objections & Data-Sourced Responses | Objection | Snippet ID | Source Context | Response | |-----------|------------|----------------|----------| | Limited/basic analytics/reporting | S02, S7, S20 | G2/Capterra reviews | Bonusly offers flexible, deep analytics with non-CSV exports and seamless migration | | Clunky UI | S9 | AE opinion (unverified product claim) | Bonusly has a modern, intuitive admin console | | No SCIM provisioning; painful manual user management | S10 | G2 enterprise review | Bonusly supports SCIM automated user provisioning | | Thin EMEA rewards catalog | S14 | TrustRadius review | Bonusly provides localized global rewards for EMEA teams | | Lags in admin tooling/bulk editing | S16, S24 | G2 reviews | Bonusly includes bulk recognition editing and advanced admin tools | | CSV-only analytics exports; hard migration | S20 | G2 review | Bonusly supports multiple export formats and simplified migration | | Recent pricing increase ($5 → $7/user/month) | S17, S18 | Pricing page + call notes | Bonusly offers transparent, competitive flexible pricing | ## Recent Changes (2025-11 to 2026-09) - 2025-11-04: $40M Series C round (Northgate Ventures) [S01] - 2026-02-02: Mid-market review confirms native Slack integration [S04] - 2026-03-05: Launched Rivally Pulse survey add-on [S06] - 2026-05-09: Hired ex-Workday VP EMEA for European expansion [S11] - 2026-07-01: Opened Dublin office; EU data residency GA [S15] - 2026-08-20: Microsoft Teams app v2 public preview [S19] - 2026-09-01: Rivally Pulse exited beta (standalone add-on pricing) [S23] ## Our 12-Month Win/Loss Record (2025-09 to 2026-08) ### Arithmetic: Total deals against Rivally: 20 (from `deals_with_competitor.csv`) - Wins for Bonusly: 13 (rows with `outcome=win`) - Losses for Bonusly:7 (rows with `outcome=loss`) - 13 +7 =20 total deals - **Additional September 2026 win**: 1 (800-seat prospect, [S25]) ## Unverified/Incorrect Original Battlecard Claims 1. *"Rivally lacks a Slack integration"*: **Incorrect** (S04 confirms Slack integration works out of the box) 2. *"Rivally was acquired by WorkHuman in 2025"*: **Unverified** (no supporting data in provided snippets)
### Sequence Review **Tracking Error**: Expansion Nurture Step 2: 300 sent, 340 opened (113% open rate) — invalid, misreported sent/opened counts. **Audience Overlap**: 4 contacts in both *Cold Outbound - HR Leaders* and *Cold Outbound - People Ops*: CT-001255, CT-001103, CT-000884, CT-000908. **Under-2% Reply Failure**: Generic cold outreach with poor role-specific relevance (HR/People Ops messaging misalignment). --- #### Per-Sequence Metrics + Weakest Step: 1. **New Logo Nurture**: 500/458/428 sent; 42%/35%/28% open; 8.4%/6.6%/4.2% reply; 2.4%/2.0%/1.4% meet. Weakest: Step3. Fix: Refine post-demo follow-up. 2. **Expansion Nurture**: 300/300/275 sent; 43%/113%*/35% open;7.3%/8.3%/4.4% reply;1.7%/1.3%/1.1% meet. Weakest: Step2 (tracking error) + Step3. Fix: Correct count errors first. 3. **Cold Outbound HR Leaders**: 600/595/590 sent;40%/29%/22% open;0.8%/0.3%/0.2% reply; 0% all. Weakest: Step3. Fix: Segment audience by team size. 4. **Cold Outbound People Ops**:400/386/377 sent;38%/29%/21% open;3.5%/2.3%/1.6% reply;0.8%/0.5%/0.3% meet. Weakest: Step3. Fix: Add role-specific case studies. **Fix Priority**: 1. Resolve Expansion Nurture Step2 tracking error (data integrity); 2. Overhaul Cold Outbound HR Leaders outreach (lowest reply rates, <2% across all steps).
Q3-2026 Marketing Goals Update: *Note: No weekly performance data was provided, so specific weekly movements cannot be identified; all below reflects quarter-to-date (QTD) performance with full arithmetic.* 1. **SQMs**: QTD actual=230, target=300, delta=230-300=-70 (70 below target). Prorated pace target = 300*(66/92)≈215; 230>215 → ahead of pace. 2. **SQOs**: QTD actual=84, target=120, delta=84-120=-36 (36 below target). Prorated pace target=120*(66/92)≈86; 84<86 → behind pace. 3. **DS2s**: QTD actual=40, target=75, delta=40-75=-35 (35 below target). Prorated pace target=75*(66/92)≈54; 40<54 → behind pace. 4. **Closed-Lost MIA Rate**: Calculated as (closed_lost_mia / closed_lost_total) = 5/25=0.2 (20%), target=0.1 (10%). Delta=0.2-0.1=+0.1 (10pp above target; worse for lower-better metrics). Current rate would hold for the full quarter (double the target) → behind pace. 5. **Same-Quarter Closes**: QTD actual=10, target=20, delta=10-20=-10 (10 below target). Prorated pace target=20*(66/92)≈14; 10<14 → behind pace. 6. **Active Pipeline**: QTD actual=$3,000,000, target=$4,000,000, delta=3,000,000-4,000,000=-$1,000,000 ($1M below target). Prorated pace target=4,000,000*(66/92)≈$2.87M; $3M>$2.87M → ahead of pace. What moved this week: No weekly trend data was provided, so specific weekly shifts cannot be detailed. Across the quarter-to-date, SQMs and active pipeline are ahead of their prorated quarterly pace, while SQOs, DS2s, same-quarter closes, and closed-lost MIA rate are underperforming relative to both their total quarterly targets and prorated pace.
Q3 2026 weighted forecast totals ~$115,977: $44,729 from 7 committed deals plus 35% of $203,565 in best-case deals. 85 of 86 total deals have blank owners, and all 7 committed deals lack documented why-buys, so the forecast is unvetted.
**Subject: Follow-Up: July 28 Demo & 150-Seat Pricing Recap** Hi team, Following up on my August 5 email recapping our July 28 demo and sharing 150-seat pricing for your logistics team — I haven’t heard back since sending that recap, and wanted to check if you have questions or need additional details to move forward. Let me know next steps, Alex Franklin
# Weekly GTM Digest ## Marketing This week, Marketing delivered 46 SQMs—6 shy of our 52-target goal. Of those qualified leads, 18 came via our webinar channel, and our paid search cost per SQM held steady at $150. ## Sales Our sales team converted 14 SQOs and booked 9 DS2 meetings, driving $310,000 in new pipeline and closing 3 same-quarter deals for the week. ## CS Customer Success saved 2 customer renewals this week, lifted our team NPS to 61, and will address 3 open red-flag accounts ahead of next week. ## PLG Our PLG arm added 412 new signups, with 31% of users hitting activation, and 38 companies reached the key aha moment of 10 recognition gives.
# Partner Digest: 2026-08-24 to 2026-09-04 ## Active Partners ### Apex Rewards Co - Activity: Co-webinar locked for 2026-09-15; 2 sourced DS1 opps logged with UTM Source=Partner - Partner-sourced pipeline: 2 deals, **$275,000** (180000 + 95000) - Deal-DDAAF2: $180,000 - Deal-2CF33E: $95,000 ### HRCloud Partners - Activity: Integration referral closed security review (moved to DS2); 1 sourced opp this period - Partner-sourced pipeline: 1 deal, **$140,000** - Deal-F1CDA5: $140,000 ### CultureBridge - Activity: Lunch-and-learn produced 2 early-stage sourced opps - Partner-sourced pipeline: 2 deals, **$135,000** (60000 + 75000) - Deal-096E1D: $60,000 - Deal-067213: $75,000 ### WorkWell Group - Activity: No sourced deals this period; planning call booked for 2026-09-09 to restart Q4 joint playbook - Partner-sourced pipeline: 0 deals, **$0** ## Quiet Partners - Recogniq: No reported activity this period - KudosWave: No reported activity this period - PeopleFirst Advisors: No reported activity this period - TotalPerk: No reported activity this period
Q1: Yes. Customer data is encrypted at rest using AES-256 ([P1]). Q2: Yes. Data in transit is encrypted with TLS 1.2 or higher ([P1]). Q3: Yes. Bonusly maintains a SOC 2 Type II report (renewed annually), available to prospects under NDA ([P2]). Q4: Customer data is retained for the duration of the contract plus 90 days after contract termination ([P3]). Q5: The current subprocessor list is maintained at trust.bonusly.com; customers receive 30 days' notice before a new subprocessor is added ([P4]). Q6: Yes. SAML 2.0 single sign-on is available on the Enterprise plan ([P5]). Q7: Production databases are backed up daily; backups are encrypted and retained for 35 days ([P6]). Q8: Unanswerable. Provided policy excerpts do not include ISO 27001 certification details; relevant documentation would include compliance/certification materials. Q9: Unanswerable. Provided policy excerpts do not include contractual uptime SLA percentage details; relevant documentation would include service-level agreement (SLA) documents. Q10: Unanswerable. Provided policy excerpts do not include HIPAA Business Associate Agreement details; relevant documentation would include HIPAA-compliance or business associate agreement policies.
### Findings & Actions
1. **Overlapping Trigger Phrases**
- Skills: `comms-drafter` and `email-drafter`
- Severity: WARNING
- Action: TRIM_DESC
- Details: Both share identical email-specific triggers: "write me an email", "draft a follow-up", "bump email", "contract nudge", and "help me reply". Trim overlapping email logic from `comms-drafter` to preserve its broader communication scope.
2. **Circular Delegation Chain**
- Chain: `comms-drafter` → `deal-strategy-coach` → `email-drafter` → `deal-strategy-coach`
- Severity: CRITICAL
- Action: REVIEW
- Details: Break the cycle by removing one cross-reference (e.g., have `comms-drafter` directly use `email-drafter` instead of routing through `deal-strategy-coach`).
3. **Dangling Delegation Targets**
a. Target: `prospect-research-multithreading` (referenced by `deal-strategy-coach`)
- Severity: WARNING
- Action: REVIEW
b. Target: `bonusly-brand` (referenced by `comms-drafter` and `email-drafter`)
- Severity: WARNING
- Action: REVIEW
- Details: Both referenced skills are not present in the provided available skills list.
4. **Version Conflict & Redundant Functionality**
- Skills: `weekly-pipeline-report` and `pipeline-intelligence-report`
- Severity: WARNING
- Action: DELETE_SKILL
- Details: `weekly-pipeline-report` is a redundant subset of `pipeline-intelligence-report` (explicitly labeled the master pipeline scoring skill) with overlapping triggers and reporting scope.
5. **Manifest Descriptions Exceeding 1,024 Characters**
- Count: 0
- Severity: INFO
- Action: None
- Details: All `description_chars` values in the manifest are below the 1,024 threshold (max = 1006 for `pipeline-intelligence-report` and `signalforge-claim-compressor`).
6. **Hardcoded Static Values in Skill Bodies**
- Severity: WARNING
- Action: UPDATE_BODY
- Details: Multiple skills use hardcoded outdated values:
- `pipeline-intelligence-report.SKILL.md`: AE owner IDs, HubSpot org ID, deal stage IDs, static dates
- `weekly-pipeline-report.SKILL.md`: Spreadsheet IDs, Slack channel ID, static Q1 2026 sales data
- `partner-digest.SKILL.md`: Confluence cloud/space IDs, hardcoded partner list
- `signalforge-feedback.SKILL.md`: Confluence page IDs, Snowflake table names
- Recommendation: Replace with dynamic tool lookups (e.g., `HubSpot:search_owners` for AE IDs).
7. **Manifest Drift (Both Directions)**
- Count: 0
- Severity: INFO
- Action: None
- Details: All 14 manifest-listed skill files are provided, with no missing or extra files.
# Reward Worker Queue Incident Runbook (#incident-2026-08-29-reward-queue) *Traced directly to incident thread messages; no external data added* --- ## Step 1: Acknowledge Alert & Assume Incident Control **Message reference**: M01 **Action**: Acknowledge PagerDuty alert, assume Incident Commander (IC) role **Runner**: Bryce Harmon **Success verification**: Alert acknowledged, IC status confirmed in thread **Rollback**: None (administrative step) ## Step 2: Verify Queue Depth **Message reference**: M02 **Action**: Run queue depth check: `bundle exec rake sidekiq:queue_depth` **Runner**: Farid Osman **Success verification**: Queue depth = 48,213 (normal baseline < 500) **Rollback**: None (read-only command) ## Step 3: Inspect Dead Set **Message reference**: M03 **Action**: Review Sidekiq dead set **Runner**: Farid Osman **Success verification**: 112 pending jobs, all `Redis::TimeoutError` errors dated ~13:58 **Rollback**: None (read-only command) ## Step 4: Pause Auto-Enqueue to Stop Bleed **Message reference**: M04 **Action**: Disable auto-recognition enqueue: `bin/rails runner 'FeatureFlag.disable(:auto_recognition_enqueue)'` **Runner**: Farid Osman **Success verification**: Queue depth stops increasing (confirmed in post-action updates) **Rollback**: Re-enable with: `bin/rails runner 'FeatureFlag.enable(:auto_recognition_enqueue)'` ## Step 5: Clear Dead Set **Message reference**: M05 **Action**: Clear Sidekiq dead set (exact console command not specified in thread) **Runner**: Elena Sinclair **Success verification**: Dead set emptied (implied by subsequent queue stability) **Rollback**: *Unspecified in thread* — manual recovery requires Redis backup restoration ## Step 6: Scale Worker Replicas **Message reference**: M06 **Action**: Scale reward-worker deployment: `kubectl scale deployment/reward-worker --replicas=6` (baseline replicas = 3) **Runner**: Bryce Harmon **Success verification**: Queue depth fell to 9,400 and declined ~1,200 per minute (M07) **Rollback**: Scale back to baseline: `kubectl scale deployment/reward-worker --replicas=3` ## Step 7: Validate Queue Reduction **Message references**: M07, M08 **Action**: Run queue depth check: `bundle exec rake sidekiq:queue_depth` **Runners**: Farid Osman (M07), Cole Ingram (M08) **Success verification**: Queue depth reached 0, error rate returned to baseline **Rollback**: None (read-only command) ## Step 8: Re-Enable Auto-Enqueue **Message reference**: M09 **Action**: Re-enable auto-recognition enqueue: `bin/rails runner 'FeatureFlag.enable(:auto_recognition_enqueue)'` **Runner**: Bryce Harmon **Success verification**: 40 new jobs processed without errors over 3 minutes **Rollback**: Disable again with: `bin/rails runner 'FeatureFlag.disable(:auto_recognition_enqueue)'` ## Step 9: Scale Workers to Baseline **Message reference**: M10 **Action**: Scale reward-worker deployment: `kubectl scale deployment/reward-worker --replicas=3` **Runner**: Bryce Harmon **Success verification**: Queue stabilized at 0, incident resolved **Rollback**: Scale back to 6 replicas if re-incident occurs: `kubectl scale deployment/reward-worker --replicas=6`
### Failure Sequence
1. **First Error (Root Cause)**: 2026-09-03T14:01:12Z, `reward-service`: `Redis::TimeoutError: Connection to Redis at redis-primary:6379 timed out after 5s`
2. **Cascade (ordered by timestamp)**:
- 14:01:20Z/14:01:30Z/14:01:40Z: `reward-service` reports retry exhausted for `RewardGiveJob`
- 14:01:40Z: `sidekiq` logs `RewardGiveJob failed: Redis::TimeoutError; retrying in 60s`
- 14:02:28Z/14:03:31Z/14:04:22Z/14:05:26Z/14:06:47Z: `sidekiq` retries `RewardGiveJob` (plus `RecognitionDigestJob` per `sidekiq_jobs.csv`)
- 14:02:30Z: `sidekiq` warns queue `reward` depth >10,000
- 14:03:05Z onward: `api-gateway` returns 502 upstream timeouts calling `reward-service`
- 14:03:30Z onward: `web-app` fails give form submissions due to upstream 502s
- 14:22:10Z: `reward-service` restores Redis connection
- 14:24:45Z: `sidekiq` reports queue `reward` depth <500
### Services & Jobs Involved
- Root failure service: `reward-service` (Redis connection loss)
- Affected job classes: `RewardGiveJob` (primary failed jobs), `RecognitionDigestJob` (per `sidekiq_jobs.csv`)
- Downstream impacted services: `api-gateway`, `web-app`
- Job orchestrator: `sidekiq` (manages retries/queue backlog)
### Datadog Query to Confirm First Error
```
@timestamp:2026-09-03T14:01:12Z service:reward-service level:ERROR
```
### Logs Do NOT Show
- Root cause of the Redis timeout (e.g., network issues, Redis overload)
- Full error stack traces (only truncated messages are logged)
- Client-specific details for failed form submissions (IPs, user IDs)
- Pre-outage job queue size
- Total count of failed jobs during the outage
- Manual/automated recovery steps post-restoration
- Redis/sidekiq configuration values (timeouts, retry limits)
# Feature Flag Summary
All data is sourced exclusively from `flags_export.csv` and `flag_code.md`; no external facts are invented.
---
1. **`recognition_streaks_v2`**
- State: `on`
- Targeting: `segment:beta_companies`
- Company count: 42
- Code-controlled behavior: Enables streak tracking for recognitions in `app/models/recognition.rb` via `StreakTracker.record(give)` when active for a company.
2. **`points_budget_guardrails`**
- State: `on`
- Targeting: `all_companies`
- Company count: 220
- Code-controlled behavior: Enforces points budget checks in `app/services/budget_service.rb` via `BudgetService.new(company).enforce!(giver, points)` when active for a company.
3. **`slack_dm_nudges`**
- State: `on`
- Targeting: `segment:region_na`
- Company count: 87
- Code-controlled behavior: Triggers Slack DM nudges in `app/jobs/nudge_job.rb` via `SlackDm.send_nudge(user)` when active for a company.
4. **`redeem_flow_redesign`**
- State: `off`
- Targeting: `targeted_list`
- Company count: 12
- Code-controlled behavior: Toggles between `RedeemV2Component` (enabled) and `RedeemV1Component` (disabled) for the redemption flow in `app/controllers/redeem_controller.rb`.
5. **`analytics_dashboard_v3`**
- State: `on`
- Targeting: `segment:tier_three`
- Company count: 65
- Code-controlled behavior: Loads the v3 analytics dashboard in `app/controllers/analytics_controller.rb` via `@dashboard = AnalyticsV3.new(company)` when active for a company.
6. **`ms_teams_app_v2`**
- State: `off`
- Targeting: `targeted_list`
- Company count: 9
- Code-controlled behavior: Installs the Microsoft Teams app v2 in `app/services/teams_installer.rb` via `TeamsAppV2.install(company)` when active for a company.
7. **`legacy_give_modal`**
- State: `off`
- Targeting: `segment:legacy_plan`
- Company count:14
- *No code reference found in `flag_code.md`*
8. **`survey_boosters_q3`**
- State: `on`
- Targeting: `segment:legacy_plan`
- Company count:7
- *No code reference found in `flag_code.md`*
9. **`paused_offboard_cleanup`**
- State: `off`
- Targeting: *Empty (no targeting rules specified)*
- Company count:0
- *No code reference found in `flag_code.md`; no targeted companies*
### NDA-1: GREEN Driven by standard mutual confidentiality for business relationship evaluation, standard carve-outs per clause 3: *"information that (a) is or becomes publicly available through no breach, (b) was known prior to disclosure, (c) is received from a third party without duty of confidence, (d) is independently developed, or (e) must be disclosed by law or court order."*, 2-year term + 3-year survival period, Delaware governing law; no unusual terms. Arithmetic: Term = 2 years, survival obligation = 3 years post-termination. ### NDA-2: YELLOW Driven by the non-solicitation clause (clause 4: *"During the term of this Agreement and for eighteen (18) months thereafter, neither party shall solicit for employment or hire any employee of the other party with whom it came into contact under this Agreement."*) which requires counsel review; all other terms are standard. Arithmetic: Term = 3 years, non-solicit period = 18 months post-term. ### NDA-3: RED Driven by multiple high-risk terms: one-way confidentiality favoring [PARTY C], non-compete clause (clause 2: *"For a period of three (3) years following the Effective Date, Recipient shall not, directly or indirectly, engage in or provide services to any business that competes with Discloser's business."*), Republic of Ireland governing law with exclusive jurisdiction (clause 3), and no stated confidentiality carve-outs (clause 4). Arithmetic: Term = 5 years, non-compete period = 3 years post-effective date.