icoa-cli 2.19.427 → 2.19.428

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.
@@ -1,2 +1 @@
1
1
  export declare function setLearnSessionStarted(v: boolean): void;
2
- export declare function learnSessionStarted(): boolean;
@@ -1 +1 @@
1
- let e=!1;export function setLearnSessionStarted(t){e=t}export function learnSessionStarted(){return e}
1
+ let e=!1;export function setLearnSessionStarted(t){e=t}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "icoa-cli",
3
- "version": "2.19.427",
3
+ "version": "2.19.428",
4
4
  "description": "ICOA CLI — The world's first CLI-native cyber & AI security olympiad terminal: AI4CTF (Day 1), CTF4AI (Day 2), VLA4CTF (Pioneer Round — embodied AI)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -24,7 +24,6 @@
24
24
  "smoke:offline": "tsc && SMOKE_NO_NETWORK=1 node --test test/smoke/*.test.js",
25
25
  "ux-audit": "node panda/ux-audit.js",
26
26
  "ux-record": "bash panda/ux-record.sh",
27
- "postinstall": "node -e \"try{require('./dist/postinstall.js')}catch(e){}\"",
28
27
  "prepublishOnly": "npm run build:release",
29
28
  "prepare": "husky"
30
29
  },
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env node
2
- /**
3
- * Post-install script: shows a progress bar during ICOA CLI setup.
4
- * Runs automatically after `npm install -g icoa-cli`.
5
- */
6
- export {};
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- const o=["Initializing ICOA CLI...","Loading competition modules...","Configuring exam system...","Setting up references...","Finalizing installation..."];function l(o,l){const e=Math.round(o/100*30),n=30-e,m=`${"█".repeat(e)}${"░".repeat(n)}`,t=`${String(o).padStart(3)}%`;process.stdout.write(`\r ${m} ${t} ${l}`)}(async function(){console.log(),console.log(" ██╗ ██████╗ ██████╗ █████╗"),console.log(" ██║██╔════╝██╔═══██╗██╔══██╗"),console.log(" ██║██║ ██║ ██║███████║"),console.log(" ██║██║ ██║ ██║██╔══██║"),console.log(" ██║╚██████╗╚██████╔╝██║ ██║"),console.log(" ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝"),console.log();for(let e=0;e<o.length;e++){const n=Math.round(e/o.length*100),m=Math.round((e+1)/o.length*100);for(let t=n;t<=m;t++)l(t,o[e]),await new Promise(o=>setTimeout(o,15))}console.log(),console.log(),console.log(" ✓ ICOA CLI installed successfully!"),console.log(),console.log(" Get started:"),console.log(" icoa Launch and select your mode"),console.log(" icoa --help Show all commands"),console.log()})().catch(()=>{});export{};