chekk 0.4.2 → 0.4.3

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/bin/chekk.js CHANGED
@@ -4,7 +4,7 @@ import { execSync, spawn } from 'child_process';
4
4
  import { Command } from 'commander';
5
5
  import { run } from '../src/index.js';
6
6
 
7
- const LOCAL_VERSION = '0.4.2';
7
+ const LOCAL_VERSION = '0.4.3';
8
8
 
9
9
  // ── Auto-update check ──
10
10
  // If running from a cached npx install, check if there's a newer version
@@ -48,7 +48,7 @@ if (!handedOff) {
48
48
 
49
49
  program
50
50
  .name('chekk')
51
- .description('The engineering capability score. See how you prompt.')
51
+ .description('The prompt engineering capability score. See how you prompt.')
52
52
  .version(LOCAL_VERSION)
53
53
  .option('--offline', 'Skip AI prose generation, show data-driven output')
54
54
  .option('--verbose', 'Show detailed per-project and per-metric breakdowns')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chekk",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "See how you prompt. Chekk analyzes your AI coding workflow and tells you what kind of engineer you are.",
5
5
  "bin": {
6
6
  "chekk": "./bin/chekk.js"
package/src/display.js CHANGED
@@ -171,8 +171,8 @@ export function displayHeader() {
171
171
  console.log();
172
172
  const lines = [
173
173
  '',
174
- ` ${bold.white('chekk')}${dim(' v0.4.2')}`,
175
- ` ${dim('engineering capability profile')}`,
174
+ ` ${bold.white('chekk')}${dim(' v0.4.3')}`,
175
+ ` ${dim('prompt engineering capability profile')}`,
176
176
  '',
177
177
  ];
178
178
  for (const l of box(lines, 45)) console.log(l);
@@ -226,10 +226,10 @@ function displayProfileHeader(result, extra = {}) {
226
226
 
227
227
  console.log(doubleRule());
228
228
  console.log();
229
- console.log(` ${bold.white('ENGINEERING CAPABILITY PROFILE')}`);
229
+ console.log(` ${bold.white('PROMPT ENGINEERING CAPABILITY PROFILE')}`);
230
230
  console.log();
231
231
  if (sessionStats) {
232
- console.log(` ${dim(`Generated ${dateStr} | chekk v0.4.2`)}`);
232
+ console.log(` ${dim(`Generated ${dateStr} | chekk v0.4.3`)}`);
233
233
  console.log(` ${dim(`Analysis: ${sessionStats.totalSessions} sessions \u00B7 ${sessionStats.tools.length} tool${sessionStats.tools.length > 1 ? 's' : ''} \u00B7 ${numberFormat(sessionStats.totalExchanges)} exchanges`)}`);
234
234
  if (sessionStats.dateRangeShort) {
235
235
  console.log(` ${dim(`Period: ${sessionStats.dateRangeShort}`)}`);
@@ -642,7 +642,7 @@ function displayNextSteps(result) {
642
642
  console.log(` ${dim('\u2191 Copy this to share')}`);
643
643
  console.log();
644
644
  console.log(doubleRule());
645
- console.log(` ${dim('chekk.dev \u2014 engineering capability profiles')}`);
645
+ console.log(` ${dim('chekk.dev \u2014 prompt engineering capability profiles')}`);
646
646
  console.log();
647
647
  }
648
648