@coremail/lunkr-openclaw 1.0.6 → 1.0.7
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 +24 -0
- package/bin/lunkr-cli.js +3 -3
- package/i18n/locales/en-US.json +19 -0
- package/i18n/locales/zh-CN.json +19 -0
- package/index.js +14 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -118,6 +118,30 @@ All commands support `-v, --verbose` on the parent command for verbose output (e
|
|
|
118
118
|
| `openclaw lunkr uninstall-extension` | Remove all config added by setup |
|
|
119
119
|
| `openclaw lunkr uninstall-extension --purge` | Remove config + delete session data (~/.lunkr/) |
|
|
120
120
|
|
|
121
|
+
## Uninstall
|
|
122
|
+
|
|
123
|
+
### Remove Configuration Only
|
|
124
|
+
|
|
125
|
+
Remove all OpenClaw config entries added by setup (plugin, tools, skills, channel):
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
openclaw lunkr uninstall-extension
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
### Full Uninstall
|
|
132
|
+
|
|
133
|
+
Remove config and purge session data (~/.lunkr/):
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
openclaw lunkr uninstall-extension --purge
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
Then remove the extension files:
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
openclaw plugins uninstall lunkr-openclaw
|
|
143
|
+
```
|
|
144
|
+
|
|
121
145
|
## Troubleshooting
|
|
122
146
|
|
|
123
147
|
### Login Fails
|