commitshow 0.1.9 → 0.2.1

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/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import { status } from './commands/status.js';
5
5
  import { login } from './commands/login.js';
6
6
  import { whoami } from './commands/whoami.js';
7
7
  import { c } from './lib/colors.js';
8
- const VERSION = '0.1.9';
8
+ const VERSION = '0.2.0';
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
11
  ${c.muted('the')} ${c.gold('walk-on')} ${c.muted('lane: drop in, get scored, leave · no signup, no audition, no league entry.')}
@@ -117,7 +117,7 @@ export function renderAudit(view) {
117
117
  // computed and exposed in JSON as `walk_on_audit_normalized` for agents
118
118
  // that want a deterministic floor, but the user-facing big-digit uses
119
119
  // the calibrated total.
120
- const WALK_ON_AUDIT_MAX = 45;
120
+ const WALK_ON_AUDIT_MAX = 47;
121
121
  const isWalkOn = p.status === 'preview';
122
122
  const total = p.score_total ?? 0;
123
123
  // Header
@@ -323,7 +323,7 @@ export function toAgentShape(view) {
323
323
  // Walk-on context fields. The user-facing score is Claude's calibrated
324
324
  // total (score_total). `walk_on_audit_normalized` is the deterministic
325
325
  // pillar-only fallback (Brief slot excluded · base /45).
326
- const WALK_ON_AUDIT_MAX = 45;
326
+ const WALK_ON_AUDIT_MAX = 47;
327
327
  const isWalkOn = p.status === 'preview';
328
328
  const walkOnTotal = isWalkOn ? (p.score_total ?? 0) : null;
329
329
  const walkOnAuditNormalized = isWalkOn
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commitshow",
3
- "version": "0.1.9",
3
+ "version": "0.2.1",
4
4
  "description": "commit.show CLI — audit any vibe-coded project from your terminal.",
5
5
  "type": "module",
6
6
  "bin": {