An AI shell helper that gives you the command without the commentary.
Project description
rtdm
read the damn manual.
An AI shell helper that gives you the command without the commentary.
$ rtdm find files over 100mb
find . -size +100M
Install
pipx install rtdm
rtdm config init
rtdm config init walks you through a one-time setup. Pick local
for free, self-hosted use, or remote if you have an API key from
rtdm.sh.
Usage
Three modes
rtdm <query> # get a shell command
rtdm -q <question> # ask a general terminal question
rtdm -e <command> # explain a command
Multi-word queries don't need quotes — words after the flags are joined with spaces:
rtdm find files over 100mb # works
rtdm "find files over 100mb" # also works
The exception is when your input contains characters the shell would
interpret — globs (*, ?, []), control operators (;, |, &,
<, >), or arguments that look like flags (e.g. --recursive).
Quote those:
rtdm -e "find . -mtime -7 -exec rm {} \;"
Plain dashes are fine; rtdm find files -size 100mb works without
quoting.
Flags
| Flag | Effect |
|---|---|
-c |
Copy the output to the clipboard |
-x |
Execute the returned command (cmd mode only, with confirmation) |
Subcommands
Account self-service for hosted-mode users. All require remote mode
(except whoami, which works in either mode).
| Subcommand | Effect |
|---|---|
rtdm portal |
Open the Stripe billing portal (manage subscription, invoices) |
rtdm rotate |
Issue a new API key, revoke the old one, update local config |
rtdm usage |
Show this month's usage and remaining quota |
rtdm whoami |
Show which key/host this CLI is configured against (no network) |
Examples
$ rtdm extract a tar.gz file
tar -xzf archive.tar.gz
$ rtdm -q what does grep -E do
grep -E enables extended regular expressions, allowing operators like
+, ?, |, (), and {} without backslash escaping.
$ rtdm -e "find . -mtime -7 -exec rm {} \;"
This finds every file under the current directory modified in the last
7 days and deletes each one. -mtime -7 selects "less than 7 days ago";
-exec rm {} \; runs rm on each match.
$ rtdm -c list all my docker containers
docker ps -a
(copied to clipboard)
Local mode (free, self-hosted)
Run your own Ollama, point rtdm at it. No API key needed, no network call to anything but your own machine. Free forever.
See LOCAL.md for setup.
Hosted mode ($3/month)
We run rtdm at rtdm.sh on dedicated GPU hardware. No setup, no Ollama install, no model downloads — just one HTTP call per query. 500 queries per month, cancel anytime.
Sign up at rtdm.sh.
Privacy
We don't log your queries on our servers. We don't train models on them. We don't sell anything to anyone.
We do use Cloudflare in front for DDoS protection, which means Cloudflare technically sees TLS-decrypted requests as they pass through. Most modern services work this way and we think the protection is worth it, but we know some of you will disagree. See rtdm.sh for the full note.
If you want zero third parties in the path, use local mode.
Configuration
The config file lives at ~/.config/rtdm/config.toml (or
$XDG_CONFIG_HOME/rtdm/config.toml):
mode = "remote" # or "local"
[remote]
api_key = "rtdm_live_..."
endpoint = "https://rtdm.sh"
[local]
ollama_url = "http://localhost:11434"
model = "qwen2.5-coder:7b-instruct-q4_K_M"
Useful subcommands:
rtdm config init # interactive setup
rtdm config show # print effective configuration
rtdm config path # print the config file location
Development
git clone https://github.com/t3t5u0403/rtdm-cli
cd rtdm-cli
uv sync --extra dev
uv run pytest
License
MIT. See LICENSE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rtdm-0.2.3.tar.gz.
File metadata
- Download URL: rtdm-0.2.3.tar.gz
- Upload date:
- Size: 38.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6301121a508d9549550f4b137fb7bc56eb7434c60bad547c94a6f73af20c1e4
|
|
| MD5 |
824b6689423183a82d1832b3d51357f4
|
|
| BLAKE2b-256 |
5f909b25c102b6046f3a4930606d2bb1a7987226067767998f2ed48b4eff2ae1
|
File details
Details for the file rtdm-0.2.3-py3-none-any.whl.
File metadata
- Download URL: rtdm-0.2.3-py3-none-any.whl
- Upload date:
- Size: 27.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d810243ee3a7ab7657b762b793edd50260e81b4bb163b419a0612f2039d4324c
|
|
| MD5 |
c277a13335c7a7daad33e247649e07a3
|
|
| BLAKE2b-256 |
646bd58798c8cd705038a0633abf5630d067f65c1ca5c9a9d5be0d5279d08b6a
|