commitshow 0.1.9 → 0.2.0
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 +1 -1
- package/dist/lib/render.js +2 -2
- package/package.json +1 -1
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.
|
|
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.')}
|
package/dist/lib/render.js
CHANGED
|
@@ -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 =
|
|
120
|
+
const WALK_ON_AUDIT_MAX = 49;
|
|
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 =
|
|
326
|
+
const WALK_ON_AUDIT_MAX = 49;
|
|
327
327
|
const isWalkOn = p.status === 'preview';
|
|
328
328
|
const walkOnTotal = isWalkOn ? (p.score_total ?? 0) : null;
|
|
329
329
|
const walkOnAuditNormalized = isWalkOn
|