commitshow 0.1.5 → 0.1.6

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
@@ -1,12 +1,17 @@
1
1
  # commit.show CLI
2
2
 
3
- > Audit any vibe-coded project from your terminal.
4
-
5
- The official CLI for **[commit.show](https://commit.show)** pulls the latest
6
- audit report for a project and renders it inline. Score breakdown
7
- (Audit / Scout / Community), 3 strengths + 2 concerns, current season rank,
8
- delta since the last snapshot. Local runs also save a `.commitshow/audit.md`
9
- file so your AI coding agent can read the report in the next turn and iterate.
3
+ > Audit any vibe-coded project from your terminal — the **walk-on** lane.
4
+
5
+ The official CLI for **[commit.show](https://commit.show)**. A walk-on
6
+ drops in, gets scored, and leaves no signup, no audition fee, no league
7
+ entry. You get the same Claude-grade analysis used in the full season
8
+ (Audit / Scout / Community breakdown, 3 strengths + 2 concerns, rank,
9
+ delta since the last snapshot). Local runs also save `.commitshow/audit.md`
10
+ so your AI coding agent can read the report in the next turn and iterate.
11
+
12
+ When a walk-on is ready to enter the season for real — Scout forecasts,
13
+ season ranking, Backstage prompt-extraction, Hall of Fame — they audition
14
+ at <https://commit.show/submit>.
10
15
 
11
16
  The npm package + command is `commitshow` (no dot — npm doesn't allow it in
12
17
  package names). Everything else uses the brand `commit.show`.
package/dist/index.js CHANGED
@@ -8,6 +8,7 @@ import { c } from './lib/colors.js';
8
8
  const VERSION = '0.1.5';
9
9
  const USAGE = `
10
10
  ${c.bold(c.gold('commit.show'))} ${c.dim(`v${VERSION}`)} ${c.muted('—')} ${c.cream('audit any vibe-coded project from your terminal.')}
11
+ ${c.muted('the')} ${c.gold('walk-on')} ${c.muted('lane: drop in, get scored, leave · no signup, no audition, no league entry.')}
11
12
 
12
13
  ${c.muted('USAGE')}
13
14
  ${c.cream('commitshow')} ${c.gold('<command>')} [target] [flags] ${c.dim('# CLI is `commitshow` (no dot — npm constraint)')}
@@ -483,11 +483,15 @@ function wrapText(s, width) {
483
483
  }
484
484
  export function renderUpsell() {
485
485
  const lines = [];
486
- const titleVisible = 'Preview · not entered in the season';
486
+ // "Walk-on" anyone running CLI without auditioning. Theatre-coherent
487
+ // (Audition / Audit / Stage / Backstage / Walk-on) · friendlier than
488
+ // "preview" (which doubles as our DB status) · positions audition as the
489
+ // upgrade path without making the walk-on tier feel lesser.
490
+ const titleVisible = 'Walk-on · drop-in audit, no audition yet';
487
491
  const headVisible = 'Audition to unlock:';
488
492
  const ctaVisible = '→ https://commit.show/submit';
489
493
  lines.push(' ' + boxTop());
490
- lines.push(' ' + boxRow(titleVisible.length, c.bold(c.gold('Preview')) + c.muted(' · ') + c.cream('not entered in the season')));
494
+ lines.push(' ' + boxRow(titleVisible.length, c.bold(c.gold('Walk-on')) + c.muted(' · ') + c.cream('drop-in audit, no audition yet')));
491
495
  lines.push(' ' + boxBlank());
492
496
  lines.push(' ' + boxRow(headVisible.length, c.cream(headVisible)));
493
497
  // Backstage = our brand for the prompt-extraction analysis (Phase 2 brief).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commitshow",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "commit.show CLI — audit any vibe-coded project from your terminal.",
5
5
  "type": "module",
6
6
  "bin": {