icoa-cli 1.4.1 → 1.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/dist/index.js CHANGED
@@ -36,7 +36,7 @@ ${B} ${B}
36
36
  ${B} ${chalk.white('Sydney, Australia')} ${chalk.gray('Jun 27 - Jul 2, 2026')} ${B}
37
37
  ${B} ${chalk.cyan.underline('https://icoa2026.au')} ${B}
38
38
  ${B} ${B}
39
- ${B} ${chalk.gray('CLI-Native Competition Terminal v1.4.1')} ${B}
39
+ ${B} ${chalk.gray('CLI-Native Competition Terminal v1.4.3')} ${B}
40
40
  ${B} ${B}
41
41
  ${chalk.cyan('╚══════════════════════════════════════════════════════════╝')}
42
42
  `;
@@ -61,8 +61,8 @@ program
61
61
  .description('ICOA CLI — CLI-Native CTF Competition Terminal')
62
62
  .option('--resume', 'Resume previous session')
63
63
  .action((opts) => {
64
- // Force black background, white text across all platforms
65
- process.stdout.write('\x1b[40m\x1b[37m\x1b[2J\x1b[H');
64
+ // Force black background, green text (hacker style) across all platforms
65
+ process.stdout.write('\x1b[0m\x1b[40m\x1b[38;2;0;255;65m\x1b[2J\x1b[H');
66
66
  console.log(BANNER);
67
67
  checkTerminal();
68
68
  // If running interactively (no extra args or --resume), start REPL
package/dist/repl.js CHANGED
@@ -51,7 +51,7 @@ export function startRepl(program, resumeMode) {
51
51
  const rl = createInterface({
52
52
  input: process.stdin,
53
53
  output: process.stdout,
54
- prompt: chalk.cyan('icoa> '),
54
+ prompt: chalk.green('icoa> '),
55
55
  terminal: true,
56
56
  });
57
57
  let processing = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "icoa-cli",
3
- "version": "1.4.1",
3
+ "version": "1.4.3",
4
4
  "description": "ICOA CLI — The world's first CLI-native CTF competition terminal",
5
5
  "type": "module",
6
6
  "bin": {