xkat-cli 1.1.9 → 2.0.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/README.md +22 -0
- package/bin/checksums.json +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,28 @@ xkat down # stop the background agent (alias: stop)
|
|
|
33
33
|
xkat status # show whether the agent is running
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
### Lab (lecture practice environment)
|
|
37
|
+
|
|
38
|
+
Some courses (Linux, networking, agent tools) run inside an isolated **Lab**
|
|
39
|
+
so the learner’s host OS stays consistent and safer. Learners only use these
|
|
40
|
+
commands — they do not need to know about hypervisors or VMs:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
xkat lab install # one-time: prepare Lab tools (may ask for admin)
|
|
44
|
+
xkat lab up # start Lab
|
|
45
|
+
xkat lab shell # open a shell inside Lab (starts Lab if needed)
|
|
46
|
+
xkat lab stop # stop Lab (keeps data)
|
|
47
|
+
xkat lab delete # remove Lab completely (frees disk; no leftovers)
|
|
48
|
+
xkat lab status # is Lab ready?
|
|
49
|
+
xkat lab doctor # setup checks + fix hints
|
|
50
|
+
xkat lab reset # wipe and recreate Lab
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
`install` is explicit so the learner consents to system setup once.
|
|
54
|
+
`up` / `shell` never silently install. `delete` removes the practice
|
|
55
|
+
environment so nothing feels “left behind”; Lab tools stay for the next
|
|
56
|
+
`lab up`. Learners do not configure VMs or hypervisors — only these commands.
|
|
57
|
+
|
|
36
58
|
Logs are written to `~/.xkat/agent.log`.
|
|
37
59
|
|
|
38
60
|
Or install globally:
|
package/bin/checksums.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"xkat-agent-macos-aarch64": "
|
|
3
|
-
"xkat-agent-macos-x64": "
|
|
4
|
-
"xkat-agent-linux-x64": "
|
|
5
|
-
"xkat-agent-linux-aarch64": "
|
|
6
|
-
"xkat-agent-win-x64.exe": "
|
|
2
|
+
"xkat-agent-macos-aarch64": "bd41cf162b3d55e94aa1341a5a20fc3bce546e83e41e8f05ee33186512cfa4d6",
|
|
3
|
+
"xkat-agent-macos-x64": "3dd44da165fae9970ecc24f37b5aa5c9a862abc47c23566a4ffb45aac4fe8044",
|
|
4
|
+
"xkat-agent-linux-x64": "ce52b6289598fc2309046273a658fbd2480965b34c755020a217352d81321c37",
|
|
5
|
+
"xkat-agent-linux-aarch64": "d3a3717f5755a38aa59e5a8191ce74058db68886f5c3ec0e1a1e708e4d1f61b4",
|
|
6
|
+
"xkat-agent-win-x64.exe": "d8f45048371755e2967f682752d176fd764b6707b703b880b371165019d7a31c"
|
|
7
7
|
}
|