12 lines
427 B
Python
12 lines
427 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
"""Example: import Claude Code / ChatGPT conversations."""
|
||
|
|
|
||
|
|
print("Import Claude Code sessions:")
|
||
|
|
print(" mempalace mine ~/claude-sessions/ --mode convos --wing my_project")
|
||
|
|
print()
|
||
|
|
print("Import ChatGPT exports:")
|
||
|
|
print(" mempalace mine ~/chatgpt-exports/ --mode convos")
|
||
|
|
print()
|
||
|
|
print("Use general extractor for richer extraction:")
|
||
|
|
print(" mempalace mine ~/chats/ --mode convos --extract general")
|