@vibedrift/cli 0.5.6 → 0.5.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -198,10 +198,10 @@ All scans (free and deep) are logged to your dashboard at [vibedrift.ai/dashboar
198
198
 
199
199
  | Tier | Price | What you get |
200
200
  |------|-------|-------------|
201
- | **Free** | $0 | Unlimited local scans + 3 deep scans per month + dashboard |
202
- | **Pro** | $15/month | Unlimited deep scans + private repo CI/CD + API access |
203
- | **Team** | $30/seat/month | GitHub App (auto PR) + team dashboard + quality gates + SSO |
204
- | **Enterprise** | Custom | Custom rules + compliance + self-hosted + SLA |
201
+ | **Free** | $0 | Unlimited local scans + 3 deep scans/month + dashboard |
202
+ | **Pro** | $15/month | 50 deep scans/month + CI/CD + API access ($1/scan overage) |
203
+ | **Team** | $30/seat/month | 150 deep scans/seat + team dashboard + quality gates + SSO |
204
+ | **Enterprise** | Custom | 500+ scans + custom rules + compliance + self-hosted + SLA |
205
205
 
206
206
  See [vibedrift.ai/#pricing](https://vibedrift.ai/#pricing) for details.
207
207
 
package/dist/index.js CHANGED
@@ -7682,14 +7682,16 @@ function buildDeviatingBlocks(d) {
7682
7682
  if (!devByPattern.has(key)) devByPattern.set(key, []);
7683
7683
  devByPattern.get(key).push(df);
7684
7684
  }
7685
+ const expectedNote = `<span style="font-size:11px;color:var(--text-tertiary);font-weight:400">expected: ${esc(d.dominantPattern)}</span>`;
7685
7686
  if (isConvention && d.deviatingFiles.length > 4) {
7686
7687
  return [...devByPattern.entries()].map(([pattern, files]) => {
7687
7688
  const fileList = files.map((df) => `<div style="padding:2px 0;font-size:12px;color:var(--text-secondary)" class="mono">${esc(df.path)}</div>`).join("");
7688
7689
  return `<div style="background:var(--tint-orange);border-left:3px solid var(--drift-orange);border-radius:0;margin:8px 0">
7689
7690
  <details>
7690
- <summary style="cursor:pointer;padding:12px 16px;list-style:none;display:flex;align-items:center;gap:6px">
7691
+ <summary style="cursor:pointer;padding:12px 16px;list-style:none;display:flex;align-items:center;gap:6px;flex-wrap:wrap">
7691
7692
  <span class="chevron">&#9654;</span>
7692
7693
  <span class="label" style="color:var(--drift-orange);margin:0">DRIFT &mdash; ${esc(pattern)}</span>
7694
+ ${expectedNote}
7693
7695
  <span style="font-size:12px;color:var(--text-tertiary);margin-left:auto">${files.length} files</span>
7694
7696
  </summary>
7695
7697
  <div style="padding:4px 16px 12px">${fileList}</div>
@@ -7703,10 +7705,11 @@ function buildDeviatingBlocks(d) {
7703
7705
  ).join("");
7704
7706
  return `<div style="background:var(--tint-orange);border-left:3px solid var(--drift-orange);border-radius:0;margin:8px 0">
7705
7707
  <details>
7706
- <summary style="cursor:pointer;padding:10px 16px;list-style:none;display:flex;align-items:center;gap:6px">
7708
+ <summary style="cursor:pointer;padding:10px 16px;list-style:none;display:flex;align-items:center;gap:6px;flex-wrap:wrap">
7707
7709
  <span class="chevron">&#9654;</span>
7708
7710
  <span class="label" style="color:var(--drift-orange);margin:0">DRIFT &mdash; ${esc(df.detectedPattern)}</span>
7709
7711
  <span class="mono" style="font-size:12px;color:var(--text-secondary);margin-left:8px">${esc(df.path)}</span>
7712
+ <span style="font-size:11px;color:var(--text-tertiary);margin-left:auto">expected: <span style="color:var(--intent-green)">${esc(d.dominantPattern)}</span></span>
7710
7713
  </summary>
7711
7714
  <div style="padding:4px 16px 12px">${evidence}</div>
7712
7715
  </details>