icoa-cli 2.3.2 → 2.5.2
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/commands/ai4ctf.d.ts +2 -0
- package/dist/commands/ai4ctf.js +44 -64
- package/dist/commands/connect.js +1 -1
- package/dist/commands/ctf.js +34 -35
- package/dist/commands/exam.d.ts +2 -0
- package/dist/commands/exam.js +376 -0
- package/dist/commands/files.js +1 -1
- package/dist/commands/ref.js +3 -3
- package/dist/commands/setup.js +17 -2
- package/dist/index.js +3 -1
- package/dist/lib/exam-client.d.ts +14 -0
- package/dist/lib/exam-client.js +41 -0
- package/dist/lib/exam-state.d.ts +6 -0
- package/dist/lib/exam-state.js +35 -0
- package/dist/postinstall.d.ts +6 -0
- package/dist/postinstall.js +49 -0
- package/dist/repl.js +159 -45
- package/dist/types/index.d.ts +44 -0
- package/dist/types/index.js +2 -0
- package/package.json +3 -2
- package/refs/icoa.txt +19 -5
package/refs/icoa.txt
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
ICOA CLI v2 — Quick Reference
|
|
1
|
+
ICOA CLI v2.5 — Quick Reference
|
|
2
2
|
==============================
|
|
3
3
|
|
|
4
|
+
MODES (selected on first run)
|
|
5
|
+
National Selection Lightweight exam-only mode
|
|
6
|
+
International Olympiad Full CTF competition mode
|
|
7
|
+
Organizer Partner management mode
|
|
8
|
+
setup → Switch Mode Change mode anytime
|
|
9
|
+
|
|
4
10
|
GETTING STARTED
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
env Check tool environment (
|
|
8
|
-
env setup One-click install all tools
|
|
11
|
+
join <url> Connect to server
|
|
12
|
+
activate <token> Unlock (Olympiad mode only)
|
|
13
|
+
env Check tool environment (Olympiad only)
|
|
9
14
|
help Show all commands
|
|
10
15
|
|
|
11
16
|
COMPETITION
|
|
@@ -16,6 +21,15 @@ COMPETITION
|
|
|
16
21
|
status Hint budget, score, rank, time
|
|
17
22
|
time Competition countdown
|
|
18
23
|
|
|
24
|
+
EXAM (National Selection)
|
|
25
|
+
exam list Available exams for your country
|
|
26
|
+
exam start <id> Begin exam (starts timer)
|
|
27
|
+
exam q [n] View question n (or all)
|
|
28
|
+
exam answer <n> <A-D> Answer question n
|
|
29
|
+
exam review Review all answers
|
|
30
|
+
exam submit Submit for grading
|
|
31
|
+
exam result View your score
|
|
32
|
+
|
|
19
33
|
AI HINTS
|
|
20
34
|
hint <question> Level A — General guidance (50 uses)
|
|
21
35
|
hint-b <question> Level B — Deep analysis (10 uses)
|