clawd-migrate 0.1.0 → 0.1.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.
|
@@ -3,7 +3,7 @@ clawd_migrate - Migrate from moltbot or clawdbot to openclaw while preserving
|
|
|
3
3
|
configuration, memory, and clawdbook (Moltbook) data. Works for any user's system.
|
|
4
4
|
"""
|
|
5
5
|
|
|
6
|
-
__version__ = "0.1.
|
|
6
|
+
__version__ = "0.1.1"
|
|
7
7
|
|
|
8
8
|
from .backup import create_backup
|
|
9
9
|
from .discover import discover_source_assets, discover_clawdbot_assets
|
package/lib/clawd_migrate/tui.py
CHANGED
|
@@ -26,17 +26,22 @@ def style(s: str, *codes: str) -> str:
|
|
|
26
26
|
return "".join(codes) + s + RESET
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
# ASCII lobster (body in RED, eyes in BOLD, "CLAWD MIGRATE" in CYAN)
|
|
30
|
-
LOBSTER_LINES =
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
29
|
+
# ASCII lobster (side view, body in RED, eyes in BOLD, "CLAWD MIGRATE" in CYAN)
|
|
30
|
+
LOBSTER_LINES = """
|
|
31
|
+
,.---._
|
|
32
|
+
,,,, / `,
|
|
33
|
+
\\\\ / '\_ ;
|
|
34
|
+
|||| /\/``-.__\;'
|
|
35
|
+
::::/\/_
|
|
36
|
+
{{`-.__.-'(`(^^(^^^(^ 9 `.========='
|
|
37
|
+
{{{{{{ { ( ( ( ( (-----:=
|
|
38
|
+
{{.-'~~'-.(,(,,(,,,(__6_.'=========.
|
|
39
|
+
::::\/\
|
|
40
|
+
|||| \/\ ,-'/,
|
|
41
|
+
//// \ `` _/ ;
|
|
42
|
+
'''' \ ` .'
|
|
43
|
+
`---'
|
|
44
|
+
"""
|
|
40
45
|
|
|
41
46
|
|
|
42
47
|
def print_banner() -> None:
|