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 +12 -7
- package/dist/index.js +1 -0
- package/dist/lib/render.js +6 -2
- package/package.json +1 -1
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)
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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)')}
|
package/dist/lib/render.js
CHANGED
|
@@ -483,11 +483,15 @@ function wrapText(s, width) {
|
|
|
483
483
|
}
|
|
484
484
|
export function renderUpsell() {
|
|
485
485
|
const lines = [];
|
|
486
|
-
|
|
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('
|
|
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).
|