windows-use 0.3.0 → 0.3.1

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -29,6 +29,12 @@ npm install -g windows-use
29
29
  ```bash
30
30
  # Interactive setup — saves config to ~/.windows-use.json
31
31
  windows-use init
32
+
33
+ # Export config as a shareable base64 string
34
+ windows-use init --export
35
+
36
+ # Import config from a base64 string
37
+ windows-use init eyJiYXNlVVJMIjoiaHR0cHM6Ly...
32
38
  ```
33
39
 
34
40
  You'll be prompted for:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windows-use",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Let big LLMs delegate Windows/browser automation to small LLMs via sessions",
5
5
  "type": "module",
6
6
  "bin": {
@@ -60,5 +60,13 @@
60
60
  "agent",
61
61
  "browser"
62
62
  ],
63
- "license": "MIT"
63
+ "license": "MIT",
64
+ "repository": {
65
+ "type": "git",
66
+ "url": "https://github.com/yuhuison/local-windows-use.git"
67
+ },
68
+ "homepage": "https://github.com/yuhuison/local-windows-use#readme",
69
+ "bugs": {
70
+ "url": "https://github.com/yuhuison/local-windows-use/issues"
71
+ }
64
72
  }