Skip to content

Latest commit

 

History

History
68 lines (45 loc) · 2.12 KB

File metadata and controls

68 lines (45 loc) · 2.12 KB

Example chat

$ tamer

Welcome to lumo-tamer cli
Type /help for commands, /quit to exit.

You: hi
Lumo: Hello! How can I assist you today?

You: Can you tell me, in just one phrase, what's in README.md?
Lumo: [read: README.md]


─── Sending results to Lumo ───

Lumo: A CLI tool that lets you interact with Proton Lumo from the command line, with optional authentication, sync, and configurable tools.

You: Add a heart at the very end of the file.
Lumo: [edit: README.md (−3 +6)]


[Edit block detected]
────────────────────────────────────────
=== FILE: README.md
\<<<<<<< SEARCH
## License

GPLv3 - See [LICENSE](LICENSE). Includes code from [Proton WebClients](https://github.com/ProtonMail/WebClients).
\=======
## License

GPLv3 - See [LICENSE](LICENSE). Includes code from [Proton WebClients](https://github.com/ProtonMail/WebClients).

❤
\>>>>>>> REPLACE
────────────────────────────────────────
Apply this edit? [y/N/s(kip all)]: y
[Applying...]

README.md: edited successfully

─── Sending results to Lumo ───

Lumo: Great! The heart emoji has been added to the end of **README.md**. Let me know if there’s anything else you’d like to modify.

You: How many ts files are in src/ (deep), and what's the their total line count?
Lumo: [bash: # Count .ts files and total lines in src/ (recursively)
find src/ -type f -name "*.ts" -print0 | xargs -0 wc -l]


[Code block detected: bash]
────────────────────────────────────────
# Count .ts files and total lines in src/ (recursively)
find src/ -type f -name "*.ts" -print0 | xargs -0 wc -l
────────────────────────────────────────
Execute this code? [y/N/s(kip all)]: y
[Executing...]

[Exit code: 0]

─── Sending results to Lumo ───

Lumo: There are **103 *.ts* files** under `src/`, with a combined **13,742 lines of code**.

You: Thanks!