codelocal 1.5.6 → 1.5.8

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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Native Go local development runtime for ChatGPT.
4
4
 
5
+ Website: [https://codelocal.cloud](https://codelocal.cloud/)
6
+
5
7
  ## Install
6
8
 
7
9
  ```bash
@@ -30,3 +32,28 @@ The Go runtime then pairs this machine if needed, syncs authorized workspaces, a
30
32
  Use `codelocal status` to inspect it and `codelocal stop` to stop it.
31
33
 
32
34
  Use `codelocal setup` to change either choice later and `codelocal doctor` to inspect Browser/Computer readiness. The user only installs and starts `codelocal`; Playwright and native Computer Use helpers are internal package details and do not require separate install commands.
35
+
36
+ ## Reset or uninstall
37
+
38
+ Return CodeLocal to first-time setup while keeping the CLI installed:
39
+
40
+ ```bash
41
+ codelocal reset --all
42
+ ```
43
+
44
+ This stops the runtime and removes the local login, workspace grants, approvals, indexes, history, managed Chromium browser and Browser/Computer choices. Run `codelocal` afterward to start the onboarding flow again.
45
+
46
+ Remove both the local data and the globally installed npm package:
47
+
48
+ ```bash
49
+ codelocal uninstall --all
50
+ ```
51
+
52
+ Both commands ask for confirmation. For intentional non-interactive cleanup only, add `--yes`:
53
+
54
+ ```bash
55
+ codelocal reset --all --yes
56
+ codelocal uninstall --all --yes
57
+ ```
58
+
59
+ Operating-system privacy permissions such as macOS Accessibility and Screen Recording remain controlled by the OS and are not silently changed.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -25,5 +25,5 @@
25
25
  ],
26
26
  "license": "UNLICENSED",
27
27
  "name": "codelocal",
28
- "version": "1.5.6"
28
+ "version": "1.5.8"
29
29
  }