@coremail/lunkr-openclaw 1.0.5 → 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 +27 -0
- package/bin/lunkr-cli.js +4 -4
- package/i18n/locales/en-US.json +21 -1
- package/i18n/locales/zh-CN.json +21 -1
- package/index.js +21 -20
- package/openclaw.plugin.json +0 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,9 +103,12 @@ openclaw lunkr bot-delete --gid discussion-id-123
|
|
|
103
103
|
|
|
104
104
|
## CLI Commands
|
|
105
105
|
|
|
106
|
+
All commands support `-v, --verbose` on the parent command for verbose output (e.g., `openclaw lunkr -v login`).
|
|
107
|
+
|
|
106
108
|
| Command | Description |
|
|
107
109
|
|---------|-------------|
|
|
108
110
|
| `openclaw lunkr setup` | One-click setup: register plugin, tools, skills, and login |
|
|
111
|
+
| `openclaw lunkr rename <name>` | Rename the bot (stored in ~/.lunkr/config.json) |
|
|
109
112
|
| `openclaw lunkr login` | Login via QR code (when session expires) |
|
|
110
113
|
| `openclaw lunkr login-bypwd` | Login via email/password (OTP supported) |
|
|
111
114
|
| `openclaw lunkr skill-install [name]` | Enable skill (default: lunkr) |
|
|
@@ -115,6 +118,30 @@ openclaw lunkr bot-delete --gid discussion-id-123
|
|
|
115
118
|
| `openclaw lunkr uninstall-extension` | Remove all config added by setup |
|
|
116
119
|
| `openclaw lunkr uninstall-extension --purge` | Remove config + delete session data (~/.lunkr/) |
|
|
117
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
|
+
|
|
118
145
|
## Troubleshooting
|
|
119
146
|
|
|
120
147
|
### Login Fails
|